/* ============================================================
   Kingdom Trap - Website Main Stylesheet
   Design: Epic Dark Fantasy Glassmorphism with Gold Accents
   ============================================================ */

:root {
    /* Color Palette */
    --bg-darker: #06080c;
    --bg-dark: #0a0d14;
    --bg-card: rgba(18, 24, 38, 0.65);
    --border-glass: rgba(255, 215, 0, 0.15);
    --border-glass-hover: rgba(255, 215, 0, 0.4);
    --gold: #ffd700;
    --gold-glow: #e6a100;
    --text-primary: #f0f3f8;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    
    /* System Colors */
    --type-physical: #ff9f43;
    --type-magic: #00d2d3;
    --type-melee: #ff6b6b;
    --type-magic-glow: rgba(0, 210, 211, 0.35);
    --type-melee-glow: rgba(255, 107, 107, 0.35);

    /* Fonts */
    --font-titles: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout */
    --header-height: 80px;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: #1a2233;
    border-radius: 5px;
    border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-glow);
}

/* Typography & Titles */
h1, h2, h3, h4 {
    font-family: var(--font-titles);
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.2rem;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 8px auto 0 auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 48px auto;
    font-weight: 300;
}

/* Glassmorphism Base Utility */
.glassmorphic {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
}

/* Header & Navbar */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(6, 8, 12, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    z-index: 1000;
    transition: background 0.3s ease;
}

.header-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.brand-name {
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.main-nav {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    padding: 6px 0;
}

.nav-item:hover, .nav-item.active {
    color: var(--gold);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

.btn-cta {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-glow) 100%);
    color: #000000;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 0.85rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background: rgba(6, 8, 12, 0.98);
    backdrop-filter: blur(15px);
    border-left: 1px solid var(--border-glass);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.77,0.2,0.05,1);
    padding: 40px 24px;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer-item {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-item:hover {
    color: var(--gold);
}

.btn-drawer-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-glow) 100%);
    color: #000000;
    border-radius: 30px;
    padding: 12px;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: var(--header-height);
    text-align: center;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px;
    position: relative;
    z-index: 10;
}

.hero-game-logo {
    max-width: 280px;
    height: auto;
    margin: 0 auto 30px auto;
    animation: floatLogo 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.25);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 300;
    max-width: 750px;
    margin: 0 auto 40px auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Download Badges styling */
.download-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.badge-button {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge-svg {
    width: 155px;
    height: 46px;
    display: block;
}

.badge-button:hover {
    transform: scale(1.05);
}

.ios-badge:hover .badge-svg rect {
    stroke: #ffffff;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.android-badge:hover .badge-svg rect {
    stroke: var(--gold);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 18px; }
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Intro Showcase Section */
.intro-showcase {
    position: relative;
    padding: 100px 0;
    background: #0e1118;
    overflow: hidden;
}

.section-bg-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.video-mockup-wrapper {
    position: relative;
    max-width: 320px;
    margin: 40px auto 0 auto;
    z-index: 2;
}

/* iOS Phone Bezel Mockup */
.device-bezel-ios {
    width: 100%;
    padding-top: 177.7%; /* 9:16 Aspect Ratio */
    background: #1c2230;
    border-radius: 36px;
    position: relative;
    box-shadow: 
        0 25px 50px -10px rgba(0, 0, 0, 0.9),
        0 0 0 10px #29344d,
        0 0 0 12px rgba(255, 255, 255, 0.05),
        0 0 40px rgba(255, 215, 0, 0.15);
    overflow: hidden;
}

.device-screen {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #000;
    border-radius: 28px;
    overflow: hidden;
}

.game-demo-overlay {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.demo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 5s ease;
}

.device-bezel-ios:hover .demo-bg {
    transform: scale(1.08);
}

.demo-info {
    position: relative;
    z-index: 3;
    text-align: left;
}

.badge-amber {
    display: inline-block;
    padding: 4px 10px;
    background: var(--gold);
    color: #000000;
    font-weight: 800;
    font-size: 0.7rem;
    border-radius: 4px;
    margin-bottom: 10px;
}

.demo-info h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.demo-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.device-home-indicator {
    width: 110px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

/* Towers & Spells Showcase */
.showcase-section {
    padding: 100px 0;
    background: #0a0d14;
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.showcase-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.showcase-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glass-hover);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

.showcase-card.highlighted {
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

.card-image-holder {
    position: relative;
    padding: 30px;
    background: rgba(6, 8, 12, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.showcase-img {
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
    transition: transform 0.4s ease;
}

.showcase-card:hover .showcase-img {
    transform: scale(1.1);
}

.card-popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: #000;
    font-weight: 800;
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.card-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.cost-badge {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
}

.type-badge {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(255, 159, 67, 0.15);
    color: var(--type-physical);
}

.type-badge.magic {
    background: rgba(0, 210, 211, 0.15);
    color: var(--type-magic);
}

.type-badge.melee {
    background: rgba(255, 107, 107, 0.15);
    color: var(--type-melee);
}

.card-details h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    font-weight: 300;
    flex-grow: 1;
}

/* Stats panel inside cards */
.stats-panel {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 18px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.stat-row span {
    width: 80px;
}

.stat-bar {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.stat-bar .fill {
    height: 100%;
    background: var(--type-physical);
    border-radius: 3px;
}

.stat-bar .fill.magic-fill {
    background: var(--type-magic);
    box-shadow: 0 0 8px var(--type-magic-glow);
}

.stat-bar .fill.defense-fill {
    background: var(--type-melee);
    box-shadow: 0 0 8px var(--type-melee-glow);
}

/* Spells Section */
.spells-section {
    background: #080b11;
    overflow: hidden;
}

.section-bg-glow {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 210, 211, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.showcase-split-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.spells-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.spell-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(255, 255, 255, 0.01);
    cursor: pointer;
    transition: all 0.3s ease;
}

.spell-item:hover, .spell-item.active {
    background: rgba(255, 215, 0, 0.04);
    border-color: rgba(255, 215, 0, 0.2);
}

.spell-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #111522;
    border: 2px solid rgba(255, 215, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.spell-icon-circle img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.spell-item.active .spell-icon-circle {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

.spell-text h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.spell-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Split Visual panel */
.split-visual {
    position: relative;
}

.visual-card {
    padding: 16px;
    overflow: hidden;
}

.visual-img-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #000;
}

.visual-main-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.spell-effect-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: rippleEffect 2s infinite;
    pointer-events: none;
}

@keyframes rippleEffect {
    0% { width: 40px; height: 40px; opacity: 1; }
    100% { width: 180px; height: 180px; opacity: 0; }
}

.visual-details {
    padding: 20px 8px 8px 8px;
}

.visual-details h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.visual-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #0a0d14;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 32px;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glass-hover);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: #0e1118;
}

.gallery-slider-wrapper {
    max-width: 800px;
    margin: 40px auto 0 auto;
    position: relative;
}

.gallery-slider {
    position: relative;
    height: 450px;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    z-index: 3;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.slider-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.slider-indicators {
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
}

/* Footer Section */
.main-footer {
    background: #05070a;
    border-top: 1px solid rgba(255, 215, 0, 0.05);
    padding: 60px 0 30px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
}

.footer-links h4, .footer-dev h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.dev-logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 12px 18px;
    border-radius: 8px;
}

.gpb-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.dev-logo-box span {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.dev-link {
    color: var(--text-secondary);
    font-weight: 600;
}

.dev-link:hover {
    color: var(--gold);
}

/* ============================================================
   Responsive Queries
   ============================================================ */

@media (max-width: 992px) {
    .showcase-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Navbar Mobile */
    .main-nav {
        display: none;
    }
    .header-actions .btn-cta {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    
    /* Toggle active animation */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .gallery-slider {
        height: 300px;
    }
}

/* ============================================================
   Play Online Custom Styles
   ============================================================ */

.highlight-nav-item {
    color: var(--gold) !important;
    font-weight: 700 !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.play-now-header-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%) !important;
    color: #000000 !important;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.4) !important;
    border: none;
    margin-right: 12px;
}

.play-now-header-btn:hover {
    box-shadow: 0 0 22px rgba(255, 140, 0, 0.7) !important;
    transform: translateY(-2px);
}

.btn-cta-outline {
    background: transparent !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold) !important;
    box-shadow: none !important;
}

.btn-cta-outline:hover {
    background: rgba(255, 215, 0, 0.1) !important;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2) !important;
}

.hero-actions-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.btn-hero-play {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000000;
    font-family: var(--font-titles);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 40px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-play:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0 35px rgba(255, 140, 0, 0.8), 0 5px 15px rgba(0, 0, 0, 0.5);
    color: #000000;
}

.btn-hero-play .play-icon {
    font-size: 1.3rem;
    animation: pulseIcon 1.5s infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.btn-drawer-play {
    text-align: center;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%) !important;
    color: #000000 !important;
    border-radius: 30px;
    padding: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-drawer-play:hover {
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

