/* 카지노바 public — banner navy + gold + cyan theme */
.luxury-gold-theme {
    --lg-navy: #0a1628;
    --lg-navy-mid: #122447;
    --lg-navy-deep: #060e1c;
    --lg-navy-input: #162d55;
    --lg-cream: #122447;
    --lg-cream-dark: #0d1b36;
    --lg-marble: #0a1628;
    --lg-forest: #122447;
    --lg-forest-deep: #0a1628;
    --lg-black: #060e1c;
    --lg-gold-1: #d4af37;
    --lg-gold-2: #f5e6a8;
    --lg-gold-3: #bf953f;
    --lg-gold-4: #aa771c;
    --lg-cyan: #00c8ff;
    --lg-cyan-soft: rgba(0, 200, 255, 0.12);
    --lg-cyan-glow: rgba(0, 200, 255, 0.35);
    --lg-cta: #a91d35;
    --lg-cta-hover: #c41e3a;
    --lg-gold-gradient: linear-gradient(135deg, #bf953f 0%, #f5e6a8 28%, #d4af37 52%, #f5e6a8 78%, #bf953f 100%);
    --lg-gold-border: linear-gradient(90deg, #aa771c, #f5e6a8, #d4af37, #f5e6a8, #aa771c);
    --lg-text: #ffffff;
    --lg-muted: #9eb0cc;
    --lg-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    --lg-shadow-cyan: 0 0 24px rgba(0, 200, 255, 0.12);
    --lg-shadow-gold: 0 8px 28px rgba(212, 175, 55, 0.32);
    --lg-shadow-cta: 0 8px 28px rgba(169, 29, 53, 0.38);
    --lg-radius: 16px;
    --lg-pill: 50px;
}

.luxury-gold-theme {
    background:
        radial-gradient(ellipse 100% 55% at 50% -8%, rgba(0, 200, 255, 0.1), transparent 52%),
        radial-gradient(ellipse 55% 40% at 100% 100%, rgba(169, 29, 53, 0.07), transparent 48%),
        radial-gradient(ellipse 50% 35% at 0% 90%, rgba(212, 175, 55, 0.06), transparent 45%),
        linear-gradient(180deg, var(--lg-navy-deep) 0%, var(--lg-navy) 50%, var(--lg-cream-dark) 100%);
    color: var(--lg-text);
    font-family: 'Noto Sans KR', sans-serif;
}

.luxury-gold-theme::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300c8ff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

/* Layout shell */
.luxury-gold-theme .container,
.luxury-gold-theme .live_time_container {
    max-width: 850px;
    margin: 0 auto;
    background: transparent;
    padding: 0 1.25rem;
}

.luxury-gold-theme .live_time_container {
    padding: 0.75rem 1.25rem 0;
}

/* Header */
.luxury-gold-theme .header {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(6, 14, 28, 0.99) 100%);
    border-bottom: 2px solid transparent;
    border-image: var(--lg-gold-border) 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), var(--lg-shadow-cyan);
}

.luxury-gold-theme .header-content {
    min-height: 72px;
    padding: 0.85rem 0;
}

.luxury-gold-theme .header-menu a {
    color: var(--lg-gold-2);
    font-weight: 600;
    letter-spacing: 0.06em;
    font-size: 0.9rem;
    border: 1px solid rgba(252, 246, 186, 0.35);
    border-radius: var(--lg-pill);
    padding: 0.42rem 1.1rem;
    transition: all 0.25s ease;
}

.luxury-gold-theme .header-menu a:hover {
    background: var(--lg-cyan-soft);
    border-color: var(--lg-cyan);
    color: #fff;
    box-shadow: 0 0 20px var(--lg-cyan-glow);
}

.luxury-gold-theme .header-menu div:has(a[href*="info"]),
.luxury-gold-theme .header-menu div:has(a[href*="faq"]),
.luxury-gold-theme .header-menu div:has(a[href*="contact"]) {
    /* active page styling via JS optional — skip */
}

/* Live time ticker */
.luxury-gold-theme .main_live_time {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0 0;
    background: transparent;
}

.luxury-gold-theme .live_time-content {
    width: 100%;
    min-height: 46px;
    padding: 0.55rem 1.5rem;
    border-radius: var(--lg-pill);
    border: 2px solid transparent;
    background:
        linear-gradient(var(--lg-navy-mid), var(--lg-navy-mid)) padding-box,
        var(--lg-gold-border) border-box;
    box-shadow: var(--lg-shadow), var(--lg-shadow-cyan);
}

.luxury-gold-theme .live_time-content p {
    margin: 0;
    background: var(--lg-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.3;
    text-align: center;
}

/* Brand hero banner */
.luxury-gold-theme .luxury-brand-hero {
    max-width: 850px;
    margin: 0 auto;
    padding: 0.75rem 1rem 0;
}

.luxury-gold-theme .luxury-brand-hero-inner {
    border-radius: var(--lg-radius);
    overflow: hidden;
    box-shadow: var(--lg-shadow), 0 0 0 1px rgba(191, 149, 63, 0.25);
}

.luxury-gold-theme .luxury-brand-hero img,
.luxury-gold-theme .luxury-brand-hero-video {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
    object-fit: cover;
}

.luxury-gold-theme .luxury-brand-hero-video {
    pointer-events: none;
}

/* Main / contact banner area */
.luxury-gold-theme .main-section {
    aspect-ratio: auto;
    min-height: 0;
    background-image: none;
    padding: 1rem;
    /* border-bottom: 1px solid rgba(0, 200, 255, 0.12); */
}

.luxury-gold-theme .sub-kakaotalk-section {
    /* background: var(--lg-navy-mid); */
    padding: 1rem;
}

.luxury-gold-theme .main-banners {
    gap: 0.85rem;
}

.luxury-gold-theme .main-banner-link {
    border-radius: var(--lg-pill);
    overflow: hidden;
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    background:
        linear-gradient(var(--lg-black), var(--lg-black)) padding-box,
        var(--lg-gold-border) border-box; */
}

.luxury-gold-theme .main-banner-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 200, 255, 0.2), var(--lg-shadow-gold);
    opacity: 1;
}

.luxury-gold-theme .hdomain-section {
    /* background: var(--lg-navy-deep); */
    padding: 0.5rem 1rem 1rem;
}

.luxury-gold-theme .hdomain-banners img {
    border-radius: 12px;
    box-shadow: var(--lg-shadow);
    border: 1px solid rgba(212, 175, 55, 0.35);
}

/* Section titles with crown divider */
.luxury-gold-theme .section-title {
    margin-bottom: 2rem;
    padding-top: 1.5rem;
}

.luxury-gold-theme .section-title::before {
    content: "\f521";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    background: var(--lg-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.luxury-gold-theme .section-title h1,
.luxury-gold-theme .section-title h2,
.luxury-gold-theme .info-hero-title h1,
.luxury-gold-theme .contact-header h1 {
    font-family: 'Noto Serif KR', serif;
    color: var(--lg-gold-2);
    font-weight: 700;
    text-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
    margin-bottom: 0.5rem;
}

.luxury-gold-theme .section-title h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    position: relative;
    display: inline-block;
    padding-bottom: 0.65rem;
}

.luxury-gold-theme .section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: var(--lg-gold-border);
}

.luxury-gold-theme .section-title p,
.luxury-gold-theme .info-hero-title p,
.luxury-gold-theme .contact-description p {
    color: var(--lg-muted);
    font-size: 1rem;
    padding: 0;
    letter-spacing: 0.02em;
}

.luxury-gold-theme .info-hero-title h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
}

.luxury-gold-theme .info-hero-title::before {
    content: "카지노바 VIP AVATA";
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    font-weight: 600;
    margin-bottom: 0.85rem;
    color: var(--lg-cyan);
    text-shadow: 0 0 12px var(--lg-cyan-glow);
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
}

/* Services */
.luxury-gold-theme .services-section {
    background: var(--lg-navy-mid);
    padding: 2.5rem 0 3rem;
    border-top: 1px solid rgba(0, 200, 255, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.luxury-gold-theme .service-card {
    background: linear-gradient(160deg, rgba(18, 36, 71, 0.95), rgba(13, 27, 54, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--lg-radius);
    box-shadow: var(--lg-shadow), var(--lg-shadow-cyan);
    color: var(--lg-text);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.luxury-gold-theme .service-card:hover {
    transform: translateY(-6px);
    border-color: var(--lg-cyan);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4), 0 0 20px var(--lg-cyan-glow);
}

.luxury-gold-theme .service-icon {
    background: var(--lg-gold-gradient);
    box-shadow: 0 6px 20px rgba(179, 135, 40, 0.4);
}

.luxury-gold-theme .service-icon i {
    color: var(--lg-navy-deep);
}

.luxury-gold-theme .service-card h3 {
    color: var(--lg-gold-2);
    font-family: 'Noto Serif KR', serif;
}

.luxury-gold-theme .service-card p {
    color: var(--lg-muted);
}

.luxury-gold-theme .service-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    margin-bottom: 0.85rem;
    background: var(--lg-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* YouTube */
.luxury-gold-theme .youtube-section {
    background: linear-gradient(180deg, var(--lg-navy-deep) 0%, var(--lg-navy) 100%);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(0, 200, 255, 0.12);
}

.luxury-gold-theme .youtube-section .section-title::before {
    -webkit-text-fill-color: var(--lg-gold-2);
    color: var(--lg-gold-2);
    background: none;
}

.luxury-gold-theme .youtube-section .section-title h2 {
    color: var(--lg-gold-2);
}

.luxury-gold-theme .youtube-section .section-title h2::after {
    background: var(--lg-gold-border);
}

.luxury-gold-theme .youtube-section .section-title p {
    color: rgba(252, 246, 186, 0.75);
}

.luxury-gold-theme .youtube-section .container {
    padding-bottom: 2.5rem;
}

.luxury-gold-theme .youtube-channels-grid,
.luxury-gold-theme #personalities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 0 0 1.75rem;
    padding: 0 0.35rem;
}

.luxury-gold-theme .youtube-subheading {
    margin: 0 0 1.25rem;
    padding: 0 0.35rem;
    font-family: 'Noto Serif KR', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--lg-gold-2);
    letter-spacing: 0.04em;
    border-left: 3px solid var(--lg-gold-3);
    padding-left: 0.75rem;
}

.luxury-gold-theme .youtube-subheading:has(+ .live-video-list:empty) {
    display: none;
}

.luxury-gold-theme .personality-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    margin: 0;
    text-decoration: none;
    background: rgba(6, 14, 28, 0.55);
    border: 1px solid rgba(0, 200, 255, 0.25);
    border-radius: var(--lg-pill);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.luxury-gold-theme .personality-link:hover {
    border-color: var(--lg-cyan);
    box-shadow: 0 0 24px var(--lg-cyan-glow);
    background: rgba(6, 14, 28, 0.75);
}

.luxury-gold-theme .personality-link-profile img {
    border-color: var(--lg-gold-1);
}

.luxury-gold-theme .live-video-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0;
    padding: 0 0.35rem 0.5rem;
}

.luxury-gold-theme .live-video-item {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin: 0;
    padding: 1.1rem 1.15rem 1.2rem;
    background: rgba(6, 14, 28, 0.55);
    border: 1px solid rgba(0, 200, 255, 0.2);
    border-radius: var(--lg-radius);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.luxury-gold-theme .live-video-channel {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(191, 149, 63, 0.28);
}

.luxury-gold-theme .live-video-channel-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(191, 149, 63, 0.55);
    object-fit: cover;
    flex-shrink: 0;
}

.luxury-gold-theme .live-video-channel-meta {
    min-width: 0;
    flex: 1;
}

.luxury-gold-theme .live-video-channel-name {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 0.3rem;
}

.luxury-gold-theme .live-video-channel-link {
    display: inline-block;
    font-size: 0.82rem;
    text-decoration: none;
}

.luxury-gold-theme .live-video-channel-link:hover {
    text-decoration: underline;
}

.luxury-gold-theme .live-video-channel-name,
.luxury-gold-theme .live-video-title,
.luxury-gold-theme .personality-link-content span {
    color: #ffffff;
}

.luxury-gold-theme .live-video-channel-link {
    color: var(--lg-gold-2);
}

.luxury-gold-theme .live-video-card {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.55rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(191, 149, 63, 0.35);
    border-radius: 12px;
    text-align: left;
    cursor: pointer;
    color: inherit;
    font: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.luxury-gold-theme .live-video-card:hover {
    border-color: var(--lg-gold-2);
    box-shadow: 0 8px 24px rgba(191, 149, 63, 0.25);
}

.luxury-gold-theme .live-video-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    pointer-events: none;
}

.luxury-gold-theme .live-video-title {
    margin-top: 0.7rem;
    padding: 0 0.2rem;
    font-size: 0.94rem;
    line-height: 1.5;
    pointer-events: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hero swiper */
.luxury-gold-theme .hero-section {
    box-shadow: var(--lg-shadow);
    border: 2px solid transparent;
    border-image: var(--lg-gold-border) 1;
}

.luxury-gold-theme .hero-swiper .swiper-slide::before {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.65) 0%, rgba(6, 14, 28, 0.55) 100%);
}

.luxury-gold-theme .hero-content {
    background: rgba(10, 22, 40, 0.82);
    border: 2px solid transparent;
    border-image: var(--lg-gold-border) 1;
    border-radius: var(--lg-radius);
    backdrop-filter: blur(8px);
}

.luxury-gold-theme .hero-content h2 {
    font-family: 'Noto Serif KR', serif;
    background: var(--lg-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.luxury-gold-theme .hero-content p {
    color: var(--lg-muted);
    padding: 0;
}

.luxury-gold-theme .hero-swiper .swiper-button-next,
.luxury-gold-theme .hero-swiper .swiper-button-prev {
    color: var(--lg-gold-2);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(191, 149, 63, 0.5);
}

.luxury-gold-theme .hero-swiper .swiper-pagination-bullet {
    background: var(--lg-gold-3);
    opacity: 0.6;
}

.luxury-gold-theme .hero-swiper .swiper-pagination-bullet-active {
    background: var(--lg-gold-2);
    opacity: 1;
}

/* About / Info */
.luxury-gold-theme .about-section {
    background: var(--lg-navy);
    color: var(--lg-text);
    box-shadow: none;
}

.luxury-gold-theme .about-section .section-title h2,
.luxury-gold-theme .about-section .section-title p {
    color: inherit;
}

.luxury-gold-theme .about-text {
    background: linear-gradient(160deg, rgba(18, 36, 71, 0.92), rgba(13, 27, 54, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--lg-radius);
    padding: 1.75rem;
    box-shadow: var(--lg-shadow), var(--lg-shadow-cyan);
}

.luxury-gold-theme .about-text h3 {
    font-family: 'Noto Serif KR', serif;
    color: var(--lg-forest);
    background: var(--lg-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.luxury-gold-theme .about-text p {
    color: var(--lg-muted);
    text-shadow: none;
}

.luxury-gold-theme .about-text p:last-child {
    background: rgba(6, 14, 28, 0.45);
    border: 1px solid rgba(0, 200, 255, 0.15);
    border-radius: 12px;
}

.luxury-gold-theme .about-image img {
    border-left: none;
    border-radius: var(--lg-radius);
    box-shadow: var(--lg-shadow);
    border: 2px solid transparent;
    border-image: var(--lg-gold-border) 1;
}

/* FAQ */
.luxury-gold-theme .faq-section {
    background: var(--lg-navy-deep);
    padding-bottom: 3rem;
}

.luxury-gold-theme .faq-item {
    background: linear-gradient(160deg, rgba(18, 36, 71, 0.92), rgba(13, 27, 54, 0.95));
    border: 1px solid rgba(0, 200, 255, 0.12);
    border-radius: var(--lg-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    margin-bottom: 1rem;
}

.luxury-gold-theme .faq-item:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), 0 0 16px var(--lg-cyan-glow);
    border-color: rgba(0, 200, 255, 0.3);
}

.luxury-gold-theme .faq-question {
    background: linear-gradient(90deg, rgba(18, 36, 71, 0.95), rgba(13, 27, 54, 0.9));
    border-radius: var(--lg-radius) var(--lg-radius) 0 0;
}

.luxury-gold-theme .faq-question:hover {
    background: rgba(22, 45, 85, 0.95);
}

.luxury-gold-theme .faq-question h3 {
    color: var(--lg-gold-2);
    font-weight: 600;
}

.luxury-gold-theme .faq-question span,
.luxury-gold-theme .faq-answer > span {
    background: var(--lg-gold-gradient);
    color: var(--lg-navy-deep);
    border: 1px solid rgba(170, 119, 28, 0.4);
    box-shadow: var(--lg-shadow-gold);
    font-family: 'Noto Serif KR', serif;
}

.luxury-gold-theme .faq-icon {
    color: var(--lg-gold-4);
}

.luxury-gold-theme .faq-answer {
    background: rgba(6, 14, 28, 0.5);
    border-top: 1px solid rgba(0, 200, 255, 0.1);
}

.luxury-gold-theme .faq-content p,
.luxury-gold-theme .faq-content li {
    color: var(--lg-muted);
}

.luxury-gold-theme .faq-item.active .faq-question {
    background: linear-gradient(90deg, var(--lg-navy-mid) 0%, var(--lg-navy-deep) 100%);
    box-shadow: inset 0 0 20px var(--lg-cyan-soft);
}

.luxury-gold-theme .faq-item.active .faq-question h3,
.luxury-gold-theme .faq-item.active .faq-question span,
.luxury-gold-theme .faq-item.active .faq-icon {
    color: var(--lg-gold-2);
    -webkit-text-fill-color: var(--lg-gold-2);
}

.luxury-gold-theme .faq-item.active .faq-question span {
    background: rgba(0, 0, 0, 0.35);
    border-color: var(--lg-gold-2);
    -webkit-text-fill-color: var(--lg-gold-2);
}

.luxury-gold-theme .faq-contact {
    background: rgba(18, 36, 71, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-left: 4px solid var(--lg-cyan);
}

.luxury-gold-theme .faq-contact p,
.luxury-gold-theme .faq-contact li {
    color: var(--lg-text);
}

/* Contact */
.luxury-gold-theme .contact-section {
    background: var(--lg-navy);
    color: var(--lg-text);
    min-height: auto;
    padding-bottom: 3rem;
}

.luxury-gold-theme .contact-header {
    text-align: center;
    padding: 2rem 0 1.5rem;
}

.luxury-gold-theme .contact-header h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
}

.luxury-gold-theme .contact-header::before {
    content: "카지노바 VIP AVATA";
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--lg-cyan);
    text-shadow: 0 0 12px var(--lg-cyan-glow);
    font-family: 'Montserrat', sans-serif;
}

.luxury-gold-theme .contact-description p {
    color: var(--lg-muted);
}

.luxury-gold-theme .contact-form-wrapper {
    background: linear-gradient(160deg, rgba(18, 36, 71, 0.95), rgba(13, 27, 54, 0.98));
    border: 2px solid transparent;
    border-image: var(--lg-gold-border) 1;
    border-radius: var(--lg-radius);
    box-shadow: var(--lg-shadow), var(--lg-shadow-cyan);
    overflow: hidden;
}

.luxury-gold-theme .contact-form-header {
    background: linear-gradient(90deg, var(--lg-navy-deep), var(--lg-navy-mid));
    border-bottom: 2px solid rgba(212, 175, 55, 0.4);
}

.luxury-gold-theme .contact-form-header h2 {
    color: var(--lg-gold-2);
    font-family: 'Noto Serif KR', serif;
    text-shadow: none;
}

.luxury-gold-theme .contact-form {
    background: rgba(6, 14, 28, 0.35);
    padding: 1.5rem 1.35rem;
}

.luxury-gold-theme .contact-form label {
    color: var(--lg-gold-2);
    font-weight: 600;
}

.luxury-gold-theme .contact-form input,
.luxury-gold-theme .contact-form textarea {
    background: var(--lg-navy-input);
    border: 1px solid rgba(0, 200, 255, 0.2);
    color: var(--lg-text);
    border-radius: 10px;
}

.luxury-gold-theme .contact-form input:focus,
.luxury-gold-theme .contact-form textarea:focus {
    border-color: var(--lg-cyan);
    box-shadow: 0 0 0 3px var(--lg-cyan-soft), 0 0 14px var(--lg-cyan-glow);
    outline: none;
}

.luxury-gold-theme .contact-form .form-note {
    color: var(--lg-muted);
}

.luxury-gold-theme .contact-form .form-message.success {
    background: rgba(34, 197, 94, 0.12);
    border-color: #22c55e;
    color: #86efac;
}

.luxury-gold-theme .contact-form .form-message.error {
    background: rgba(170, 40, 40, 0.08);
    border-color: #8b2e2e;
    color: #6b1f1f;
}

.luxury-gold-theme .submit-btn {
    background: linear-gradient(180deg, var(--lg-cta-hover), var(--lg-cta));
    color: #ffffff;
    border: none;
    border-radius: var(--lg-pill);
    padding: 0.85rem 2rem;
    font-weight: 700;
    box-shadow: var(--lg-shadow-cta);
    letter-spacing: 0.04em;
}

.luxury-gold-theme .submit-btn:hover {
    background: linear-gradient(180deg, #d42a45, var(--lg-cta-hover));
    border-color: transparent;
    box-shadow: 0 12px 32px rgba(169, 29, 53, 0.48);
    transform: translateY(-2px);
}

/* YouTube modal */
.luxury-gold-theme .youtube-video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.luxury-gold-theme .youtube-video-modal.is-open {
    display: flex;
}

.luxury-gold-theme .youtube-video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(3px);
    cursor: pointer;
}

.luxury-gold-theme .youtube-video-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    background: var(--lg-navy-deep);
    border: 2px solid rgba(0, 200, 255, 0.35);
    border-radius: 14px;
    padding: 0.85rem;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.65);
}

.luxury-gold-theme .youtube-video-modal-frame-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.luxury-gold-theme .youtube-video-modal-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

.luxury-gold-theme .youtube-video-modal-close {
    position: absolute;
    right: 0.35rem;
    top: -2.25rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid var(--lg-cyan);
    background: var(--lg-navy-mid);
    color: var(--lg-gold-2);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

/* Footer */
.luxury-gold-theme .footer {
    background: linear-gradient(180deg, var(--lg-navy-deep) 0%, #030810 100%);
    border-top: 2px solid transparent;
    border-image: var(--lg-gold-border) 1;
}

.luxury-gold-theme .footer p {
    color: var(--lg-muted);
}

.luxury-gold-theme .footer p:first-child {
    color: var(--lg-gold-2);
    font-family: 'Noto Serif KR', serif;
    text-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
}

.luxury-gold-theme .footer a:hover p {
    color: #fff;
}

/* Active nav hint — current page */
.luxury-gold-theme .header-menu a[aria-current="page"] {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--lg-gold-2);
    color: #fff;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.2);
}

@media (max-width: 992px) {
    .luxury-gold-theme .header-menu {
        gap: 0.35rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .luxury-gold-theme .header-menu a {
        font-size: 0.8rem;
        padding: 0.38rem 0.85rem;
    }
}

@media (max-width: 768px) {
    .luxury-gold-theme .youtube-channels-grid,
    .luxury-gold-theme #personalities-container {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .luxury-gold-theme .live-video-list {
        gap: 1.25rem;
    }

    .luxury-gold-theme .live-video-item {
        padding: 1rem;
    }

    .luxury-gold-theme .header-content {
        flex-direction: column;
        gap: 0.65rem;
    }

    .luxury-gold-theme .header-menu {
        justify-content: center;
    }

    .luxury-gold-theme .service-card:hover,
    .luxury-gold-theme .faq-item:hover {
        transform: none;
    }

    .luxury-gold-theme .live_time-content p {
        font-size: 0.92rem;
    }

    .luxury-gold-theme .form-submit {
        justify-content: center;
    }

    .luxury-gold-theme .submit-btn {
        width: 100%;
        max-width: 280px;
    }

    .luxury-gold-theme .info-hero-title::before,
    .luxury-gold-theme .contact-header::before {
        font-size: 0.62rem;
        letter-spacing: 0.14em;
    }
}

@media (max-width: 480px) {
    .luxury-gold-theme .header-menu a {
        font-size: 0.72rem;
        padding: 0.32rem 0.65rem;
    }

    .luxury-gold-theme .faq-question span,
    .luxury-gold-theme .faq-answer > span {
        width: 1.9rem;
        height: 1.9rem;
        min-width: 1.9rem;
        font-size: 1rem;
    }
}
