/* ============================================
   JADE DYNASTY CARNAGE - Coming Soon Page
   Theme: Chinese Gaming with Fire Elements
   ============================================ */

/* CSS Variables */
:root {
    /* Fire Color Palette */
    --fire-core: #fff7e6;
    --fire-bright: #ffcc00;
    --fire-orange: #ff6b00;
    --fire-red: #cc2200;
    --fire-dark: #8b0000;
    --ember-glow: #ff4500;

    /* Chinese Theme Colors */
    --jade-green: #00a86b;
    --imperial-gold: #cfb53b;
    --chinese-red: #c41e3a;
    --ink-black: #0a0a0a;
    --parchment: #f4e4bc;

    /* Background Colors */
    --bg-primary: #050505;
    --bg-secondary: #0d0808;
    --bg-card: rgba(20, 10, 10, 0.85);

    /* Text Colors */
    --text-primary: #f5f0e6;
    --text-secondary: #b8a88a;
    --text-gold: #d4a850;

    /* Typography */
    --font-chinese: 'Ma Shan Zheng', cursive;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Crimson Pro', serif;

    /* Spacing */
    --header-height: 80px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Fire Canvas Background */
#fireCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* Ember Particles Container */
#ember-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.ember {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--fire-orange);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--fire-orange), 0 0 12px var(--fire-red);
    animation: emberFloat 8s ease-in-out infinite;
}

@keyframes emberFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0) 100%);
    backdrop-filter: blur(10px);
}

.navbar {
    height: var(--header-height);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-family: var(--font-chinese);
    font-size: 2.5rem;
    color: var(--fire-orange);
    text-shadow: 0 0 20px var(--fire-red), 0 0 40px var(--fire-dark);
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { text-shadow: 0 0 20px var(--fire-red), 0 0 40px var(--fire-dark); }
    50% { text-shadow: 0 0 30px var(--fire-orange), 0 0 60px var(--fire-red); }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--fire-orange), var(--fire-red));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--fire-orange);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-discord {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    padding: 0.6rem 1.2rem !important;
    border-radius: 6px;
    color: white !important;
}

.nav-discord::after {
    display: none;
}

.nav-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--fire-orange);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Navigation Auth Buttons */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1.5rem;
}

.auth-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-btn-login {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(212, 168, 80, 0.3);
}

.auth-btn-login:hover {
    color: var(--fire-orange);
    border-color: var(--fire-orange);
    background: rgba(255, 107, 0, 0.1);
}

.auth-btn-register {
    background: linear-gradient(135deg, var(--fire-orange) 0%, var(--fire-red) 100%);
    color: white;
    border: none;
}

.auth-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
}

/* Logged-in User Panel */
.user-panel {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-welcome {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--text-gold);
    padding: 0.5rem 1rem;
    background: rgba(212, 168, 80, 0.1);
    border: 1px solid rgba(212, 168, 80, 0.3);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.user-welcome:hover {
    background: rgba(212, 168, 80, 0.2);
    border-color: var(--fire-orange);
    color: var(--fire-orange);
}

.user-welcome i {
    color: var(--fire-orange);
    font-size: 1.1rem;
}

.auth-btn-logout {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 68, 68, 0.3);
    text-decoration: none;
}

.auth-btn-logout:hover {
    color: #ff6666;
    border-color: #ff6666;
    background: rgba(255, 68, 68, 0.1);
}

/* ============================================
   AUTH MODALS
   ============================================ */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.auth-modal.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(8px);
}

.auth-modal-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 380px;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    margin: 1rem;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s ease;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.auth-modal-container::-webkit-scrollbar {
    display: none;
}

.auth-modal.active .auth-modal-container {
    transform: translateY(0) scale(1);
}

.auth-modal-content {
    background: linear-gradient(180deg, rgba(20, 10, 10, 0.98) 0%, rgba(10, 5, 5, 0.98) 100%);
    border: 1px solid rgba(212, 168, 80, 0.3);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    position: relative;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(255, 107, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.auth-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--imperial-gold), transparent);
}

/* ========================================
   FRAMED LOGIN MODAL - Dragon Border Style
   ======================================== */

/* Lighter overlay for framed modal - let the frame image stand out */
.auth-modal.auth-modal-has-frame .auth-modal-overlay {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
}

.auth-modal-container.auth-modal-framed {
    position: relative;
    width: 400px;
    height: 500px;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.auth-frame-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 500px;
    object-fit: fill;
    pointer-events: none;
    z-index: 0;
}

.auth-content-framed {
    position: relative;
    z-index: 1;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 4.5rem 2rem 2rem !important;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

.auth-content-framed::before {
    display: none !important;
}

/* Adjust close button for framed modal */
.auth-modal-framed .auth-modal-close {
    top: 3.5rem;
    right: 1.25rem;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 107, 0, 0.3);
}

/* Adjust header icon for framed modal - hide default, frame has its own */
.auth-content-framed .auth-modal-icon {
    display: none;
}

.auth-content-framed .auth-modal-header {
    margin-bottom: 0.75rem;
}

.auth-content-framed .auth-modal-header h2 {
    font-size: 1.4rem;
    color: hsl(var(--foreground));
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.auth-content-framed .auth-modal-header p {
    color: hsl(var(--muted-foreground));
    font-size: 0.85rem;
}

/* Form styling for framed modal */
.auth-content-framed .auth-form {
    gap: 0.6rem;
}

.auth-content-framed .form-group {
    gap: 0.25rem;
}

.auth-content-framed .form-group label {
    color: var(--fire-orange);
    font-size: 0.8rem;
}

.auth-content-framed .form-group input {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: hsl(var(--foreground));
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
}

.auth-content-framed .form-group input:focus {
    border-color: var(--fire-orange);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

.auth-content-framed .form-group input::placeholder {
    color: hsl(var(--muted-foreground));
}

/* Submit button for framed modal with reflection */
.auth-content-framed .auth-submit-btn {
    position: relative;
    background: linear-gradient(180deg, var(--fire-yellow) 0%, var(--fire-orange) 50%, var(--fire-red) 100%);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.65rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    overflow: hidden;
}

/* Glossy reflection overlay */
.auth-content-framed .auth-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    border-radius: inherit;
    pointer-events: none;
}

/* Shine animation on hover */
.auth-content-framed .auth-submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.auth-content-framed .auth-submit-btn:hover::after {
    left: 100%;
}

.auth-content-framed .auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 107, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Footer link styling */
.auth-content-framed .auth-modal-footer a {
    color: var(--fire-orange);
}

.auth-content-framed .auth-modal-footer a:hover {
    color: var(--fire-yellow);
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

/* Checkbox styling */
.auth-content-framed .checkbox-wrapper {
    color: hsl(var(--muted-foreground));
}

.auth-content-framed .forgot-password {
    color: var(--fire-orange);
}

/* Responsive adjustments for framed modal */
@media (max-width: 480px) {
    .auth-modal-container.auth-modal-framed {
        max-width: 100%;
        margin: 0.5rem;
    }

    .auth-content-framed {
        padding: 6rem 1.5rem 4rem !important;
    }

    .auth-modal-framed .auth-modal-close {
        top: 5rem;
        right: 1rem;
    }

    .auth-content-framed .auth-modal-header h2 {
        font-size: 1.5rem;
    }
}

.auth-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-modal-close:hover {
    background: rgba(255, 107, 0, 0.2);
    border-color: var(--fire-orange);
    color: var(--fire-orange);
    transform: rotate(90deg);
}

.auth-modal-header {
    text-align: center;
    margin-bottom: 1rem;
}

.auth-modal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    position: relative;
}

.auth-modal-icon span {
    font-family: var(--font-chinese);
    font-size: 2.25rem;
    color: var(--fire-orange);
    text-shadow: 0 0 30px var(--fire-red);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); text-shadow: 0 0 30px var(--fire-red); }
    50% { transform: scale(1.05); text-shadow: 0 0 40px var(--fire-orange); }
}

/* Image-based auth modal icon */
.auth-modal-icon.auth-modal-icon-img {
    background: transparent;
}

.auth-modal-icon .auth-icon-png {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.6));
    animation: iconPulseImg 3s ease-in-out infinite;
}

@keyframes iconPulseImg {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.6)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 25px rgba(255, 107, 0, 0.8)); }
}

.auth-modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
}

.auth-modal-header p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Auth Form Styles */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.form-group label i {
    color: var(--fire-orange);
    font-size: 0.85rem;
}

.form-group input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(184, 168, 138, 0.5);
}

.form-group input:focus {
    border-color: var(--fire-orange);
    background: rgba(255, 107, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.1);
}

.form-hint {
    font-size: 0.7rem;
    color: rgba(184, 168, 138, 0.6);
    margin-top: 0.15rem;
}

/* Password Input */
.password-input-wrapper {
    position: relative;
}

.password-input-wrapper input {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--fire-orange);
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 0.25rem;
}

.strength-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.strength-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--fire-red);
    border-radius: 2px;
    transition: width 0.3s ease, background 0.3s ease;
}

.password-strength.weak .strength-bar::after {
    width: 33%;
    background: #ff4444;
}

.password-strength.medium .strength-bar::after {
    width: 66%;
    background: #ffaa00;
}

.password-strength.strong .strength-bar::after {
    width: 100%;
    background: #44cc44;
}

.strength-text {
    font-size: 0.75rem;
    color: rgba(184, 168, 138, 0.6);
    margin-top: 0.25rem;
    display: block;
}

.password-strength.weak .strength-text {
    color: #ff4444;
}

.password-strength.medium .strength-text {
    color: #ffaa00;
}

.password-strength.strong .strength-text {
    color: #44cc44;
}

/* Form Options (Remember me, Forgot password) */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.checkbox-wrapper input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-wrapper input:checked + .checkmark {
    background: var(--fire-orange);
    border-color: var(--fire-orange);
}

.checkbox-wrapper input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.65rem;
    color: white;
}

.checkbox-wrapper a {
    color: var(--fire-orange);
    text-decoration: none;
}

.checkbox-wrapper a:hover {
    text-decoration: underline;
}

.forgot-password {
    font-size: 0.9rem;
    color: var(--text-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--fire-orange);
}

/* Cloudflare Turnstile Captcha */
.cf-turnstile {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.cf-turnstile iframe {
    border-radius: 8px;
}

/* Submit Button */
.auth-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.25rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(135deg, var(--fire-orange) 0%, var(--fire-red) 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.auth-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.auth-submit-btn:hover::before {
    left: 100%;
}

.auth-submit-btn i {
    transition: transform 0.3s ease;
}

.auth-submit-btn:hover i {
    transform: translateX(5px);
}

/* Modal Footer */
.auth-modal-footer {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-modal-footer p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.auth-modal-footer a {
    color: var(--fire-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-modal-footer a:hover {
    color: var(--text-gold);
    text-decoration: underline;
}

/* Form Messages */
.form-message {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: none;
}

.form-message.error {
    background: rgba(255, 68, 68, 0.15);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff6666;
}

.form-message.success {
    background: rgba(68, 204, 68, 0.15);
    border: 1px solid rgba(68, 204, 68, 0.3);
    color: #66cc66;
}

.form-message.info {
    background: rgba(68, 136, 255, 0.15);
    border: 1px solid rgba(68, 136, 255, 0.3);
    color: #6699ff;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 2rem) 2rem 4rem;
    background:
        radial-gradient(ellipse at bottom, rgba(139, 0, 0, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at top, rgba(5, 5, 5, 0.95) 0%, transparent 70%),
        var(--bg-primary);
    overflow: hidden;
}

/* Hero Background Image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Dark overlay on top of background image - REMOVIDO */
/* .hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, transparent 0%, rgba(5, 5, 5, 0.7) 70%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.6) 0%, rgba(5, 5, 5, 0.3) 50%, rgba(5, 5, 5, 0.8) 100%);
    pointer-events: none;
} */

/* Vignette effect for hero background */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 200px 100px rgba(5, 5, 5, 0.8);
    pointer-events: none;
    z-index: 1;
}

/* Chinese Ornaments */
.ornament {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 5 L95 50 L50 95 L5 50 Z' stroke='%23d4a850' stroke-width='1' fill='none' opacity='0.3'/%3E%3Cpath d='M50 15 L85 50 L50 85 L15 50 Z' stroke='%23d4a850' stroke-width='1' fill='none' opacity='0.2'/%3E%3Ccircle cx='50' cy='50' r='8' stroke='%23d4a850' stroke-width='1' fill='none' opacity='0.4'/%3E%3C/svg%3E");
    background-size: contain;
    opacity: 0.4;
    z-index: 2;
}

.ornament-top-left { top: 100px; left: 20px; }
.ornament-top-right { top: 100px; right: 20px; transform: scaleX(-1); }
.ornament-bottom-left { bottom: 50px; left: 20px; }
.ornament-bottom-right { bottom: 50px; right: 20px; transform: scaleX(-1); }

/* Dragon Corners */
.dragon-corner {
    position: absolute;
    width: 300px;
    height: 400px;
    background: linear-gradient(180deg, var(--fire-red) 0%, transparent 100%);
    opacity: 0.1;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0 100 Q30 80 50 50 Q70 20 100 0 L100 100 Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0 100 Q30 80 50 50 Q70 20 100 0 L100 100 Z' fill='white'/%3E%3C/svg%3E");
    z-index: 1;
}

.dragon-left { left: 0; bottom: 0; }
.dragon-right { right: 0; bottom: 0; transform: scaleX(-1); }

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
}

/* Hero Title - Chinese characters above logo */
.hero-title {
    margin-bottom: -2rem;
}

.title-chinese {
    display: block;
    font-family: var(--font-chinese);
    font-size: 2.5rem;
    color: var(--text-gold);
    letter-spacing: 16px;
    opacity: 0.9;
    text-shadow: 0 0 30px rgba(212, 168, 80, 0.5);
}

/* Logo Container - Large and Centered */
.logo-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto -1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container.logo-large {
    width: 650px;
    height: 650px;
}

.logo-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--fire-orange) 0%, rgba(255, 107, 0, 0.3) 30%, transparent 70%);
    opacity: 0.5;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.7; }
}

.server-logo {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    filter: drop-shadow(0 0 40px var(--fire-orange)) drop-shadow(0 0 80px var(--fire-red));
    z-index: 5;
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.logo-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.fallback-icon {
    font-family: var(--font-chinese);
    font-size: 8rem;
    color: var(--fire-orange);
    text-shadow: 0 0 50px var(--fire-red);
}

.fallback-text {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 12px;
    color: var(--imperial-gold);
    text-transform: uppercase;
}

/* Hero Tagline */
.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tagline-separator {
    color: var(--imperial-gold);
    font-size: 1.5rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--fire-red) 0%, var(--fire-dark) 100%);
    color: var(--text-primary);
    box-shadow: 0 5px 30px rgba(204, 34, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    min-width: 200px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(204, 34, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.btn-subtitle {
    font-size: 0.7rem;
    opacity: 0.7;
    letter-spacing: 1px;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--imperial-gold);
    flex-direction: row;
    gap: 0.75rem;
}

.btn-secondary:hover {
    background: var(--imperial-gold);
    color: var(--ink-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(207, 181, 59, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-text {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--fire-orange);
    border-bottom: 2px solid var(--fire-orange);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   COUNTDOWN SECTION
   ============================================ */
.countdown-section {
    position: relative;
    padding: 6rem 2rem;
    background:
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    z-index: 10;
}

.section-ornament {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--imperial-gold), transparent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.title-chinese-small {
    display: block;
    font-family: var(--font-chinese);
    font-size: 1.2rem;
    color: var(--text-gold);
    letter-spacing: 8px;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 6px;
}

/* Countdown Frame Wrapper */
.countdown-frame-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.countdown-frame-bg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 30px rgba(255, 107, 0, 0.3));
}

/* Countdown Container - Positioned over frame */
.countdown-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 78%;
    padding: 0 2%;
}

.countdown-item {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0.5rem;
    background: transparent;
    border: none;
}

.countdown-item::before {
    display: none;
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--fire-orange);
    text-shadow:
        0 0 20px var(--fire-red),
        0 0 40px rgba(255, 107, 0, 0.5);
    line-height: 1;
}

.countdown-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--text-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Hide old elements */
.countdown-chinese,
.countdown-separator {
    display: none;
}

.launch-date {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.launch-date i {
    color: var(--fire-orange);
    margin-right: 0.5rem;
}

.launch-date strong {
    color: var(--text-gold);
}

/* ============================================
   MEDIA SECTION - Video & Gallery
   ============================================ */
.media-section {
    position: relative;
    padding: 6rem 2rem;
    background:
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    z-index: 10;
}

.media-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
}

/* Video Showcase */
.video-showcase {
    position: relative;
}

.video-frame {
    position: relative;
    padding: 12px;
    background: linear-gradient(135deg, rgba(212, 168, 80, 0.2) 0%, rgba(139, 0, 0, 0.3) 100%);
    border-radius: 12px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Chinese corner ornaments on video frame */
.video-border-ornament {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--imperial-gold);
    z-index: 5;
}

.video-border-ornament.top-left {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
    border-radius: 8px 0 0 0;
}

.video-border-ornament.top-right {
    top: -2px;
    right: -2px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 8px 0 0;
}

.video-border-ornament.bottom-left {
    bottom: -2px;
    left: -2px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 8px;
}

.video-border-ornament.bottom-right {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: var(--ink-black);
    border-radius: 8px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    /* Otimizações de qualidade */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    image-rendering: high-quality;
}

.video-wrapper.playing iframe {
    opacity: 1;
}

/* Self-hosted Video Player */
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--ink-black);
}

.local-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    z-index: 5;
    pointer-events: none;
}

/* Vimeo Video Player */
.vimeo-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper .vimeo-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    opacity: 1;
    z-index: 5;
}

.vimeo-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    z-index: 5;
    pointer-events: none;
}

/* Video Thumbnail Overlay */
.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

.video-wrapper.playing .video-thumbnail {
    opacity: 0;
    pointer-events: none;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter 0.3s ease, transform 0.5s ease;
}

.video-thumbnail:hover img {
    filter: brightness(0.5);
    transform: scale(1.02);
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 15;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--fire-red) 0%, var(--fire-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
    padding-left: 5px;
    box-shadow: 0 5px 30px rgba(204, 34, 0, 0.6);
    transition: all 0.3s ease;
    z-index: 3;
}

.play-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85px;
    height: 85px;
    border: 2px solid var(--fire-orange);
    border-radius: 50%;
    opacity: 0.6;
    z-index: 2;
}

.play-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid var(--fire-orange);
    border-radius: 50%;
    animation: playPulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes playPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.play-button:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 40px rgba(255, 107, 0, 0.8);
}

/* Video Badge */
.video-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.9);
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video Info */
.video-info {
    margin-top: 1.5rem;
    text-align: center;
}

.video-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Gallery Showcase */
.gallery-showcase {
    background: var(--bg-card);
    border: 1px solid rgba(212, 168, 80, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-header h3 i {
    color: var(--fire-orange);
}

.gallery-count {
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Gallery Grid */
.gallery-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 1rem;
}

/* IE/Edge grid item positioning fallback */
.gallery-grid > .gallery-item:nth-child(1) { -ms-grid-column: 1; -ms-grid-row: 1; }
.gallery-grid > .gallery-item:nth-child(2) { -ms-grid-column: 3; -ms-grid-row: 1; }
.gallery-grid > .gallery-item:nth-child(3) { -ms-grid-column: 5; -ms-grid-row: 1; }
.gallery-grid > .gallery-item:nth-child(4) { -ms-grid-column: 1; -ms-grid-row: 2; }
.gallery-grid > .gallery-item:nth-child(5) { -ms-grid-column: 3; -ms-grid-row: 2; }
.gallery-grid > .gallery-item:nth-child(6) { -ms-grid-column: 5; -ms-grid-row: 2; }

.gallery-item {
    position: relative;
    padding-bottom: 62.5%; /* 16:10 aspect ratio fallback */
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--ink-black) 100%);
    border: 1px solid rgba(212, 168, 80, 0.2);
}

.gallery-item-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--fire-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.gallery-title {
    font-size: 0.75rem;
    color: white;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Gallery Placeholder (when image fails to load) */
.gallery-item.placeholder .gallery-item-inner {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--ink-black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item.placeholder .gallery-item-inner::after {
    content: '\f03e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
}

.gallery-item.placeholder img {
    display: none;
}

/* Gallery item default background with placeholder icon */
.gallery-item-inner::before {
    content: '\f03e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: rgba(212, 168, 80, 0.3);
    z-index: 0;
}

.gallery-item img {
    z-index: 1;
}

/* Gallery Navigation */
.gallery-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-nav-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
    background: var(--fire-orange);
    border-color: var(--fire-orange);
    color: white;
}

.gallery-dots {
    display: flex;
    gap: 8px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--fire-orange);
    transform: scale(1.2);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--fire-red);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-nav:hover {
    background: var(--fire-orange);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-content {
    max-width: 90%;
    max-height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-container {
    position: relative;
    max-width: 100%;
    max-height: calc(75vh - 80px);
}

.lightbox-image {
    max-width: 100%;
    max-height: calc(75vh - 80px);
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.lightbox-image-container.loading .lightbox-loader {
    display: block;
}

.lightbox-image-container.loading .lightbox-image {
    opacity: 0.3;
}

.loader-ring {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--fire-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.lightbox-caption {
    margin-top: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lightbox-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-primary);
}

.lightbox-counter {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Lightbox Thumbnails */
.lightbox-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    max-width: 90%;
    overflow-x: auto;
}

.lightbox-thumb {
    width: 60px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 2px solid transparent;
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--fire-orange);
}

.lightbox-thumb:hover {
    opacity: 0.8;
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    position: relative;
    padding: 6rem 2rem;
    background: var(--bg-primary);
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(212, 168, 80, 0.2);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--fire-orange);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--fire-red) 0%, var(--fire-dark) 100%);
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(204, 34, 0, 0.4);
}

/* Custom PNG Feature Icons */
.feature-icon.feature-icon-img {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    animation: featureFloat 3s ease-in-out infinite;
}

.feature-icon-png {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.6)) drop-shadow(0 0 30px rgba(255, 107, 0, 0.3));
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-png {
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.8)) drop-shadow(0 0 40px rgba(255, 107, 0, 0.5));
    transform: scale(1.1);
}

/* Float Animation for Feature Icons */
@keyframes featureFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Staggered float animation for each card */
.feature-card:nth-child(1) .feature-icon-img { animation-delay: 0s; }
.feature-card:nth-child(2) .feature-icon-img { animation-delay: 0.5s; }
.feature-card:nth-child(3) .feature-icon-img { animation-delay: 1s; }
.feature-card:nth-child(4) .feature-icon-img { animation-delay: 1.5s; }

.feature-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.feature-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    position: relative;
    background: var(--bg-secondary);
    padding: 4rem 2rem 2rem;
    z-index: 10;
    overflow: hidden;
}

.footer-flames {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, var(--fire-dark) 0%, transparent 100%);
    opacity: 0.2;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100' preserveAspectRatio='none'%3E%3Cpath d='M0 100 Q100 0 200 80 Q300 60 400 90 Q500 20 600 70 Q700 40 800 85 Q900 10 1000 75 Q1100 50 1200 100 Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100' preserveAspectRatio='none'%3E%3Cpath d='M0 100 Q100 0 200 80 Q300 60 400 90 Q500 20 600 70 Q700 40 800 85 Q900 10 1000 75 Q1100 50 1200 100 Z' fill='white'/%3E%3C/svg%3E");
    mask-size: cover;
    -webkit-mask-size: cover;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    font-family: var(--font-chinese);
    font-size: 3rem;
    color: var(--fire-orange);
    text-shadow: 0 0 20px var(--fire-red);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    max-width: 240px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.5));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--imperial-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--fire-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-png {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.5));
    transition: all 0.3s ease;
}

.social-link:hover .social-icon-png {
    filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.8)) drop-shadow(0 0 25px rgba(255, 107, 0, 0.5));
    transform: scale(1.15);
}

.footer-bottom {
    position: relative;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-ornament {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--imperial-gold), transparent);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

/* Base state - hidden (only when JS is loaded) */
.js-loaded .scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Visible state */
.js-loaded .scroll-animate.visible,
.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in from left */
.js-loaded .scroll-animate-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js-loaded .scroll-animate-left.visible,
.scroll-animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right */
.js-loaded .scroll-animate-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js-loaded .scroll-animate-right.visible,
.scroll-animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up animation */
.js-loaded .scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js-loaded .scroll-animate-scale.visible,
.scroll-animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delays for children */
.scroll-animate-stagger > *:nth-child(1) { transition-delay: 0s; }
.scroll-animate-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.scroll-animate-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.scroll-animate-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.scroll-animate-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.scroll-animate-stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* Feature cards stagger */
.js-loaded .features-grid .feature-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js-loaded .features-grid .feature-card.visible,
.features-grid .feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.features-grid .feature-card:nth-child(1) { transition-delay: 0s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.15s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.45s; }

/* Countdown items stagger */
.js-loaded .countdown-container .countdown-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.js-loaded .countdown-container .countdown-item.visible,
.countdown-container .countdown-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.countdown-container .countdown-item:nth-child(1) { transition-delay: 0s; }
.countdown-container .countdown-item:nth-child(2) { transition-delay: 0.1s; }
.countdown-container .countdown-item:nth-child(3) { transition-delay: 0.15s; }
.countdown-container .countdown-item:nth-child(4) { transition-delay: 0.2s; }
.countdown-container .countdown-item:nth-child(5) { transition-delay: 0.25s; }
.countdown-container .countdown-item:nth-child(6) { transition-delay: 0.3s; }
.countdown-container .countdown-item:nth-child(7) { transition-delay: 0.35s; }

/* Gallery items stagger */
.js-loaded .gallery-grid .gallery-item {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.js-loaded .gallery-grid .gallery-item.visible,
.gallery-grid .gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-grid .gallery-item:nth-child(1) { transition-delay: 0s; }
.gallery-grid .gallery-item:nth-child(2) { transition-delay: 0.08s; }
.gallery-grid .gallery-item:nth-child(3) { transition-delay: 0.16s; }
.gallery-grid .gallery-item:nth-child(4) { transition-delay: 0.24s; }
.gallery-grid .gallery-item:nth-child(5) { transition-delay: 0.32s; }
.gallery-grid .gallery-item:nth-child(6) { transition-delay: 0.4s; }

/* Section titles animation */
.js-loaded .section-title {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.js-loaded .section-title.visible,
.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media grid animation */
.js-loaded .video-showcase {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js-loaded .video-showcase.visible,
.video-showcase.visible {
    opacity: 1;
    transform: translateX(0);
}

.js-loaded .gallery-showcase {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js-loaded .gallery-showcase.visible,
.gallery-showcase.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .title-chinese {
        font-size: 2rem;
        letter-spacing: 12px;
    }

    .logo-container,
    .logo-container.logo-large {
        width: 450px;
        height: 450px;
    }

    .ornament {
        width: 100px;
        height: 100px;
    }

    /* Media Section Responsive */
    .media-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    /* Auth buttons responsive */
    .nav-auth {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1rem;
        background: rgba(5, 5, 5, 0.98);
        border-top: 1px solid rgba(212, 168, 80, 0.2);
        justify-content: center;
        margin-left: 0;
        z-index: 1000;
    }

    .auth-btn {
        flex: 1;
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    .user-panel {
        width: 100%;
        justify-content: center;
    }

    .user-welcome {
        flex: 1;
        justify-content: center;
    }

    /* Auth modal responsive */
    .auth-modal-content {
        padding: 1.75rem;
    }

    .auth-modal-icon {
        width: 60px;
        height: 60px;
    }

    .auth-modal-icon span {
        font-size: 2.5rem;
    }

    .auth-modal-header h2 {
        font-size: 1.5rem;
    }

    .title-chinese {
        font-size: 1.8rem;
        letter-spacing: 10px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .logo-container,
    .logo-container.logo-large {
        width: 380px;
        height: 380px;
        margin-bottom: 0.5rem;
    }

    .fallback-icon {
        font-size: 6rem;
    }

    .fallback-text {
        font-size: 2.5rem;
        letter-spacing: 8px;
    }

    .countdown-frame-wrapper {
        max-width: 700px;
    }

    .countdown-value {
        font-size: 2.5rem;
    }

    .countdown-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .countdown-item {
        padding: 0.75rem 0.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .ornament {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    /* Hero Section Responsive */
    .hero-section {
        padding: calc(var(--header-height) + 1rem) 1rem 2rem;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Navigation Responsive */
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    /* Countdown Responsive */
    .countdown-value {
        font-size: 2.5rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    /* Lightbox Responsive */
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-thumbnails {
        bottom: 10px;
        gap: 6px;
        padding: 8px;
    }

    .lightbox-thumb {
        width: 50px;
        height: 35px;
    }

    /* Gallery Responsive */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-showcase {
        padding: 1.25rem;
    }

    .play-button {
        width: 80px;
        height: 80px;
    }

    .play-icon {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }

    .play-ring {
        width: 68px;
        height: 68px;
    }

    .play-pulse {
        width: 80px;
        height: 80px;
    }

    /* Video Section */
    .video-frame {
        padding: 10px;
    }

    .video-border-ornament {
        width: 30px;
        height: 30px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    /* Footer Responsive */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-logo-img {
        max-width: 180px;
        max-height: 90px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-icon-png {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    /* Base Responsive */
    html {
        font-size: 14px;
    }

    body {
        overflow-x: hidden;
    }

    /* Header/Navbar Mobile */
    .navbar-minimal {
        height: 60px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        gap: 0.75rem;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
        letter-spacing: 0.5px;
    }

    .auth-btn-minimal {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: calc(var(--header-height) + 1rem) 1rem 1.5rem;
        min-height: 90vh;
    }

    .title-chinese {
        font-size: 1.5rem;
        letter-spacing: 8px;
        margin-bottom: 1rem;
    }

    .logo-container,
    .logo-container.logo-large {
        width: 280px;
        height: 280px;
        margin: 0 auto -0.5rem;
    }

    .server-logo {
        animation: none;
    }

    .fallback-icon {
        font-size: 4rem;
    }

    .fallback-text {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }

    .hero-tagline {
        font-size: 0.85rem;
        padding: 0 0.5rem;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .tagline-separator {
        display: none;
    }

    .hero-buttons {
        gap: 0.75rem;
        flex-direction: column;
        margin-bottom: 1.5rem;
    }

    .btn {
        width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .btn-primary {
        min-width: auto;
    }

    .scroll-indicator {
        bottom: 15px;
    }

    .scroll-text {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    /* Countdown Mobile */
    .countdown-section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .title-chinese-small {
        font-size: 0.9rem;
        letter-spacing: 4px;
    }

    .countdown-frame-wrapper {
        max-width: 100%;
    }

    .countdown-container {
        width: 90%;
        padding: 0 1%;
        gap: 0.25rem;
    }

    .countdown-item {
        padding: 0.5rem 0.25rem;
    }

    .countdown-value {
        font-size: 1.5rem;
        text-shadow: 0 0 10px var(--fire-red), 0 0 20px rgba(255, 107, 0, 0.3);
    }

    .countdown-label {
        font-size: 0.5rem;
        letter-spacing: 0.3px;
        margin-top: 0.25rem;
    }

    .launch-date {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    /* Media Section Mobile */
    .media-section {
        padding: 3rem 1rem;
    }

    .media-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .video-frame {
        padding: 8px;
    }

    .video-border-ornament {
        width: 25px;
        height: 25px;
    }

    .video-info h3 {
        font-size: 1.2rem;
    }

    .video-info p {
        font-size: 0.9rem;
    }

    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .gallery-showcase {
        padding: 1rem;
    }

    .gallery-header {
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .gallery-header h3 {
        font-size: 1rem;
    }

    .gallery-count {
        font-size: 0.75rem;
        padding: 3px 10px;
    }

    .gallery-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .play-ring {
        width: 55px;
        height: 55px;
    }

    .play-pulse {
        width: 60px;
        height: 60px;
    }

    /* Lightbox Mobile */
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }

    .lightbox-thumbnails {
        display: none;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 85vh;
    }

    .lightbox-image {
        max-height: calc(85vh - 60px);
    }

    /* Features Mobile */
    .features-section {
        padding: 3rem 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.75rem 1.25rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .feature-icon-png {
        width: 60px;
        height: 60px;
    }

    .feature-title {
        font-size: 1.15rem;
        letter-spacing: 1px;
        margin-bottom: 0.75rem;
    }

    .feature-desc {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Footer Mobile */
    .main-footer {
        padding: 2.5rem 1rem 1.5rem;
    }

    .footer-flames {
        height: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo-img {
        max-width: 150px;
        max-height: 75px;
    }

    .footer-brand h3 {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-links h4,
    .footer-social h4 {
        font-size: 0.95rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .social-links {
        justify-content: center;
        gap: 0.75rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-icon-png {
        width: 32px;
        height: 32px;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        margin-bottom: 0.35rem;
    }

    .disclaimer {
        font-size: 0.75rem;
    }

    /* Navigation minimal mobile adjustments */
    .nav-menu-minimal {
        gap: 0;
    }

    .nav-link-minimal {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .nav-icon-img {
        width: 18px;
        height: 18px;
    }

    /* Modal Mobile */
    .auth-modal {
        width: 95%;
        max-width: 100%;
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
    }

    .auth-modal-header h2 {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .form-group label {
        font-size: 0.75rem;
    }

    .form-group input {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }

    .auth-submit-btn {
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    /* General Responsive Fixes */
    .container {
        padding: 0 1rem;
    }

    /* Hide decorative elements on mobile */
    .ornament {
        display: none;
    }

    .dragon-corner {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ============================================
   CLEAN MINIMALIST HOMEPAGE STYLES
   Elysium-Inspired Design
   ============================================ */

/* Minimal Navigation Header */
.main-header-minimal {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 107, 0, 0.15);
}

.navbar-minimal {
    height: 70px;
}

.navbar-minimal .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
}

/* Minimal Navigation Menu */
.nav-menu-minimal {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-minimal {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-display);
    font-size: 1.0rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link-minimal i {
    font-size: 1rem;
    color: var(--fire-orange);
    transition: all 0.3s ease;
}

/* Custom Image Icons for Navigation */
.nav-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: drop-shadow(0 0 4px var(--fire-orange));
    transition: all 0.3s ease;
}

.nav-link-minimal:hover,
.nav-link-minimal.active {
    color: var(--fire-orange);
}

.nav-link-minimal:hover i,
.nav-link-minimal.active i {
    color: var(--fire-bright);
}

.nav-link-minimal:hover .nav-icon-img,
.nav-link-minimal.active .nav-icon-img {
    filter: drop-shadow(0 0 8px var(--fire-bright));
    transform: scale(1.1);
}

/* Minimal Auth Buttons */
.nav-auth-minimal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.auth-btn-minimal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    font-family: var(--font-display);
    font-size: 1.0rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-btn-minimal:hover {
    color: white;
    background: rgba(255, 107, 0, 0.15);
    border-color: var(--fire-orange);
}

.auth-btn-minimal i {
    font-size: 0.9rem;
    color: var(--fire-orange);
}

.auth-btn-primary-minimal {
    background: linear-gradient(135deg, var(--fire-orange), var(--fire-red));
    border: none;
    color: white;
}

.auth-btn-primary-minimal:hover {
    background: linear-gradient(135deg, var(--fire-bright), var(--fire-orange));
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
}

.auth-btn-primary-minimal i {
    color: white;
}

.auth-btn-logout-minimal {
    padding: 0.6rem;
    border-color: rgba(255, 68, 68, 0.3);
}

.auth-btn-logout-minimal:hover {
    background: rgba(255, 68, 68, 0.15);
    border-color: #ff6666;
}

.auth-btn-logout-minimal i {
    color: #ff6666;
}

.user-link {
    flex-direction: row;
    gap: 0.5rem;
}

/* Register Button - No Border */
.auth-btn-register {
    border: none;
    background: transparent;
}

.auth-btn-register:hover {
    background: rgba(255, 107, 0, 0.1);
    border: none;
}

/* Custom Login Button with Image */
.login-btn-custom {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.login-btn-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--fire-orange));
    transition: all 0.3s ease;
}

.login-btn-custom:hover .login-btn-img {
    filter: drop-shadow(0 0 15px var(--fire-bright)) drop-shadow(0 0 25px var(--fire-orange));
    transform: scale(1.08);
}

.login-btn-custom:active .login-btn-img {
    transform: scale(0.98);
}

/* ============================================
   MINIMAL HERO SECTION WITH VIDEO
   ============================================ */
.hero-section-minimal {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
    background: var(--bg-primary);
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;

    height: 100%;
    width: auto;

    transform: translate(-50%, -50%);
    max-width: none;
    filter: contrast(1.05) saturate(1.05);
}

.hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Dark overlay for text readability */
.hero-overlay-minimal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        transparent 100%
    );
    z-index: 1;
}

/* Hero Content Layout - Split Left/Right */
.hero-content-minimal {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
}

/* Left Side - Logo and CTA */
.hero-left {
    flex: 0 0 45%;
    max-width: 600px;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Right Side - Reserved for character in video */
.hero-right {
    flex: 0 0 50%;
}

/* Minimal Logo Container */
.logo-container-minimal {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin-bottom: 1.5rem;
}

.logo-glow-minimal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.3) 0%, transparent 60%);
    filter: blur(40px);
    animation: pulseGlowMinimal 4s ease-in-out infinite;
}

@keyframes pulseGlowMinimal {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.1); }
}

.server-logo-minimal {
    position: relative;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 107, 0, 0.5));
    animation: logoFloatMinimal 6s ease-in-out infinite;
}

@keyframes logoFloatMinimal {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Logo Fallback */
.logo-fallback-minimal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.fallback-icon-minimal {
    font-family: var(--font-chinese);
    font-size: 5rem;
    color: var(--fire-orange);
    text-shadow: 0 0 40px var(--fire-red);
    line-height: 1;
}

.fallback-text-minimal {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--text-primary);
    text-transform: uppercase;
}

/* Minimal Tagline */
.hero-tagline-minimal {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    line-height: 1.1;
    max-width: 800px;
    text-align: center;
}

/* Minimal Hero Buttons */
.hero-buttons-minimal {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons-minimal.hero-buttons-centered {
    justify-content: center;
    width: 100%;
}

/* Custom PNG Button for Hero */
.btn-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    outline: none;
    width: 100%;
}

.btn-hero-img {
    display: block;
    width: 280px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.6))
            drop-shadow(0 0 30px rgba(255, 107, 0, 0.4))
            drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
    animation: playNowGlow 2s ease-in-out infinite;
}

@keyframes playNowGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.6))
                drop-shadow(0 0 30px rgba(255, 107, 0, 0.4))
                drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(255, 107, 0, 0.8))
                drop-shadow(0 0 50px rgba(255, 107, 0, 0.5))
                drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
    }
}

.btn-hero-image:hover .btn-hero-img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 30px rgba(255, 107, 0, 0.9))
            drop-shadow(0 0 60px rgba(255, 107, 0, 0.6))
            drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
    animation: none;
}

.btn-hero-image:active .btn-hero-img {
    transform: scale(0.98);
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--fire-orange), var(--fire-red));
    color: white;
    border: none;
    box-shadow: 0 5px 25px rgba(255, 107, 0, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 107, 0, 0.6);
}

.btn-hero-primary i {
    font-size: 1.1rem;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.btn-hero-secondary i {
    color: #5865F2;
    font-size: 1.1rem;
}

/* Minimal Scroll Indicator */
.scroll-indicator-minimal {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--fire-orange);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.3;
    }
}

/* ============================================
   MINIMAL RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero-content-minimal {
        padding: 0 2rem;
    }

    .hero-left {
        flex: 0 0 55%;
    }

    .hero-right {
        flex: 0 0 40%;
    }
}

@media (max-width: 992px) {
    .hero-overlay-minimal {
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 60%,
            rgba(0, 0, 0, 0.4) 100%
        );
    }

    .hero-left {
        flex: 0 0 65%;
        max-width: 500px;
    }

    .logo-container-minimal {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-toggle {
        display: flex !important;
        order: 3;
        margin-left: auto;
    }

    .nav-menu-minimal {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        padding: 1.5rem 0;
        gap: 0;
        z-index: 999;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        overflow-y: auto;
    }

    .nav-menu-minimal.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link-minimal {
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
        padding: 1.2rem 1.5rem;
        width: 100%;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link-minimal i {
        font-size: 1.3rem;
        width: 30px;
    }

    .nav-icon-img {
        width: 24px;
        height: 24px;
    }

    /* Mobile Auth */
    .nav-auth-minimal {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        flex-direction: row;
        background: rgba(5, 5, 5, 0.95);
        border-top: 1px solid rgba(255, 107, 0, 0.15);
        padding: 0.75rem;
        margin-left: 0 !important;
        gap: 0.5rem;
        z-index: 998;
    }

    .auth-btn-minimal {
        flex: 1;
        padding: 0.5rem;
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .auth-btn-minimal span {
        display: inline;
    }

    .login-btn-custom {
        height: auto;
        padding: 0;
        flex-shrink: 0;
    }

    .login-btn-img {
        height: 35px;
        width: auto;
    }

    /* Mobile Hero */
    .hero-overlay-minimal {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.8) 100%
        );
    }

    .hero-content-minimal {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 6rem 1.5rem 4rem;
    }

    .hero-left {
        flex: none;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-right {
        display: none;
    }

    .logo-container-minimal {
        max-width: 350px;
        margin: 0 auto 1.5rem;
    }

    .btn-hero-img {
        width: 240px;
    }

    .logo-fallback-minimal {
        align-items: center;
    }

    .fallback-icon-minimal {
        font-size: 4rem;
    }

    .fallback-text-minimal {
        font-size: 2rem;
        letter-spacing: 6px;
    }

    .hero-tagline-minimal {
        text-align: center;
        max-width: 100%;
        font-size: 1rem;
    }

    .hero-buttons-minimal {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar-minimal {
        height: 60px;
    }

    /* Mobile Menu Toggle */
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        margin-left: auto;
    }

    .nav-toggle span {
        width: 24px;
        height: 3px;
        background: var(--fire-orange);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }

    .nav-menu-minimal {
        top: 60px;
        position: fixed;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 107, 0, 0.15);
        padding: 1rem 0;
        max-height: calc(100vh - 130px);
        overflow-y: auto;
        z-index: 999;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 0;
    }

    .nav-menu-minimal.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link-minimal {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        justify-content: flex-start;
        font-size: 0.9rem;
        flex-direction: row;
        gap: 1rem;
    }

    .nav-link-minimal i {
        font-size: 1.2rem;
    }

    .nav-icon-img {
        width: 22px;
        height: 22px;
    }

    .nav-auth-minimal {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        flex-direction: row;
        background: rgba(5, 5, 5, 0.95);
        border-top: 1px solid rgba(255, 107, 0, 0.15);
        padding: 0.5rem 0.4rem;
        margin: 0;
        gap: 0.3rem;
        z-index: 998;
    }

    .auth-btn-minimal {
        flex: 1;
        padding: 0.4rem 0.3rem;
        font-size: 0.6rem;
        white-space: nowrap;
    }

    .login-btn-custom {
        height: auto;
        padding: 0;
        flex-shrink: 0;
    }

    .login-btn-img {
        height: 30px;
        width: auto;
    }

    .logo-container-minimal {
        max-width: 280px;
    }

    .btn-hero-img {
        width: 200px;
        margin: 0 auto;
    }

    .btn-hero-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .fallback-icon-minimal {
        font-size: 3.5rem;
    }

    .fallback-text-minimal {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }

    .hero-tagline-minimal {
        font-size: 0.9rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}
