@charset "utf-8";

/****************************************************************************************************************************************
ST10 main.css — ST02 main.css 베이스 + Earth 톤 캡션/섹션 배경/카드
(Phase 2에서 Main/Index.cshtml이 오버라이드되면 hero·game-cat 섹션을 스킨 전용 클래스로 확장)
*****************************************************************************************************************************************/

/****************************************************************************************************************************************
hero — CSS-only Earth 비주얼 (img 자산 의존 제거)
*****************************************************************************************************************************************/
.hero {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 170, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    min-height: 360px;
}
.hero .swiper-slide {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

/* Hero variant 그라디언트 — 슬라이드별 Earth 톤 분기 */
.hero-variant-bonus {
    background:
        radial-gradient(ellipse at 80% 50%, rgba(0, 212, 170, 0.35) 0%, transparent 55%),
        linear-gradient(135deg, #0a1628 0%, #12345a 60%, #00766a 100%);
}
.hero-variant-casino {
    background:
        radial-gradient(ellipse at 80% 40%, rgba(0, 153, 255, 0.35) 0%, transparent 55%),
        linear-gradient(135deg, #050d1a 0%, #0a2a4c 50%, #003c6b 100%);
}
.hero-variant-jackpot {
    background:
        radial-gradient(ellipse at 75% 50%, rgba(0, 255, 136, 0.30) 0%, transparent 55%),
        linear-gradient(135deg, #0a1628 0%, #123a2e 55%, #00784a 100%);
}
.hero-variant-event {
    background:
        radial-gradient(ellipse at 70% 50%, rgba(0, 212, 170, 0.25) 0%, transparent 55%),
        linear-gradient(135deg, #1a3a5c 0%, #0a1628 60%, #002a4a 100%);
}

/* Hero visual: 중심 orb + 궤도 ring — 슬라이드 오른쪽 영역에 배치 */
.hero-visual {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    pointer-events: none;
}
.hero-orb {
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 170, 0.9) 0%, rgba(0, 153, 255, 0.7) 50%, rgba(5, 13, 26, 0.95) 100%);
    box-shadow:
        0 0 60px rgba(0, 212, 170, 0.45),
        inset -20px -20px 60px rgba(0, 0, 0, 0.55);
    animation: st10-hero-orb-float 8s ease-in-out infinite;
}
.hero-variant-casino .hero-orb {
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(0, 153, 255, 0.9) 0%, rgba(0, 212, 170, 0.6) 50%, rgba(5, 13, 26, 0.95) 100%);
    box-shadow:
        0 0 60px rgba(0, 153, 255, 0.45),
        inset -20px -20px 60px rgba(0, 0, 0, 0.55);
}
.hero-variant-jackpot .hero-orb {
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.9) 0%, rgba(0, 212, 170, 0.6) 50%, rgba(5, 13, 26, 0.95) 100%);
    box-shadow:
        0 0 70px rgba(0, 255, 136, 0.5),
        inset -20px -20px 60px rgba(0, 0, 0, 0.55);
}
.hero-rings {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 170, 0.3);
    box-shadow:
        0 0 0 8px rgba(0, 212, 170, 0.08),
        0 0 0 18px rgba(0, 153, 255, 0.06);
    animation: st10-hero-ring-spin 18s linear infinite;
}
.hero-rings::before {
    content: "";
    position: absolute;
    inset: 14%;
    border-radius: 50%;
    border: 1px dashed rgba(143, 163, 191, 0.35);
}
@keyframes st10-hero-orb-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
@keyframes st10-hero-ring-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.caption-tag {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--earth-primary);
    background: rgba(0, 212, 170, 0.12);
    border: 1px solid rgba(0, 212, 170, 0.4);
    border-radius: 20px;
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
}
.hero-variant-casino .caption-tag {
    color: var(--earth-secondary);
    background: rgba(0, 153, 255, 0.12);
    border-color: rgba(0, 153, 255, 0.4);
}
.hero-variant-jackpot .caption-tag {
    color: var(--earth-accent);
    background: rgba(0, 255, 136, 0.12);
    border-color: rgba(0, 255, 136, 0.4);
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(143, 163, 191, 0.5) !important;
    border-radius: 50%;
    opacity: 0.7 !important;
    outline: none;
}
.swiper-pagination-bullet-active {
    background: var(--earth-primary) !important;
    opacity: 1 !important;
    box-shadow: 0 0 8px rgba(0, 212, 170, 0.6);
}
.hero img { width: 100%; }

.caption {
    position: absolute;
    left: 130px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    text-align: left;
}
.caption > h3 {
    font-size: 44px;
    font-weight: 700;
    color: var(--earth-text);
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.4);
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    letter-spacing: 0.03em;
}
.caption > p {
    margin: 20px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--earth-text-muted);
}

/****************************************************************************************************************************************
banner-section — 3슬라이드 히어로 (WELCOME / MEGA JACKPOT / SPECIAL EVENT)
*****************************************************************************************************************************************/
.banner-section {
    position: relative;
    margin: 30px auto 0;
    padding: 0;
    width: 100%;
}
.banner-section .container {
    max-width: 100%;
    padding: 0 10px;
}
.banner-slider {
    position: relative;
    width: 100%;
    min-height: 360px;
    border-radius: 16px;
    overflow: hidden;
}
.banner-slide {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 360px;
    padding: 60px 80px;
    overflow: hidden;
}
.banner-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}
.banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 13, 26, 0.85) 0%, rgba(5, 13, 26, 0.4) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    text-align: left;
}
.banner-content .caption-tag {
    font-size: 12px;
    padding: 6px 16px;
}
.banner-title {
    margin: 16px 0 18px;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--earth-text, #ffffff);
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    letter-spacing: 0.02em;
    text-shadow: 0 0 24px rgba(0, 212, 170, 0.35), 0 2px 8px rgba(0, 0, 0, 0.55);
}
.banner-desc {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.55;
    color: var(--earth-text-muted, #bdd2e6);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
    background: var(--earth-gradient, linear-gradient(135deg, #00d4aa 0%, #0099ff 100%));
    border-radius: 8px;
    box-shadow: 0 6px 22px rgba(0, 212, 170, 0.4);
    text-decoration: none;
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    transition: 0.25s;
}
.hero-variant-event .banner-btn {
    padding: 12px 28px;
    font-size: 13px;
    letter-spacing: 0.08em;
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(0, 212, 170, 0.4);
}
@media (hover: hover) and (pointer: fine) {
    .banner-btn:hover {
        transform: translateY(-2px);
        filter: brightness(115%);
        box-shadow: 0 10px 28px rgba(0, 212, 170, 0.55);
    }
}

/* banner-prev/next 좌우 화살표 */
.banner-prev,
.banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--earth-text, #ffffff);
    background: rgba(10, 22, 40, 0.55);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.25s;
    backdrop-filter: blur(6px);
}
.banner-prev { left: 20px; }
.banner-next { right: 20px; }
@media (hover: hover) and (pointer: fine) {
    .banner-prev:hover,
    .banner-next:hover {
        color: var(--earth-primary);
        border-color: var(--earth-primary);
        background: rgba(0, 212, 170, 0.15);
        box-shadow: 0 0 18px rgba(0, 212, 170, 0.45);
    }
}

/* banner-dots (swiper-pagination) */
.banner-dots {
    position: absolute;
    bottom: 20px !important;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: center;
}

/****************************************************************************************************************************************
games-section — 카지노/슬롯 빅카드 듀오 그리드
*****************************************************************************************************************************************/
.games-section {
    position: relative;
    margin: 10px auto 0;
    padding: 0;
    width: 100%;
    max-width: 1920px;
    overflow: visible;
}
.games-section .container {
    max-width: 100%;
    padding: 0;
}
.games-duo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 10px;
}
.game-big-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 170, 0.15);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    transition: 0.3s ease;
    cursor: pointer;
}
.game-big-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.game-big-visual {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.game-big-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
    transition: transform 0.5s ease;
}
.game-big-card:hover .game-big-video { transform: scale(1.06); }
.game-big-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 13, 26, 0.25) 0%, rgba(5, 13, 26, 0.55) 70%, rgba(5, 13, 26, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}
.game-big-overlay { z-index: 2; }
.game-big-casino {
    background:
        radial-gradient(ellipse at 75% 40%, rgba(0, 153, 255, 0.45) 0%, transparent 55%),
        radial-gradient(ellipse at 25% 80%, rgba(0, 212, 170, 0.3) 0%, transparent 55%),
        linear-gradient(135deg, #050d1a 0%, #0a2a4c 50%, #003c6b 100%);
}
.game-big-casino::before {
    content: "";
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(0, 153, 255, 0.9) 0%, rgba(0, 212, 170, 0.5) 55%, rgba(5, 13, 26, 0.95) 100%);
    box-shadow:
        0 0 60px rgba(0, 153, 255, 0.45),
        inset -20px -20px 60px rgba(0, 0, 0, 0.55);
    animation: st10-hero-orb-float 8s ease-in-out infinite;
}
.game-big-slot {
    background:
        radial-gradient(ellipse at 75% 40%, rgba(0, 255, 136, 0.42) 0%, transparent 55%),
        radial-gradient(ellipse at 25% 80%, rgba(0, 212, 170, 0.35) 0%, transparent 55%),
        linear-gradient(135deg, #0a1628 0%, #123a2e 55%, #00784a 100%);
}
.game-big-slot::before {
    content: "";
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.9) 0%, rgba(0, 212, 170, 0.55) 55%, rgba(5, 13, 26, 0.95) 100%);
    box-shadow:
        0 0 70px rgba(0, 255, 136, 0.5),
        inset -20px -20px 60px rgba(0, 0, 0, 0.55);
    animation: st10-hero-orb-float 8s ease-in-out infinite;
}
.game-big-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(90deg, rgba(5, 13, 26, 0.8) 0%, rgba(5, 13, 26, 0.3) 55%, transparent 100%);
}
.game-big-title {
    margin: 0 0 14px;
    font-size: 38px;
    font-weight: 800;
    color: var(--earth-text, #ffffff);
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    letter-spacing: 0.04em;
    text-shadow: 0 0 22px rgba(0, 212, 170, 0.4), 0 2px 6px rgba(0, 0, 0, 0.55);
}
.game-big-desc {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--earth-text-muted, #bdd2e6);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.btn-game-enter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: var(--earth-gradient, linear-gradient(135deg, #00d4aa 0%, #0099ff 100%));
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(0, 212, 170, 0.4);
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    transition: 0.25s;
}
@media (hover: hover) and (pointer: fine) {
    .game-big-card:hover {
        transform: translateY(-4px);
        border-color: var(--earth-primary);
        box-shadow: 0 12px 32px rgba(0, 212, 170, 0.35);
    }
    .game-big-card:hover .game-big-visual { transform: scale(1.06); }
    .game-big-card:hover .btn-game-enter {
        filter: brightness(115%);
        box-shadow: 0 6px 24px rgba(0, 212, 170, 0.55);
    }
}

/****************************************************************************************************************************************
secondary-games-section — FeatureFlag 조건 소형 게임 카테고리
*****************************************************************************************************************************************/
.secondary-games-section {
    position: relative;
    margin: 40px auto 30px;
    padding: 0;
    width: 100%;
}
.secondary-games-section .main-tit {
    margin-bottom: 20px;
}
.secondary-games-section .main-tit > h3 {
    font-size: 22px;
}
/* 이벤트 LI 하나만 있는 경우 (홀덤/미니게임-only 환경) 헤더만 남는 빈 섹션이 되므로 전체 숨김.
   sport LI (tosino+sport 활성 시) 가 함께 있을 때만 의미있는 섹션. */
.secondary-games-section:not(:has(.mg-card:not(.main-game-event))) { display: none; }

/****************************************************************************************************************************************
main 공통
*****************************************************************************************************************************************/
section {
    position: relative;
    margin: 30px auto;
    padding: 0;
    width: 100%;
    overflow: hidden;
}
section.sec-bg {
    padding: 30px 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.5) 0%, rgba(5, 13, 26, 0.3) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 170, 0.08);
}

.main-tit {
    position: relative;
    margin: 10px auto;
    padding: 0;
    width: 100%;
    height: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-tit > h3 {
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    color: var(--earth-text);
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    letter-spacing: 0.02em;
}

.view-more {
    margin: 0 0 0 5px;
    padding: 0;
    width: 100px;
    line-height: 32px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--earth-primary);
    background: transparent;
    border: 1px solid var(--earth-primary);
    border-radius: 6px;
    transition: 0.2s;
}

.swiper-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
}

.top-prev2,
.top-next2,
.top-prev3,
.top-next3 {
    position: relative;
    top: 0;
    left: unset;
    right: unset;
    margin: 0;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    font-weight: 500;
    color: var(--earth-text-muted);
    background: transparent;
    border: 1px solid var(--border1-color);
    border-radius: 50%;
    opacity: 1;
    cursor: pointer !important;
    pointer-events: unset !important;
    transition: 0.2s;
}
.top-prev2::after,
.top-next2::after,
.top-prev3::after,
.top-next3::after {
    font-size: 15px;
    color: var(--earth-text-muted);
}
.top-prev3,
.top-next3 { display: none; }

@media (hover: hover) and (pointer: fine) {
    .top-prev2:hover,
    .top-next2:hover,
    .top-prev3:hover,
    .top-next3:hover {
        color: var(--earth-primary);
        border: 1px solid var(--earth-primary);
        box-shadow: 0 0 10px rgba(0, 212, 170, 0.3);
    }
    .top-prev2:hover::after,
    .top-next2:hover::after,
    .top-prev3:hover::after,
    .top-next3:hover::after { color: var(--earth-primary); }

    .view-more:hover {
        color: #fff;
        background: var(--earth-gradient);
        border-color: transparent;
    }
}

/****************************************************************************************************************************************
main-game
*****************************************************************************************************************************************/
ul.main-game {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
}
ul.main-game > li {
    position: relative;
    width: calc(100% / 5 - 15px);
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 170, 0.1);
}

/* mg-card variant 그라디언트 + 아이콘 비주얼 (img 자산 의존 제거) */
.mg-card {
    min-height: 220px;
    padding: 25px 20px 70px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
}
.mg-sport-kr {
    background:
        radial-gradient(circle at 80% 25%, rgba(0, 212, 170, 0.35) 0%, transparent 55%),
        linear-gradient(160deg, #0a2a4c 0%, #0a1628 100%);
}
.mg-sport-os {
    background:
        radial-gradient(circle at 80% 25%, rgba(0, 153, 255, 0.35) 0%, transparent 55%),
        linear-gradient(160deg, #12345a 0%, #050d1a 100%);
}
.mg-casino {
    background:
        radial-gradient(circle at 80% 25%, rgba(0, 153, 255, 0.30) 0%, transparent 55%),
        linear-gradient(160deg, #003c6b 0%, #0a1628 100%);
}
.mg-slot {
    background:
        radial-gradient(circle at 80% 25%, rgba(0, 255, 136, 0.30) 0%, transparent 55%),
        linear-gradient(160deg, #0a3028 0%, #050d1a 100%);
}
.mg-event {
    background:
        radial-gradient(circle at 80% 25%, rgba(0, 212, 170, 0.28) 0%, transparent 55%),
        linear-gradient(160deg, #1a3a5c 0%, #050d1a 100%);
}
.mg-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #fff;
    background: var(--earth-gradient);
    border-radius: 50%;
    box-shadow:
        0 6px 20px rgba(0, 212, 170, 0.35),
        inset 0 0 20px rgba(255, 255, 255, 0.12);
}
.mg-card::before {
    content: "";
    position: absolute;
    left: -30%;
    bottom: -40%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(0, 212, 170, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.game-info {
    position: absolute;
    left: 20px;
    bottom: 15px;
}
.game-info > h2 {
    margin-bottom: 3px;
    font-size: 16px;
    font-weight: 700;
    color: var(--earth-text);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
}
.game-info > p {
    font-size: 13px;
    font-weight: 500;
    color: var(--earth-text-muted);
}

@media (hover: hover) and (pointer: fine) {
    ul.main-game > li:hover {
        transform: scale(1.05);
        border-color: var(--earth-primary);
        box-shadow: 0 6px 20px rgba(0, 212, 170, 0.2);
    }
}

/****************************************************************************************************************************************
라이브스포츠
*****************************************************************************************************************************************/
.live-spots {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.card-list {
    position: relative;
    margin: 0 auto;
    padding: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(10, 22, 40, 0.7);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}
.card-list:hover {
    border-color: var(--earth-primary);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.2);
}
.card-hd {
    position: relative;
    margin: 0 auto 5px auto;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.live-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--earth-text);
}
.live-box {
    padding: 3px;
    font-size: 13px;
    color: var(--earth-accent);
    background: rgba(0, 255, 136, 0.12);
    border-radius: 3px;
}
.live-box > svg {
    margin-right: 3px;
    font-size: 13px;
}

.card-body {
    position: relative;
    margin: 0 auto 5px auto;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-match {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    text-align: center;
}
.team-img > img { height: 48px; }
.team-txt {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--earth-text);
}

.card-score {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    text-align: center;
}
.score-txt {
    font-size: 30px;
    font-weight: 700;
    color: var(--earth-primary);
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.4);
}
.game-not {
    color: var(--earth-text-muted);
    font-weight: 500;
}

.card-ft {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.card-item {
    margin: 0 auto;
    padding: 10px 5px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 6px;
    color: var(--earth-text);
    transition: 0.2s;
}
.card-item > span:nth-child(2) { color: var(--earth-primary); font-weight: 600; }
.red-item { background: rgba(0, 212, 170, 0.12); border: 1px solid rgba(0, 212, 170, 0.2); }
.gray-item { background: rgba(143, 163, 191, 0.1); border: 1px solid rgba(143, 163, 191, 0.2); }

/****************************************************************************************************************************************
인기게임
*****************************************************************************************************************************************/
ul.popular-game {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}
ul.popular-game > li {
    width: calc(100% / 5 - 10px);
    cursor: pointer;
}

.popular-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 170, 0.1);
    transition: 0.2s;
}
.popular-img:hover {
    border-color: var(--earth-primary);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.25);
}
.hover-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    padding: 10px;
    width: 100%;
    background: rgba(5, 13, 26, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}
.hover-icon > .btn-playGo {
    margin: 0;
    padding: 0;
    width: 80%;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #fff;
    background: var(--earth-gradient);
    border-radius: 6px;
    opacity: 0;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4);
    transition: transform 0.3s ease;
}
.hover-icon > .btn-playGo > svg {
    margin-right: 5px;
    font-size: 15px;
    color: #fff;
}

.popular-info {
    position: relative;
    margin: 0 auto;
    padding: 8px 0;
    text-align: left;
}
.popular-info > h2 {
    font-size: 15px;
    font-weight: 600;
    color: var(--earth-text);
}
.popular-info > p {
    font-size: 12px;
    font-weight: 500;
    color: var(--earth-text-muted);
}

@media (hover: hover) and (pointer: fine) {
    ul.popular-game > li:hover .hover-icon { opacity: 1; visibility: visible; }
    ul.popular-game > li:hover .btn-playGo { opacity: 1; }
}

/****************************************************************************************************************************************
메인이벤트
*****************************************************************************************************************************************/
.main-event { position: relative; }
.main-event-list img {
    border-radius: 12px;
    overflow: hidden;
}
.main-event-info {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    text-align: left;
}
.main-event-info > p {
    font-size: 12px;
    color: var(--earth-text-muted);
}
.main-event-info > h2 {
    margin: 10px auto;
    font-size: 20px;
    font-weight: 700;
    color: var(--earth-text);
    text-shadow: 0 0 15px rgba(0, 212, 170, 0.4);
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
}
.main-event-info > button {
    margin: 0 auto;
    padding: 10px 28px;
    font-weight: 700;
    color: #fff;
    background: var(--earth-gradient);
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.35);
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    transition: 0.2s;
}
@media (hover: hover) and (pointer: fine) {
    .main-event-info > button:hover {
        filter: brightness(115%);
        transform: translateY(-1px);
    }
}

/****************************************************************************************************************************************
카지노/슬롯 페이지 탭
*****************************************************************************************************************************************/
ul.tab-tit {
    position: relative;
    margin: 0;
    padding: 20px 0 10px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
}
ul.tab-tit > li {
    margin: 0;
    padding: 8px 22px;
    font-weight: 600;
    color: var(--earth-text);
    background: rgba(26, 58, 92, 0.4);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: 25px;
    cursor: pointer;
    transition: 0.2s;
}
ul.tab-tit > li.active {
    color: #fff;
    background: var(--earth-gradient);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.tab-con {
    position: relative;
    margin: 0 auto;
    padding: 10px 0;
    width: 100%;
    background: transparent;
}

.tabGame-list {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.tab-item {
    position: relative;
    margin: 0;
    padding: 0;
    width: calc(100% / 5 - 10px);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0, 212, 170, 0.1);
    transition: 0.2s;
}
.tab-item > img {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
    ul.tab-tit > li:hover:not(.active) { filter: brightness(115%); border-color: var(--earth-primary); }
    .tab-item:hover {
        border-color: var(--earth-primary);
        box-shadow: 0 6px 20px rgba(0, 212, 170, 0.25);
    }
    .tab-item:hover .hover-icon { opacity: 1; visibility: visible; }
    .tab-item:hover .btn-playGo { opacity: 1; }
}

/****************************************************************************************************************************************
미디어쿼리
*****************************************************************************************************************************************/
@media (max-width: 1360px) {
    .caption { left: 20px; }

    .banner-slide { padding: 50px 60px; }
    .banner-title { font-size: 40px; }
    .game-big-overlay { padding: 32px 40px; }
    .game-big-title { font-size: 32px; }
}

@media (max-width: 1136px) {
    section { margin: 0 0 5px 0; }
    section.sec-bg { padding: 0 0 30px 0; }

    .hero { height: 220px; }
    .hero img { height: 100%; }
    .caption > h3 { font-size: 38px; letter-spacing: -0.5px; }
    .caption > p { margin: 5px 0 0 0; }
}

@media (max-width: 992px) {
    .view-more { line-height: 28px; font-size: 13px; }
    .top-prev3,
    .top-next3 { display: flex; }

    .banner-slider { min-height: 280px; }
    .banner-slide { min-height: 280px; padding: 40px 44px; }
    .banner-title { font-size: 32px; }
    .banner-desc { font-size: 14px; margin-bottom: 22px; }
    .banner-btn { padding: 10px 22px; font-size: 12px; }
    .banner-prev, .banner-next { width: 38px; height: 38px; }

    .games-duo-grid { gap: 8px; }
    .game-big-overlay { padding: 24px 30px; }
    .game-big-title { font-size: 26px; }
    .game-big-desc { font-size: 13px; margin-bottom: 16px; }
    .game-big-casino::before,
    .game-big-slot::before { width: 160px; height: 160px; right: 5%; }

    ul.main-game { flex-wrap: wrap; gap: 5px; }
    ul.main-game > li { margin: 5px 0; width: calc(100% / 2 - 5px); }
    ul.main-game > li.main-game-event { display: none; }

    ul.popular-game {
        margin: 0 -5px;
        width: calc(100% + 10px);
        justify-content: center;
    }
    ul.popular-game > li { width: calc(100% / 4 - 10px); }

    .hover-icon > .btn-playGo { width: 90%; font-size: 14px; }
    .hover-icon > .btn-playGo > svg { font-size: 14px; }

    .main-event-list img { width: 100%; }

    .tab-item { width: calc(100% / 4 - 10px); }
}

@media (max-width: 767px) {
    .hero { height: 200px; }
    .hero img { object-fit: cover; object-position: 50% center; }
    .caption > h3 { font-size: 30px; }
    .caption > p { font-size: 14px; }

    .banner-section { margin: 16px auto 0; }
    .banner-slider { min-height: 280px; border-radius: 12px; }
    .banner-slide { min-height: 280px; padding: 32px 24px; }
    .banner-title { font-size: 26px; margin: 10px 0 12px; }
    .banner-desc { font-size: 13px; margin-bottom: 16px; line-height: 1.5; }
    .banner-content .caption-tag { font-size: 10px; padding: 4px 12px; }
    .banner-prev, .banner-next { width: 32px; height: 32px; font-size: 13px; }
    .banner-prev { left: 10px; }
    .banner-next { right: 10px; }

    .games-section { margin: 12px auto 0; }
    .games-duo-grid { grid-template-columns: 1fr; gap: 15px; }
    .game-big-image { height: 200px; }
    .game-big-overlay { padding: 20px 24px; }
    .game-big-title { font-size: 22px; margin-bottom: 10px; }
    .game-big-desc { font-size: 12px; margin-bottom: 14px; }
    .btn-game-enter { padding: 10px 22px; font-size: 12px; }
    .hero-variant-event .banner-btn { padding: 10px 22px; font-size: 12px; }
    .game-big-casino::before,
    .game-big-slot::before { width: 130px; height: 130px; right: 6%; }

    .swiper-pagination-bullet { width: 8px; height: 8px; }
    .swiper-horizontal > .swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction { bottom: 5px; }

    ul.popular-game > li { width: calc(100% / 2 - 10px); }
    .popular-img > img { width: 100%; }

    .tab-item { width: calc(100% / 3 - 10px); }
}

@media (max-width: 639px) {
    .hero { height: 180px; }
    .hero img { object-position: 65% center; }
    .caption { left: 10px; }
    .caption > h3 {
        font-size: 28px;
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    .caption > p {
        color: #fff;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }

    .main-event-info { left: 20px; }
    .main-event-info > h2 { margin: 5px 0; }
    .main-event-info > button { padding: 6px 20px; font-size: 13px; }

    .tab-item { width: calc(100% / 2 - 10px); }
}

@media (max-width: 480px) {
    .view-more { width: 70px; }

    .game-big-image { height: 160px; }
    .game-info { left: 13px; }
    .game-info > h2 { margin: 0; }
    .game-info > p { display: none; }
}

/* ==========================================================================
   ST10 Main 신규 디자인 (Downloads/st10-a)
   - 출처: Downloads/st10-a/css/casino.css (전체) + slot.css 의 .btn-play-slot 변형
   - 카드 클래스 .casino-card 는 카지노/슬롯 그리드 양쪽에 공유 (구조 동일)
   - 슬롯 카드는 .casino-card + .btn-play-slot 조합 (.slot-card 미사용)
   ========================================================================== */

/* 글로벌 section { overflow: hidden } (main.css:509) 가 li 의 border/box-shadow 를 자르므로 visible 로 명시 */
.game-cate, .games-section {overflow: visible;}
.game-cate {position: relative; margin: 40px auto 20px auto; padding: 0; width: 100%; text-align: center;}
.game-cate .container {position: relative; margin: 0 auto; padding: 0 15px; max-width: 1400px; text-align: center;}
ul.cate-list {list-style-type: none; position: relative; margin: 0; padding: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 10px;}
ul.cate-list > li {position: relative; margin: 0 auto; padding: 15px 0; width: calc(100% / 2 - 10px); text-align: center; background: rgba(0, 0, 0, 0.5); border: 1px solid var(--earth-primary); border-radius: 30px; transition: all 0.3s ease; cursor: pointer;}
ul.cate-list > li:hover {transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0, 212, 170, 0.4);}

.game-cate .page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--earth-primary);
    margin: 0;
    padding: 0;
    line-height: 1.5;
}
.game-cate .page-subtitle {
    font-size: 1rem;
    color: var(--earth-primary);
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}
ul.cate-list > li.active {background: var(--earth-gradient);}
ul.cate-list > li.active .page-title,
ul.cate-list > li.active .page-subtitle {color: var(--earth-dark);}

.games-section .container {max-width: 1400px; margin: auto; padding: 0 15px;}
.game-view {display: none; position: relative; margin: 0 auto; padding: 15px 0; width: 100%;}
.game-view.active {display: block;}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.casino-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    animation: cardFloat 4s ease-in-out infinite;
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.casino-card:hover {
    animation-play-state: paused;
    border-color: var(--earth-primary);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.3);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}
.card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    transition: transform 0.5s ease, filter 0.3s ease;
}
.card-character {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    z-index: 1;
    transition: transform 0.5s ease;
}
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%);
    border-radius: 16px;
    transition: opacity 0.3s ease;
}
.card-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}
.provider-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.4s ease, filter 0.3s ease;
}
.provider-logo img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s ease, filter 0.3s ease;
}
.provider-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}
.card-hover {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
}
.btn-play-casino,
.btn-play-slot {
    padding: 15px 45px;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--earth-dark);
    background: var(--earth-gradient);
    border: none;
    cursor: pointer;
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.4);
}
.btn-play-casino:hover,
.btn-play-slot:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 15px 50px rgba(0, 212, 170, 0.6);
}

.casino-card:hover .card-inner {transform: translateY(-10px);}
.casino-card:hover .card-bg {transform: scale(1.1); filter: brightness(1.1);}
.casino-card:hover .card-character {transform: scale(1.1);}
.casino-card:hover .card-overlay {opacity: 0.3;}
.casino-card:hover .provider-logo img {transform: scale(1.1); filter: drop-shadow(0 6px 20px rgba(0, 212, 170, 0.5));}
.casino-card:hover .card-hover {opacity: 1;}
.casino-card:hover .btn-play-casino,
.casino-card:hover .btn-play-slot {transform: translateY(0) scale(1); opacity: 1;}

.casino-card:nth-child(1) {animation-delay: 0s;}
.casino-card:nth-child(2) {animation-delay: 0.15s;}
.casino-card:nth-child(3) {animation-delay: 0.3s;}
.casino-card:nth-child(4) {animation-delay: 0.45s;}
.casino-card:nth-child(5) {animation-delay: 0.1s;}
.casino-card:nth-child(6) {animation-delay: 0.25s;}
.casino-card:nth-child(7) {animation-delay: 0.4s;}
.casino-card:nth-child(8) {animation-delay: 0.55s;}
.casino-card:nth-child(9) {animation-delay: 0s;}
.casino-card:nth-child(10) {animation-delay: 0.15s;}
.casino-card:nth-child(11) {animation-delay: 0.3s;}
.casino-card:nth-child(12) {animation-delay: 0.45s;}
.casino-card:nth-child(13) {animation-delay: 0.1s;}
.casino-card:nth-child(14) {animation-delay: 0.25s;}
.casino-card:nth-child(15) {animation-delay: 0.4s;}
.casino-card:nth-child(16) {animation-delay: 0.55s;}

@keyframes cardFloat {
    0%, 100% {transform: translateY(0);}
    50% {transform: translateY(-8px);}
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 5;
    pointer-events: none;
    border-radius: 16px;
}
.casino-card:hover::before {left: 100%;}

.casino-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--earth-gradient);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(10px);
}
.casino-card:hover::after {opacity: 0.5;}

@media (max-width: 1430px) {
    .game-cate .container {max-width: 100%;}
    .casino-grid {grid-template-columns: repeat(5, 1fr);}
}
@media (max-width: 1200px) {
    .casino-grid {grid-template-columns: repeat(4, 1fr);}
}
@media (max-width: 900px) {
    .casino-grid {grid-template-columns: repeat(3, 1fr);}
    .game-cate .page-title {font-size: 2rem;}
    .provider-logo {max-width: 150px;}
    .provider-logo img {max-height: 60px;}
}
@media (max-width: 767px) {
    .game-cate {margin: 20px auto;}
    ul.cate-list {margin: 0 auto; width: 100%; justify-content: center; gap: 5px;}
    ul.cate-list > li {width: calc(100% / 2 - 5px);}
    .game-cate .page-title {font-size: 1.1rem;}
    .game-cate .page-subtitle {display: none;}
    .games-section {margin: 20px auto 0 auto;}
}
@media (max-width: 600px) {
    .casino-grid {grid-template-columns: repeat(2, 1fr); gap: 12px;}
    .provider-logo {max-width: 120px;}
    .provider-logo img {max-height: 50px;}
    .provider-name {font-size: 0.85rem;}
    .btn-play-casino, .btn-play-slot {padding: 12px 30px; font-size: 0.85rem;}
}
@media (max-width: 400px) {
    .casino-grid {grid-template-columns: repeat(2, 1fr); gap: 10px;}
    .provider-logo {max-width: 80px;}
    .provider-logo img {max-height: 35px;}
    .provider-name {font-size: 0.7rem;}
    .btn-play-casino, .btn-play-slot {padding: 10px 20px; font-size: 0.75rem;}
}

/* ============================================================================
   브랜드별 이미지 히어로 (presentations/st10/brand/{brand}/slides.json)
   - genova(W16) 패턴을 ST10 에 이식. 브랜드 매니페스트가 있을 때만 .banner-slider--brand 부여.
   - 레거시 동영상 히어로의 고정 높이(.hero 220/200/180px)를 무력화 → 원본 이미지를
     비율 그대로(잘림 없이) 노출. 동영상 경로(타 업체)에는 영향 없음.
   ============================================================================ */
.banner-slider.banner-slider--brand { height: auto; min-height: 0; }                 /* .hero 고정높이 무력화: 0,2,0 > 0,1,0 */
.banner-slider.banner-slider--brand .swiper-slide { min-height: 0; height: auto; }   /* .hero .swiper-slide(0,2,0) 보다 높은 0,3,0 */
.banner-slider--brand .banner-img { display: block; width: 100%; height: auto; }     /* .hero img(0,1,1) 보다 높은 0,2,0 → 비율 유지, 왜곡/크롭 없음 */
