/* ================================================
   GOLD LANDING PAGE – Wizard Clone Styles
   ================================================ */

/* ====== HERO CAROUSEL ====== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 700px;
    overflow: hidden;
    background: #101010;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: 3;
}

.carousel-overlay h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
}

.carousel-overlay p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    backdrop-filter: blur(4px);
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 16px;
}

.carousel-next {
    right: 16px;
}

.carousel-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.indicator.active {
    background: #3b82f6;
    transform: scale(1.3);
}

/* ====== HOT GAMES SCROLL ====== */
.hot-games-section {
    padding: 24px 0 16px;
    background: #101010;
    overflow: hidden;
}

.hot-games-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 767px) {
    .hot-games-scroll {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

.hot-game-card {
    width: 100%;
    min-width: 0; /* 그리드 아이템 overflow 방지 */
}

.game-thumb-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #101010;
}

.game-thumb-wrapper .aspect-spacer {
    width: 100%;
    aspect-ratio: 4/3;
    min-height: 0;
}

@media (min-width: 480px) {
    .game-thumb-wrapper .aspect-spacer {
        min-height: 120px;
    }
}

/* 태블릿 (768px ~ 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .game-thumb-wrapper .aspect-spacer {
        min-height: 160px;
    }
}

/* 데스크탑 (1200px+) */
@media (min-width: 1200px) {
    .game-thumb-wrapper .aspect-spacer {
        min-height: 240px;
    }
}

.game-thumb-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.game-thumb-wrapper:hover .game-thumb-video {
    transform: scale(1.1);
}

.game-thumb-label {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    pointer-events: none;
}

.game-thumb-wrapper:hover .game-thumb-label {
    transform: scale(1.1);
}

/* Custom HTML title overlay (e.g. BING25) */
.game-custom-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 14px 16px;
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
    z-index: 10;
}

.game-live-badge {
    background: #e53e3e;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 2px 7px;
    border-radius: 3px;
    margin-top: 5px;
}

.game-custom-title {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    text-align: center;
    margin: 0;
}

.game-title-redline {
    width: 36px;
    height: 3px;
    background: #e53e3e;
    border-radius: 2px;
    margin-top: 7px;
}

.game-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 20;
}

.game-thumb-wrapper:hover .game-hover-overlay {
    opacity: 1;
}

.game-hover-info {
    text-align: center;
}

.game-hover-info h3 {
    font-weight: 700;
    color: #fff;
    font-size: 1.25rem;
    white-space: nowrap;
    margin-bottom: 4px;
    opacity: 0;
    transition: all 0.5s;
    transform: translateY(8px);
}

.game-thumb-wrapper:hover .game-hover-info h3 {
    opacity: 1;
    transform: translateY(0);
}

.game-hover-info p {
    color: #d1d5db;
    font-size: 0.75rem;
    margin-bottom: 16px;
    opacity: 0;
    transition: all 0.5s;
}

.game-thumb-wrapper:hover .game-hover-info p {
    opacity: 1;
}

.btn-game-play {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.5s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    opacity: 0;
    white-space: nowrap;
}

.game-thumb-wrapper:hover .btn-game-play {
    bottom: 16px;
    opacity: 1;
}

@media (min-width: 640px) {
    .game-thumb-wrapper:hover .btn-game-play {
        bottom: 24px;
    }
}

.btn-game-play:hover {
    background: #2563eb;
}

.btn-game-play svg {
    width: 12px;
    height: 12px;
}

/* ====== NOTICE BAR ====== */
.notice-bar {
    height: 48px;
    background: #3b82f6;
    margin-top: 24px;
}

.notice-inner {
    display: flex;
    gap: 40px;
    overflow: hidden;
    height: 100%;
    align-items: center;
}

.notice-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.notice-heading svg {
    width: 24px;
    height: 24px;
}

.notice-heading span {
    font-size: 0.875rem;
    color: #000;
    font-weight: 700;
}

.notice-marquee {
    overflow: hidden;
    flex: 1;
}

.notice-text {
    color: #000;
    font-size: 0.875rem;
    line-height: 48px;
    display: block;
    white-space: nowrap;
}

/* ====== QUICK MENU ====== */
.quick-menu-section {
    padding: 32px 0 48px;
}

.quick-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (min-width: 640px) {
    .quick-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .quick-menu-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.quick-menu-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    height: 128px;
    text-decoration: none !important;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
}

.quick-menu-item:hover {
    background: #1a1a1a;
    border-color: #fff;
    transform: translateY(-2px);
}

.quick-icon-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 8px;
}

.quick-icon-wrap img {
    width: 48px;
    height: 48px;
}

.quick-icon-wrap svg {
    width: 48px;
    height: 48px;
    color: #fff;
    flex-shrink: 0;
}

.quick-title {
    color: #fff;
    font-weight: 500;
    font-size: 1.25rem;
}

.quick-subtitle {
    color: #9ca3af;
    font-size: 0.75rem;
}

/* ====== CATEGORY BANNERS ====== */
.category-banners {
    padding: 16px 0 32px;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (min-width: 640px) {
    .banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .banner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.banner-card {
    display: block;
    text-decoration: none !important;
}

.banner-bg {
    aspect-ratio: 540/300;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    padding: 16px 0;
}

.banner-card:hover .banner-bg {
    transform: scale(1.02);
}

.banner-bg b {
    margin-top: 8px;
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

@media (min-width: 640px) {
    .banner-bg b {
        margin-top: 24px;
        font-size: 1.125rem;
    }
}

.banner-bg strong {
    font-size: 1.25rem;
    color: #fff;
    text-align: center;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .banner-bg strong {
        font-size: 1.5rem;
    }
}

.banner-arrow {
    width: 24px;
    height: 24px;
    color: #fff;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

@media (min-width: 640px) {
    .banner-arrow {
        margin-bottom: 32px;
    }
}

.banner-card:hover .banner-arrow {
    transform: translateY(12px);
}

/* ====== HOT BRANDS ====== */
.hot-brands-section {
    padding: 48px 0;
    color: #fff;
}

.section-heading {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.brands-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.brand-card {
    background: #101010;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.brand-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.brand-logo {
    max-width: 178px;
    max-height: 80px;
    margin: 0 auto 8px;
    object-fit: contain;
}

.brand-sub {
    color: #9ca3af;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 16px;
}

.brand-desc {
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
}

.brand-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.brand-game-item {
    text-align: center;
}

.brand-game-thumb {
    position: relative;
    width: 100%;
    height: 112px;
    border-radius: 8px;
    overflow: hidden;
}

.brand-game-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-game-label {
    position: absolute;
    inset: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-game-name {
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 8px;
    color: #fff;
}

.brand-game-provider {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* ====== GAME CATEGORY SECTIONS ====== */
.game-sections-area {
    padding-bottom: 80px;
}

@media (min-width: 640px) {
    .game-sections-area {
        padding-bottom: 96px;
    }
}

@media (min-width: 768px) {
    .game-sections-area {
        padding-bottom: 120px;
    }
}

.game-category-section {
    max-width: 100vw;
    overflow: hidden;
    padding-top: 40px;
}

@media (min-width: 640px) {
    .game-category-section {
        padding-top: 64px;
    }
}

.category-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.category-scroll-wrap {
    overflow: hidden;
}

.category-scroll {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-bottom: 16px;
}

@media (min-width: 640px) {
    .category-scroll {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .category-scroll {
        grid-template-columns: repeat(4, 1fr);
    }
    #casino .category-scroll {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }
    #slot .category-scroll {
        grid-template-columns: repeat(6, 1fr);
        gap: 10px;
    }
}

.provider-card {
    width: 100%;
}

.provider-thumb-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #101010;
}

.provider-aspect {
    width: 100%;
    aspect-ratio: 3/4;
}

.provider-thumb-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s;
}

.provider-thumb-wrapper:hover .provider-thumb-video {
    transform: scale(1.1);
}

.provider-thumb-label {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    pointer-events: none;
}

.provider-thumb-wrapper:hover .provider-thumb-label {
    transform: scale(1.1);
}

.provider-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 20;
}

.provider-thumb-wrapper:hover .provider-hover-overlay {
    opacity: 1;
}

.provider-hover-overlay h3 {
    font-weight: 700;
    color: #fff;
    font-size: 1.5rem;
    white-space: nowrap;
    margin-bottom: 8px;
    opacity: 0;
    transition: all 0.5s;
    transform: translateY(8px);
}

.provider-thumb-wrapper:hover .provider-hover-overlay h3 {
    opacity: 1;
    transform: translateY(0);
}

.provider-hover-overlay .btn-game-play {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    opacity: 0;
    transition: all 0.5s;
}

.provider-thumb-wrapper:hover .provider-hover-overlay .btn-game-play {
    bottom: 32px;
    opacity: 1;
}

@media (min-width: 640px) {
    .provider-thumb-wrapper:hover .provider-hover-overlay .btn-game-play {
        bottom: 40px;
    }
}

.provider-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
    text-align: center;
    margin-top: 8px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 640px) {
    .hero-carousel {
        height: 45vh;
        min-height: 280px;
    }

    .carousel-overlay h2 {
        font-size: 1.5rem;
    }

    .carousel-overlay p {
        font-size: 0.875rem;
    }

    .carousel-overlay {
        padding: 24px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .category-title {
        font-size: 1.75rem;
    }
}

/* Container uses Bootstrap .container - no override needed */

/* ================================================
   WIZARD-STYLE HEADER
   ================================================ */
.wz-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wz-header-inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wz-header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.wz-logo {
    display: flex;
    align-items: center;
    text-decoration: none !important;
}

.wz-logo-img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.wz-nav-desktop {
    display: none;
    align-items: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .wz-nav-desktop {
        display: flex;
    }
}

.wz-nav-link {
    font-size: 0.875rem;
    color: #d1d5db;
    text-decoration: none !important;
    transition: color 0.2s;
    white-space: nowrap;
}

.wz-nav-link:hover {
    color: #fff;
}

.wz-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Auth Buttons (Logged Out) */
.wz-auth-buttons {
    display: none;
    align-items: center;
    gap: 8px;
}

@media (min-width: 640px) {
    .wz-auth-buttons {
        display: flex;
    }
}

.wz-btn-signin,
.wz-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #d1d5db;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.wz-btn-signin:hover,
.wz-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.wz-btn-signup {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #3b82f6;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.wz-btn-signup:hover {
    background: #2563eb;
}

/* User Area (Logged In) */
.wz-user-area {
    display: none;
    align-items: center;
    gap: 6px;
}

@media (min-width: 768px) {
    .wz-user-area {
        display: flex;
    }
}

.wz-user-stat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #d1d5db;
    font-size: 0.85rem;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    white-space: nowrap;
}

.wz-cash-value {
    color: #fbbf24;
    font-weight: 700;
}

.wz-point-value {
    color: #60a5fa;
    font-weight: 700;
}

.wz-point-label {
    color: #60a5fa;
    font-weight: 600;
    font-size: 0.8rem;
}

.wz-btn-note,
.wz-btn-myinfo,
.wz-btn-logout {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    color: #d1d5db;
    border: none;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.wz-btn-note:hover,
.wz-btn-myinfo:hover,
.wz-btn-logout:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.wz-btn-note .note-count-badge {
    font-weight: 600;
}

/* Language Selector */
.wz-lang-selector {
    position: relative;
    display: none;
}

@media (min-width: 640px) {
    .wz-lang-selector {
        display: block;
    }
}

.wz-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.08);
    color: #d1d5db;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.wz-lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.wz-lang-flag {
    font-size: 1rem;
    line-height: 1;
}

.wz-lang-text {
    letter-spacing: 0.03em;
}

.wz-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 110px;
    background: #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.wz-lang-selector:hover .wz-lang-dropdown,
.wz-lang-selector.open .wz-lang-dropdown {
    display: block;
}

.wz-lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    color: #d1d5db;
    text-decoration: none !important;
    font-size: 0.85rem;
    transition: background 0.15s, color 0.15s;
}

.wz-lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.wz-lang-option.active {
    color: #fbbf24;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.wz-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #d1d5db;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: color 0.2s;
}

@media (min-width: 768px) {
    .wz-menu-toggle {
        display: none;
    }
}

.wz-menu-toggle:hover {
    color: #fff;
}

/* Mobile Slide Menu */
.wz-mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #111827;
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.wz-mobile-menu.open {
    right: 0;
}

.wz-mobile-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wz-mobile-close {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.wz-mobile-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.wz-mobile-body {
    padding: 16px;
    flex: 1;
}

/* Mobile User Info */
.wz-mobile-user {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.wz-mobile-user-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.wz-mobile-user-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.wz-btn-primary-sm {
    flex: 1;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s;
}

.wz-btn-primary-sm:hover {
    background: #2563eb;
}

.wz-btn-ghost-sm {
    flex: 1;
    background: transparent;
    color: #9ca3af;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.wz-btn-ghost-sm:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Mobile Auth Buttons */
.wz-mobile-auth {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.wz-btn-signin-full {
    flex: 1;
    background: transparent;
    color: #d1d5db;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.wz-btn-signin-full:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.wz-btn-signup-full {
    flex: 1;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.wz-btn-signup-full:hover {
    background: #2563eb;
}

/* Mobile Nav */
.wz-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wz-mobile-nav li a {
    display: block;
    padding: 12px 8px;
    color: #d1d5db;
    text-decoration: none !important;
    font-size: 0.9375rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.wz-mobile-nav li a:hover,
.wz-mobile-nav li a.active {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.wz-nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

/* Mobile Overlay */
.wz-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.wz-mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* ── 모바일 메뉴 회원정보 (function.js 주입) ── */
#mobileMenu .mobile-user-info {
    text-align: center;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 16px;
}

#mobileMenu .user-account {
    margin-bottom: 10px;
}

#mobileMenu .user-id {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f5d78e;
}

#mobileMenu .user-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

#mobileMenu .user-stats strong {
    color: #fff;
    font-weight: 700;
}

#mobileMenu .user-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

#mobileMenu .btn-note {
    flex: 1;
    background: rgba(212, 166, 65, 0.15);
    border: 1px solid rgba(212, 166, 65, 0.4);
    color: #f5d78e;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.2s;
}

#mobileMenu .btn-note:hover {
    background: rgba(212, 166, 65, 0.3);
}

#mobileMenu .btn-myinfo {
    flex: 1;
    background: linear-gradient(90deg, #d4a641, #f5d78e, #d4a641);
    color: #15191f;
    border: none;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

#mobileMenu .btn-myinfo:hover {
    opacity: 0.85;
}

#mobileMenu .btn-logout {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #9ca3af;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

#mobileMenu .btn-logout:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* ================================================
   WIZARD-STYLE FOOTER
   ================================================ */
.wz-footer {
    background: #101010;
    color: #fff;
    padding: 20px 0 48px;
}

.wz-footer-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .wz-footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.wz-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .wz-footer-brand {
        align-items: flex-start;
    }
}

.wz-footer-logo {
    text-decoration: none !important;
}

.wz-footer-logo-img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.wz-footer-logo:hover .wz-footer-logo-img {
    opacity: 1;
}

.wz-footer-copy {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.wz-footer-providers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.wz-footer-provider-logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.wz-footer-provider-logo:hover {
    opacity: 1;
}

.wz-footer-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wz-btn-scroll-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.wz-btn-scroll-top:hover {
    background: #2563eb;
}