:root {
    --primary-gradient-start: #f9b028;
    --primary-gradient-end: #e89f20;
    --secondary-bg: #fae5b6;
    --container-bg: rgba(0, 0, 0, 0.3);
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-muted: #666666;
    --text-white: #ffffff;
    --accent-primary: #000000;
    --accent-secondary: #333333;
    --button-gradient-start: #000000;
    --button-gradient-end: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000000;
    min-height: 100vh;
    color: #ffffff;
}

body.old-theme {
    background: linear-gradient(180deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    color: var(--text-primary);
}

/* Typography */
.bungee-font {
    font-family: 'Roboto Condensed', sans-serif !important;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(249, 176, 40, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 100;
}

.navbar .container-fluid {
    padding-left: 20px;
}

.navbar-brand {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--text-primary) !important;
    text-decoration: none;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--text-primary);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.logo-width {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-width:hover {
    transform: scale(1.1);
}

.brand-text {
    color: #ffffff;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-family: 'Fredoka', cursive;
    font-weight: 500;
    margin: 0 3px;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 8px 20px !important;
    line-height: 1.2;
    display: flex;
    align-items: center;
    height: 36px;
    box-sizing: border-box;
}

.navbar-nav .nav-link:hover {
    background: #f9b028;
    color: #000000 !important;
}

.navbar-nav .nav-link.active {
    background: #f9b028;
    color: #000000 !important;
}

.btn-download {
    background: #f9b028;
    color: #000000 !important;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
    height: 36px;
    box-sizing: border-box;
}

.btn-download:hover {
    background: #ffbe3d;
    box-shadow: 0 4px 15px rgba(249, 176, 40, 0.3);
    color: #000000 !important;
}

/* Force black text color for login button in navbar */
.navbar .btn-download {
    color: #000000 !important;
}

.navbar .btn-download:hover {
    color: #000000 !important;
}

/* Buttons */
.spirit-button {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    border-radius: 35px;
    border: 2px solid var(--text-primary);
    background: var(--secondary-bg);
    padding: 16px 32px;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 3.84px rgba(0, 0, 0, 0.25);
    color: var(--text-primary);
}

.spirit-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
}

.spirit-button-dark {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    background: linear-gradient(45deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
    color: var(--text-white) !important;
    border: none;
    border-radius: 35px;
    padding: 16px 32px;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 600;
}

.spirit-button-dark:hover {
    background: linear-gradient(45deg, var(--button-gradient-end) 0%, var(--button-gradient-start) 100%);
    color: var(--text-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Feature Icons */
.feature-icon {
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.feature-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: #333 !important;
}

/* Containers */
.spirit-container {
    background: var(--container-bg);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    text-align: center;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-style: italic;
}

/* Feature Cards */
.feature-card {
    background: var(--secondary-bg);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--text-primary);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.feature-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Character Cards */
.character-card {
    background: var(--secondary-bg);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.character-card:hover {
    transform: scale(1.05);
    border-color: var(--text-primary);
}

.character-portrait {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--text-primary);
    margin-bottom: 0.5rem;
    object-fit: cover;
}

.character-name {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.character-era {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
    margin-top: 5rem;
}

.footer-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--secondary-bg);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--text-primary);
    color: var(--secondary-bg);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(0, 0, 0, 0.1);
    margin: 2rem 0 1rem;
}

/* Summon Container */
.summon-container {
    max-width: 600px;
    margin: 2rem auto 0;
}

.summon-input-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.summon-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    font-size: 18px;
    border: 2px solid var(--text-primary);
    border-radius: 35px;
    background: var(--secondary-bg);
    color: var(--text-primary);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.summon-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.summon-input::placeholder {
    color: var(--text-muted);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: normal;
}

.summon-button {
    padding: 16px 32px;
    font-size: 18px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: var(--text-white);
    border: none;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(139, 0, 0, 0.3);
}

.summon-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 12px rgba(139, 0, 0, 0.4);
    background: linear-gradient(45deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
}

.summon-button:active {
    transform: translateY(0) scale(1);
}

.summon-hint {
    text-align: center;
    margin-top: 1rem;
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

/* Download Buttons for footer/other sections */
.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.app-store-btn, .google-play-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--text-primary);
    color: var(--text-white);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-store-btn:hover, .google-play-btn:hover {
    background: var(--text-secondary);
    transform: translateY(-2px);
    color: var(--text-white);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-logo {
        width: 80px;
        height: 80px;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-store-btn, .google-play-btn {
        width: 200px;
        justify-content: center;
    }
}

/* User Credits & Dropdown */
.user-credits {
    color: #000000;
    font-weight: 600;
    font-size: 1rem;
    padding: 6px 12px;
    background: #f9b028;
    border-radius: 20px;
    border: 2px solid #f9b028;
    margin-left: 5px;
    display: flex;
    align-items: center;
    line-height: 1.2;
    height: 36px;
    box-sizing: border-box;
}

.user-credits .fas.fa-coins {
    color: #000000;
    font-size: 1.1rem;
    text-shadow: none;
}

.credits-count {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.user-dropdown {
    position: relative;
}

.user-dropdown-menu {
    background: var(--secondary-bg);
    border: 2px solid var(--text-primary);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    margin-top: 0.5rem;
}

.user-dropdown-menu .dropdown-item {
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    font-weight: 500;
    border-radius: 8px;
    margin: 0.25rem;
    transition: all 0.2s ease;
}

.user-dropdown-menu .dropdown-item:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

.user-dropdown-menu .dropdown-divider {
    border-color: rgba(0, 0, 0, 0.2);
    margin: 0.5rem;
}

.navbar-nav .nav-item .user-dropdown:focus,
.navbar-nav .nav-item .user-dropdown[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* Mobile responsive for user area */
@media (max-width: 768px) {
    .user-credits {
        margin-bottom: 0.5rem;
        margin-right: 0 !important;
        justify-content: center;
    }
    
    .user-dropdown-menu {
        position: static !important;
        width: 100%;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 0;
    }
}

/* Character Cards */
.character-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.character-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.character-portrait {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 3px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    display: block;
    flex-shrink: 0;
}
.character-portrait img {
    width: 130%;
    height: 130%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.character-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

.character-era {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.character-nationality {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.character-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex-grow: 1;
    margin-bottom: 1rem;
}

.character-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Larger character cards for characters page */
.characters-page .character-card {
    padding: 2rem;
}

.characters-page .character-portrait {
    width: 120px;
    height: 120px;
}

.characters-page .character-name {
    font-size: 1.2rem;
}

/* Responsive character cards */
@media (max-width: 768px) {
    .character-card {
        padding: 1rem;
    }
    
    .character-portrait {
        width: 60px;
        height: 60px;
    }
    
    .character-name {
        font-size: 0.9rem;
    }
    
    .character-era {
        font-size: 0.8rem;
    }
}

/* =====================================================
   DARK THEME STYLES - New Homepage Design
   ===================================================== */

/* Hero Section Dark */
.hero-section-dark {
    background: #000000;
    color: #ffffff;
    padding: 120px 0 0 0;
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section-dark .container {
    overflow: visible;
    position: relative;
    z-index: 10;
}

.hero-section-dark .row {
    overflow: visible;
}

.hero-section-dark .col-lg-6 {
    overflow: visible;
}

.hero-title-dark {
    font-family: 'Fredoka', cursive;
    font-weight: 700;
    font-size: 5.5rem;
    color: #fef0d5;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle-dark {
    color: #999999;
    font-size: 1.1rem;
}

.summon-container-dark {
    max-width: 400px;
}

.summon-input-dark {
    width: 100%;
    padding: 15px 20px;
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.1rem;
}

.summon-input-dark:focus {
    outline: none;
    border-color: #f9b028;
    background: #222222;
}

.summon-button-dark {
    background: #f9b028;
    color: #000000;
    border: none;
    padding: 20px 70px;
    border-radius: 50px;
    font-family: 'Fredoka', cursive;
    font-family: 'Fredoka', cursive;
    font-weight: 700;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.summon-button-dark::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 45px;
    border: 2px solid rgba(255, 239, 153, 0.6);
    mask: linear-gradient(180deg, 
        black 0%,
        black 50%,
        transparent 100%);
    -webkit-mask: linear-gradient(180deg, 
        black 0%,
        black 50%,
        transparent 100%);
    pointer-events: none;
}

.summon-button-dark:hover {
    background: #ffbe3d;
    transform: translateY(-2px);
}

.summon-button-dark:hover::before {
    border-top-color: rgba(255, 239, 153, 0.9);
    border-left-color: rgba(255, 239, 153, 0.8);
    border-right-color: rgba(255, 239, 153, 0.8);
}


/* About Page Creative Animations */

/* Time Portal Animation */
.mystical-bridge-animation {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-portal {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portal-ring {
    position: absolute;
    border: 3px solid rgba(249, 176, 40, 0.6);
    border-radius: 50%;
    animation: portalRotate linear infinite;
}

.portal-ring-1 {
    width: 80px;
    height: 80px;
    animation-duration: 3s;
}

.portal-ring-2 {
    width: 120px;
    height: 120px;
    animation-duration: 4s;
    animation-direction: reverse;
}

.portal-ring-3 {
    width: 160px;
    height: 160px;
    animation-duration: 5s;
}

.portal-center {
    position: relative;
    z-index: 5;
    color: #f9b028;
    font-size: 2rem;
    animation: portalPulse 2s ease-in-out infinite;
}

.floating-spirits {
    position: absolute;
    inset: 0;
}

.spirit-essence {
    position: absolute;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, rgba(249, 176, 40, 0.8) 0%, rgba(249, 176, 40, 0.3) 100%);
    border-radius: 50%;
    filter: blur(1px);
}

.spirit-1 {
    top: 20%;
    left: 30%;
    animation: spiritFloat 6s ease-in-out infinite;
}

.spirit-2 {
    top: 60%;
    right: 25%;
    animation: spiritFloat 8s ease-in-out infinite -2s;
}

.spirit-3 {
    bottom: 30%;
    left: 20%;
    animation: spiritFloat 7s ease-in-out infinite -4s;
}

@keyframes portalRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes portalPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes spiritFloat {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(0.8); opacity: 0.5; }
    25% { transform: translateY(-15px) translateX(10px) scale(1.2); opacity: 0.9; }
    50% { transform: translateY(-5px) translateX(-8px) scale(0.9); opacity: 0.6; }
    75% { transform: translateY(-20px) translateX(15px) scale(1.1); opacity: 0.8; }
}

/* AI Brain Animation */
.ai-brain-animation {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neural-network {
    position: absolute;
    width: 250px;
    height: 250px;
}

.neuron {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(249, 176, 40, 0.9) 0%, rgba(249, 176, 40, 0.4) 100%);
    border-radius: 50%;
    animation: neuronPulse 2s ease-in-out infinite;
}

.neuron-1 { top: 20px; left: 50px; animation-delay: 0s; }
.neuron-2 { top: 20px; right: 50px; animation-delay: 0.5s; }
.neuron-3 { bottom: 20px; left: 50px; animation-delay: 1s; }
.neuron-4 { bottom: 20px; right: 50px; animation-delay: 1.5s; }

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(249, 176, 40, 0.6) 0%, rgba(249, 176, 40, 0.1) 50%, rgba(249, 176, 40, 0.6) 100%);
    opacity: 0;
    animation: connectionFlow 3s ease-in-out infinite;
}

.connection-1 { top: 30px; left: 70px; right: 70px; animation-delay: 0.2s; }
.connection-2 { bottom: 30px; left: 70px; right: 70px; animation-delay: 0.7s; }
.connection-3 { left: 60px; top: 40px; bottom: 40px; width: 2px; height: auto; animation-delay: 1.2s; }
.connection-4 { right: 60px; top: 40px; bottom: 40px; width: 2px; height: auto; animation-delay: 1.7s; }

.data-flow {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(249, 176, 40, 0.8);
    border-radius: 50%;
    animation: dataMove 4s linear infinite;
}

.data-1 { top: 28px; left: 70px; }
.data-2 { bottom: 28px; left: 70px; animation-delay: -1s; }
.data-3 { left: 58px; top: 40px; animation-delay: -2s; }

.ai-core {
    position: relative;
    z-index: 10;
    color: #f9b028;
    font-size: 3rem;
    animation: coreGlow 2s ease-in-out infinite;
}

@keyframes neuronPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
}

@keyframes connectionFlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes dataMove {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(100px); opacity: 0; }
}

@keyframes coreGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(249, 176, 40, 0.5); }
    50% { text-shadow: 0 0 20px rgba(249, 176, 40, 0.8), 0 0 30px rgba(249, 176, 40, 0.6); }
}

/* Knowledge Spiral Animation */
.knowledge-spiral-animation {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spiral-center {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.knowledge-core {
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(249, 176, 40, 1) 0%, rgba(249, 176, 40, 0.6) 100%);
    border-radius: 50%;
    animation: coreEnergy 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(249, 176, 40, 0.6);
}

.spiral-ring {
    position: absolute;
    border: 2px solid rgba(249, 176, 40, 0.3);
    border-radius: 50%;
    border-top-color: rgba(249, 176, 40, 0.8);
    animation: spiralRotate linear infinite;
}

.ring-1 {
    width: 100px;
    height: 100px;
    animation-duration: 4s;
}

.ring-2 {
    width: 160px;
    height: 160px;
    animation-duration: 6s;
    animation-direction: reverse;
}

.ring-3 {
    width: 220px;
    height: 220px;
    animation-duration: 8s;
}

.knowledge-nodes {
    position: absolute;
    inset: 0;
}

.knowledge-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(249, 176, 40, 0.8);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    animation: nodeOrbit linear infinite;
}

.node-1 {
    --orbit-radius: 50px;
    animation-duration: 4s;
    animation-delay: 0s;
}

.node-2 {
    --orbit-radius: 50px;
    animation-duration: 4s;
    animation-delay: -2s;
}

.node-3 {
    --orbit-radius: 80px;
    animation-duration: 6s;
    animation-delay: 0s;
}

.node-4 {
    --orbit-radius: 80px;
    animation-duration: 6s;
    animation-delay: -3s;
}

.node-5 {
    --orbit-radius: 110px;
    animation-duration: 8s;
    animation-delay: 0s;
}

.node-6 {
    --orbit-radius: 110px;
    animation-duration: 8s;
    animation-delay: -4s;
}

.energy-waves {
    position: absolute;
    inset: 0;
}

.wave {
    position: absolute;
    border: 1px solid rgba(249, 176, 40, 0.2);
    border-radius: 50%;
    animation: waveExpand 3s ease-out infinite;
}

.wave-1 {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.wave-2 {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.wave-3 {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

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

@keyframes spiralRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes nodeOrbit {
    0% {
        transform: rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg);
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg);
        opacity: 1;
    }
}

@keyframes waveExpand {
    0% {
        width: 50px;
        height: 50px;
        opacity: 0.8;
    }
    100% {
        width: 250px;
        height: 250px;
        opacity: 0;
    }
}

.step-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f9b028;
    font-family: 'Roboto Condensed', sans-serif;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .mystical-bridge-animation,
    .ai-brain-animation,
    .knowledge-spiral-animation {
        height: 200px;
    }
    
    .time-portal {
        width: 150px;
        height: 150px;
    }
    
    .portal-ring-1 { width: 60px; height: 60px; }
    .portal-ring-2 { width: 90px; height: 90px; }
    .portal-ring-3 { width: 120px; height: 120px; }
    
    .neural-network {
        width: 180px;
        height: 180px;
    }
    
    .ring-1 { width: 80px; height: 80px; }
    .ring-2 { width: 120px; height: 120px; }
    .ring-3 { width: 160px; height: 160px; }
    
    .step-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-description-large {
        font-size: 1.2rem;
    }
    
    .door-scene {
        width: 240px;
        height: 360px;
    }
    
    .creepy-door-container {
        margin-top: -20px;
    }
    
    .door-panel-top {
        height: 100px;
        top: 20px;
        left: 15px;
        right: 15px;
    }
    
    .door-panel-bottom {
        height: 150px;
        bottom: 20px;
        left: 15px;
        right: 15px;
    }
}

/* Floating Orbs - Spirit Essence */
.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(249, 176, 40, 0.9) 0%, 
        rgba(249, 176, 40, 0.6) 20%, 
        rgba(249, 176, 40, 0.3) 40%, 
        rgba(249, 176, 40, 0.1) 60%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(249, 176, 40, 0.5), 
                0 0 40px rgba(249, 176, 40, 0.3),
                0 0 60px rgba(249, 176, 40, 0.1);
    pointer-events: none;
    opacity: 0.8;
    filter: blur(0.5px);
}

.orb-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation: float1 20s infinite ease-in-out;
}

.orb-2 {
    width: 15px;
    height: 15px;
    top: 60%;
    left: 5%;
    animation: float2 25s infinite ease-in-out;
}

.orb-3 {
    width: 25px;
    height: 25px;
    top: 30%;
    left: 35%;
    animation: float3 30s infinite ease-in-out;
}

.orb-4 {
    width: 12px;
    height: 12px;
    top: 70%;
    left: 40%;
    animation: float4 22s infinite ease-in-out;
}

.orb-5 {
    width: 18px;
    height: 18px;
    top: 10%;
    left: 45%;
    animation: float5 28s infinite ease-in-out;
}

/* Orb Animations */
@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(50px, -30px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-30px, 20px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translate(40px, 40px) scale(1.05);
        opacity: 0.7;
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    33% {
        transform: translate(-40px, -50px) scale(1.2);
        opacity: 0.7;
    }
    66% {
        transform: translate(60px, 30px) scale(0.8);
        opacity: 0.4;
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    20% {
        transform: translate(-60px, 40px) scale(0.9);
        opacity: 0.5;
    }
    40% {
        transform: translate(50px, -60px) scale(1.1);
        opacity: 0.8;
    }
    60% {
        transform: translate(-30px, -20px) scale(1);
        opacity: 0.6;
    }
    80% {
        transform: translate(40px, 50px) scale(1.05);
        opacity: 0.7;
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-70px, -40px) scale(1.15);
        opacity: 0.8;
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(30px, 60px) scale(0.85);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50px, -30px) scale(1.1);
        opacity: 0.7;
    }
    75% {
        transform: translate(60px, -40px) scale(0.95);
        opacity: 0.6;
    }
}

/* Responsive - Hide some orbs on mobile */
@media (max-width: 768px) {
    .orb-3, .orb-5 {
        display: none;
    }
    
    .orb-1 {
        width: 15px;
        height: 15px;
    }
    
    .orb-2 {
        width: 10px;
        height: 10px;
    }
    
    .orb-4 {
        width: 8px;
        height: 8px;
    }
}

/* Why Section Dark */
.why-section-dark {
    background: #000000;
    padding: 80px 0;
}

.section-title-dark {
    font-family: 'Fredoka', cursive;
    font-weight: 700;
    font-size: 2.5rem;
    color: #fef0d5;
    margin-bottom: 50px;
}

.feature-card-dark {
    padding: 30px;
}

.feature-icon-dark {
    width: 80px;
    height: 80px;
    background: #f9b028;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: #000000;
}

.feature-title-dark {
    font-size: 1.3rem;
    color: #fef0d5;
    margin: 20px 0 15px;
    font-weight: 600;
}

.feature-text-dark {
    color: #999999;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Characters Section Dark */
.characters-section-dark {
    background: #000000;
    padding: 80px 0;
}

.character-card-dark {
    padding: 20px;
    transition: transform 0.3s ease;
}

.character-card-dark:hover {
    transform: translateY(-5px);
}

.character-avatar-dark {
    width: 180px;
    height: 180px;
    background: #f9b028;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
}

.character-portrait-dark {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.character-video-dark {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.character-name-dark {
    font-family: 'Fredoka', cursive;
    color: #fef0d5;
    font-size: 1.65rem;
    margin-top: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-view-all-dark {
    color: #fef0d5;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-view-all-dark:hover {
    color: #f9b028;
}

/* How It Works Dark */
.how-it-works-dark {
    background: #000000;
    padding: 80px 0;
    border-bottom: 1px solid #222222;
}

.step-icon-dark {
    position: relative;
    margin-bottom: 20px;
}

.step-circle-dark {
    width: 100px;
    height: 100px;
    background: #1a1a1a;
    border: 3px solid #f9b028;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.step-circle-dark:hover {
    background: #f9b028;
    transform: scale(1.1);
}

.step-circle-dark i {
    color: #f9b028;
    transition: color 0.3s ease;
}

.step-circle-dark:hover i {
    color: #000000;
}

.step-title-dark {
    font-family: 'Fredoka', cursive;
    color: #fef0d5;
    margin-top: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.step-desc-dark {
    color: #999999;
    font-size: 0.95rem;
    margin-top: 10px;
}

.download-btn-dark {
    background: #f9b028;
    color: #000000;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.download-btn-dark:hover {
    background: #ffbe3d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 176, 40, 0.3);
    color: #000000;
    text-decoration: none;
}

/* Footer Dark */
.footer-dark {
    background: #000000;
    border-top: 1px solid #222222;
    padding: 50px 0 30px 0;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-link-dark {
    width: 45px;
    height: 45px;
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fef0d5;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-dark:hover {
    background: #f9b028;
    border-color: #f9b028;
    color: #000000;
    transform: translateY(-3px);
}

.legal-link-dark {
    color: #fef0d5;
    opacity: 0.8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.legal-link-dark:hover {
    color: #f9b028;
    opacity: 1;
}

/* Characters Page Dark Theme */
.characters-hero-dark {
    background: #000000;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.characters-main-title {
    font-family: 'Fredoka', cursive;
    font-weight: 700;
    font-size: 3rem;
    color: #f9b028;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.characters-subtitle {
    color: #999999;
    font-size: 1.2rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
}

.characters-grid-dark {
    background: #000000;
    min-height: 100vh;
}

.character-card-new {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid #333333;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.character-card-new:hover {
    transform: translateY(-10px);
    border-color: #f9b028;
    box-shadow: 0 10px 40px rgba(249, 176, 40, 0.2);
}

.character-info-new {
    padding: 20px;
}

.character-portrait-new {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f9b028;
    box-shadow: 0 0 30px rgba(249, 176, 40, 0.3);
}

.character-portrait-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3);
}

.character-portrait-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #f9b028;
}

.character-name-new {
    font-family: 'Fredoka', cursive;
    font-weight: 700;
    font-size: 1.4rem;
    color: #fef0d5;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.character-era-new {
    color: #f9b028;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.character-nationality-new {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 3px;
    font-style: italic;
}

.character-description-new {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.character-summon-btn {
    background: #f9b028;
    color: #000000;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Fredoka', cursive;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.character-summon-btn:hover {
    background: #ffbe3d;
    color: #000000;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 176, 40, 0.4);
}

.characters-cta-btn {
    background: #f9b028;
    color: #000000;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: inline-block;
}

.characters-cta-btn:hover {
    background: #ffbe3d;
    color: #000000;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 176, 40, 0.3);
}

/* Characters Page Orbs */
.characters-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(249, 176, 40, 0.8) 0%, 
        rgba(249, 176, 40, 0.4) 40%, 
        rgba(249, 176, 40, 0.1) 70%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(249, 176, 40, 0.3);
    pointer-events: none;
    filter: blur(1px);
}

.characters-orb-1 { width: 15px; height: 15px; top: 20%; left: 15%; animation: charFloat1 8s infinite ease-in-out; }
.characters-orb-2 { width: 20px; height: 20px; top: 30%; right: 20%; animation: charFloat2 10s infinite ease-in-out; }
.characters-orb-3 { width: 12px; height: 12px; top: 60%; left: 10%; animation: charFloat3 7s infinite ease-in-out; }
.characters-orb-4 { width: 18px; height: 18px; top: 70%; right: 15%; animation: charFloat4 9s infinite ease-in-out; }
.characters-orb-5 { width: 10px; height: 10px; top: 40%; left: 50%; animation: charFloat5 6s infinite ease-in-out; }
.characters-orb-6 { width: 16px; height: 16px; top: 80%; left: 60%; animation: charFloat6 11s infinite ease-in-out; }

/* Characters Orb Animations */
@keyframes charFloat1 {
    0%, 100% { transform: translate(0, 0) scale(0.8); opacity: 0.6; }
    50% { transform: translate(30px, -40px) scale(1.2); opacity: 1; }
}

@keyframes charFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    33% { transform: translate(-40px, 30px) scale(1.3); opacity: 0.9; }
    66% { transform: translate(20px, -25px) scale(0.7); opacity: 0.4; }
}

@keyframes charFloat3 {
    0%, 100% { transform: translate(0, 0) scale(0.9); opacity: 0.7; }
    50% { transform: translate(35px, 45px) scale(1.4); opacity: 1; }
}

@keyframes charFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1.1); opacity: 0.6; }
    25% { transform: translate(-30px, -35px) scale(0.8); opacity: 0.3; }
    75% { transform: translate(25px, 20px) scale(1.2); opacity: 0.9; }
}

@keyframes charFloat5 {
    0%, 100% { transform: translate(0, 0) scale(0.7); opacity: 0.4; }
    50% { transform: translate(-45px, -30px) scale(1.5); opacity: 1; }
}

@keyframes charFloat6 {
    0%, 100% { transform: translate(0, 0) scale(1.2); opacity: 0.8; }
    40% { transform: translate(50px, -40px) scale(0.9); opacity: 0.5; }
    80% { transform: translate(-35px, 35px) scale(1.3); opacity: 1; }
}

/* Guide/How to Play Page Dark Theme Styles */
.guide-hero-dark {
    background: #000000;
    color: #fef0d5;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.guide-main-title {
    font-family: 'Fredoka', cursive;
    font-size: 3rem;
    font-weight: 700;
    color: #f9b028;
    margin-bottom: 1rem;
}

.guide-subtitle {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.2rem;
    color: #fef0d5;
    opacity: 0.9;
}

.guide-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(249, 176, 40, 0.8) 0%, 
        rgba(249, 176, 40, 0.4) 40%, 
        rgba(249, 176, 40, 0.1) 70%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(249, 176, 40, 0.3);
    pointer-events: none;
    filter: blur(1px);
}

.guide-orb-1 { width: 15px; height: 15px; top: 20%; left: 15%; animation: guideFloat1 8s infinite ease-in-out; }
.guide-orb-2 { width: 20px; height: 20px; top: 30%; right: 20%; animation: guideFloat2 10s infinite ease-in-out; }
.guide-orb-3 { width: 12px; height: 12px; top: 60%; left: 10%; animation: guideFloat3 7s infinite ease-in-out; }
.guide-orb-4 { width: 18px; height: 18px; top: 70%; right: 15%; animation: guideFloat4 9s infinite ease-in-out; }
.guide-orb-5 { width: 10px; height: 10px; top: 40%; left: 50%; animation: guideFloat5 6s infinite ease-in-out; }
.guide-orb-6 { width: 16px; height: 16px; top: 80%; left: 60%; animation: guideFloat6 11s infinite ease-in-out; }

.guide-step-dark {
    background: #000000;
    color: #fef0d5;
}

.step-content-left, .step-content-right {
    padding: 2rem;
}

.step-title {
    font-family: 'Fredoka', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    color: #f9b028;
    margin-bottom: 1.5rem;
}

.step-description {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
    color: #fef0d5;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-description-large {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.4rem;
    color: #fef0d5;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.step-features li {
    font-family: 'Roboto Condensed', sans-serif;
    color: #fef0d5;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.step-features li:before {
    content: "•";
    color: #f9b028;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.step-features li strong {
    color: #f9b028;
}

.step-cost {
    background: rgba(249, 176, 40, 0.1);
    border: 1px solid rgba(249, 176, 40, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.step-cost i {
    color: #f9b028;
    font-size: 1.1rem;
}

.step-cost span {
    font-family: 'Roboto Condensed', sans-serif;
    color: #fef0d5;
    font-size: 0.95rem;
}

.step-cost.step-free {
    background: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.3);
}

.step-cost.step-free i {
    color: #28a745;
}

.step-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.step-icon-large i {
    font-size: 8rem;
    color: #000000;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #f9b028;
    border: 3px solid #f9b028;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-icon-large:hover i {
    background: #ffbe3d;
    border-color: #ffbe3d;
    transform: scale(1.05);
}

/* Character avatar for step 1 */
.step-character-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #f9b028;
    border: 3px solid #f9b028;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.step-character-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.step-icon-large:hover .step-character-avatar {
    background: #ffbe3d;
    border-color: #ffbe3d;
    transform: scale(1.05);
}

/* Make share and comments icons smaller */
.step-icon-large i.fa-share-alt {
    font-size: 6.5rem;
}

.step-icon-large i.fa-comments {
    font-size: 6rem;
}

/* Character Cluster Styles */
.step-characters-cluster {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
}

.cluster-character {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f9b028;
    border: 3px solid #f9b028;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cluster-character img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.cluster-character-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    z-index: 5;
    animation: clusterFloat1 5s ease-in-out infinite;
}

.cluster-character-2 {
    top: 5%;
    left: 5%;
    z-index: 4;
    animation: clusterFloat2 6.5s ease-in-out infinite;
}

.cluster-character-3 {
    top: 5%;
    right: 5%;
    z-index: 3;
    animation: clusterFloat3 7.2s ease-in-out infinite;
}

.cluster-character-4 {
    bottom: 5%;
    left: 5%;
    z-index: 2;
    animation: clusterFloat4 8.1s ease-in-out infinite;
}

.cluster-character-5 {
    bottom: 5%;
    right: 5%;
    z-index: 1;
    animation: clusterFloat5 9.3s ease-in-out infinite;
}

.step-icon-large:hover .cluster-character {
    border-color: #ffbe3d;
    background: #ffbe3d;
}

/* Character Cluster Animations */
@keyframes clusterFloat1 {
    0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    25% { transform: translate(-45%, -55%) scale(1.08) rotate(3deg); }
    50% { transform: translate(-55%, -45%) scale(1.12) rotate(-2deg); }
    75% { transform: translate(-50%, -50%) scale(1.05) rotate(4deg); }
}

@keyframes clusterFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(-15px, -20px) scale(1.15) rotate(-8deg); }
    66% { transform: translate(20px, -10px) scale(0.95) rotate(6deg); }
}

@keyframes clusterFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(-25px, -15px) scale(1.1) rotate(10deg); }
    50% { transform: translate(15px, -25px) scale(0.9) rotate(-5deg); }
    75% { transform: translate(-10px, -5px) scale(1.2) rotate(8deg); }
}

@keyframes clusterFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    30% { transform: translate(25px, 15px) scale(0.85) rotate(-12deg); }
    60% { transform: translate(-20px, 20px) scale(1.18) rotate(7deg); }
    90% { transform: translate(10px, -5px) scale(1.05) rotate(-4deg); }
}

@keyframes clusterFloat5 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    20% { transform: translate(-18px, 25px) scale(1.25) rotate(15deg); }
    40% { transform: translate(22px, -15px) scale(0.8) rotate(-10deg); }
    60% { transform: translate(-10px, -20px) scale(1.1) rotate(12deg); }
    80% { transform: translate(15px, 10px) scale(0.95) rotate(-8deg); }
}

/* Guide Orb Animations */
@keyframes guideFloat1 {
    0%, 100% { transform: translate(0, 0) scale(0.8); opacity: 0.6; }
    50% { transform: translate(30px, -40px) scale(1.2); opacity: 1; }
}

@keyframes guideFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    33% { transform: translate(-40px, 30px) scale(1.3); opacity: 0.9; }
    66% { transform: translate(20px, -25px) scale(0.7); opacity: 0.4; }
}

@keyframes guideFloat3 {
    0%, 100% { transform: translate(0, 0) scale(0.9); opacity: 0.7; }
    50% { transform: translate(35px, 45px) scale(1.4); opacity: 1; }
}

@keyframes guideFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1.1); opacity: 0.6; }
    25% { transform: translate(-30px, -35px) scale(0.8); opacity: 0.3; }
    75% { transform: translate(25px, 20px) scale(1.2); opacity: 0.9; }
}

@keyframes guideFloat5 {
    0%, 100% { transform: translate(0, 0) scale(0.7); opacity: 0.4; }
    50% { transform: translate(-45px, -30px) scale(1.5); opacity: 1; }
}

@keyframes guideFloat6 {
    0%, 100% { transform: translate(0, 0) scale(1.2); opacity: 0.8; }
    40% { transform: translate(50px, -40px) scale(0.9); opacity: 0.5; }
    80% { transform: translate(-35px, 35px) scale(1.3); opacity: 1; }
}

.guide-cta-dark {
    background: #000000;
    color: #fef0d5;
}

.guide-cta-title {
    font-family: 'Fredoka', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f9b028;
    margin-bottom: 1rem;
}

.guide-cta-subtitle {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.2rem;
    color: #fef0d5;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.guide-cta-btn-primary, .guide-cta-btn-secondary {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
}

.guide-cta-btn-primary {
    background: #f9b028;
    color: #000000;
    border: 2px solid #f9b028;
}

.guide-cta-btn-primary:hover {
    background: transparent;
    color: #f9b028;
    transform: translateY(-2px);
}

.guide-cta-btn-secondary {
    background: transparent;
    color: #fef0d5;
    border: 2px solid rgba(254, 240, 213, 0.3);
}

.guide-cta-btn-secondary:hover {
    background: rgba(254, 240, 213, 0.1);
    color: #fef0d5;
    border-color: #fef0d5;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .guide-main-title {
        font-size: 2.5rem;
    }
    
    .step-title {
        font-size: 1.8rem;
    }
    
    .step-icon-large i {
        font-size: 6rem;
        width: 150px;
        height: 150px;
    }
    
    .step-character-avatar {
        width: 150px;
        height: 150px;
    }
    
    .step-characters-cluster {
        width: 350px;
        height: 350px;
    }
    
    .cluster-character {
        width: 90px;
        height: 90px;
    }
    
    .cluster-character-1 {
        width: 110px;
        height: 110px;
    }
    
    .guide-cta-title {
        font-size: 2rem;
    }
}

/* About Page Dark Theme Styles */
.about-hero-dark {
    background: #000000;
    color: #fef0d5;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.about-main-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #f9b028;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.2rem;
    color: #fef0d5;
    opacity: 0.9;
}

.about-step-dark {
    background: #000000;
    color: #fef0d5;
}

.about-characters-dark {
    background: #000000;
    color: #fef0d5;
}

.about-stats-dark {
    background: #000000;
    color: #fef0d5;
}

.about-cta-dark {
    background: #000000;
    color: #fef0d5;
}

.about-section-title {
    font-family: 'Fredoka', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f9b028;
    margin-bottom: 2rem;
}

/* About Step Styles (How to Play inspired) */
.about-step-content {
    padding: 2rem;
}

.about-step-title {
    font-family: 'Fredoka', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    color: #f9b028;
    margin-bottom: 1.5rem;
}

.about-step-description {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
    color: #fef0d5;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-step-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-step-features li {
    font-family: 'Roboto Condensed', sans-serif;
    color: #fef0d5;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.about-step-features li:before {
    content: "•";
    color: #f9b028;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.about-step-features li strong {
    color: #f9b028;
}

.about-step-highlight {
    background: rgba(249, 176, 40, 0.1);
    border: 1px solid rgba(249, 176, 40, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.about-step-highlight i {
    color: #f9b028;
    font-size: 1.1rem;
}

.about-step-highlight span {
    font-family: 'Roboto Condensed', sans-serif;
    color: #fef0d5;
    font-size: 0.95rem;
}

.about-step-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.about-step-icon-large i {
    font-size: 8rem;
    color: #000000;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #f9b028;
    border: 3px solid #f9b028;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-step-icon-large:hover i {
    background: #ffbe3d;
    border-color: #ffbe3d;
    transform: scale(1.05);
}

/* Character Cards */
.about-character-card {
    background: rgba(254, 240, 213, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(249, 176, 40, 0.2);
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.about-character-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 176, 40, 0.2);
    border-color: rgba(249, 176, 40, 0.4);
}

.about-character-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f9b028;
    border: 3px solid #f9b028;
    margin: 0 auto 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-character-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-character-avatar i {
    color: #000000;
    font-size: 2rem;
}

.about-character-name {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #f9b028;
    margin-bottom: 0.5rem;
}

.about-character-era {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.85rem;
    color: #fef0d5;
    opacity: 0.8;
    margin: 0;
}


/* Stats */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(249, 176, 40, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(249, 176, 40, 0.2);
    transition: all 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-3px);
    border-color: rgba(249, 176, 40, 0.4);
}

.about-stat-number {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #f9b028;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.9rem;
    color: #fef0d5;
    opacity: 0.8;
}

/* CTA Buttons */
.about-cta-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f9b028;
    margin-bottom: 1rem;
}

.about-cta-subtitle {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.2rem;
    color: #fef0d5;
    opacity: 0.9;
}

.about-cta-btn, .about-cta-btn-primary, .about-cta-btn-secondary {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
}

.about-cta-btn, .about-cta-btn-primary {
    background: #f9b028;
    color: #000000;
    border: 2px solid #f9b028;
}

.about-cta-btn:hover, .about-cta-btn-primary:hover {
    background: transparent;
    color: #f9b028;
    transform: translateY(-2px);
}

.about-cta-btn-secondary {
    background: transparent;
    color: #fef0d5;
    border: 2px solid rgba(254, 240, 213, 0.3);
}

.about-cta-btn-secondary:hover {
    background: rgba(254, 240, 213, 0.1);
    color: #fef0d5;
    border-color: #fef0d5;
    transform: translateY(-2px);
}

/* About Page Orbs */
.about-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(249, 176, 40, 0.8) 0%, 
        rgba(249, 176, 40, 0.4) 40%, 
        rgba(249, 176, 40, 0.1) 70%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(249, 176, 40, 0.3);
    pointer-events: none;
    filter: blur(1px);
}

.about-orb-1 { width: 15px; height: 15px; top: 20%; left: 15%; animation: aboutFloat1 8s infinite ease-in-out; }
.about-orb-2 { width: 20px; height: 20px; top: 30%; right: 20%; animation: aboutFloat2 10s infinite ease-in-out; }
.about-orb-3 { width: 12px; height: 12px; top: 60%; left: 10%; animation: aboutFloat3 7s infinite ease-in-out; }
.about-orb-4 { width: 18px; height: 18px; top: 70%; right: 15%; animation: aboutFloat4 9s infinite ease-in-out; }
.about-orb-5 { width: 10px; height: 10px; top: 40%; left: 50%; animation: aboutFloat5 6s infinite ease-in-out; }
.about-orb-6 { width: 16px; height: 16px; top: 80%; left: 60%; animation: aboutFloat6 11s infinite ease-in-out; }

/* About Orb Animations */
@keyframes aboutFloat1 {
    0%, 100% { transform: translate(0, 0) scale(0.8); opacity: 0.6; }
    50% { transform: translate(30px, -40px) scale(1.2); opacity: 1; }
}

@keyframes aboutFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    33% { transform: translate(-40px, 30px) scale(1.3); opacity: 0.9; }
    66% { transform: translate(20px, -25px) scale(0.7); opacity: 0.4; }
}

@keyframes aboutFloat3 {
    0%, 100% { transform: translate(0, 0) scale(0.9); opacity: 0.7; }
    50% { transform: translate(35px, 45px) scale(1.4); opacity: 1; }
}

@keyframes aboutFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1.1); opacity: 0.6; }
    25% { transform: translate(-30px, -35px) scale(0.8); opacity: 0.3; }
    75% { transform: translate(25px, 20px) scale(1.2); opacity: 0.9; }
}

@keyframes aboutFloat5 {
    0%, 100% { transform: translate(0, 0) scale(0.7); opacity: 0.4; }
    50% { transform: translate(-45px, -30px) scale(1.5); opacity: 1; }
}

@keyframes aboutFloat6 {
    0%, 100% { transform: translate(0, 0) scale(1.2); opacity: 0.8; }
    40% { transform: translate(50px, -40px) scale(0.9); opacity: 0.5; }
    80% { transform: translate(-35px, 35px) scale(1.3); opacity: 1; }
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-main-title {
        font-size: 2.5rem;
    }
    
    .about-section-title {
        font-size: 2rem;
    }
    
    .about-step-title {
        font-size: 1.8rem;
    }
    
    .about-step-icon-large i {
        font-size: 6rem;
        width: 150px;
        height: 150px;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-stat-item {
        padding: 1rem;
    }
    
    .about-stat-number {
        font-size: 1.5rem;
    }
    
    .about-cta-title {
        font-size: 2rem;
    }
    
    .about-character-avatar {
        width: 60px;
        height: 60px;
    }
    
    .about-character-avatar i {
        font-size: 1.5rem;
    }
}

/* Responsive Dark Theme */
@media (max-width: 768px) {
    .hero-title-dark {
        font-size: 3rem;
    }
    
    .section-title-dark {
        font-size: 1.8rem;
    }
    
    .character-avatar-dark {
        width: 120px;
        height: 120px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .characters-main-title {
        font-size: 2.5rem;
    }
    
    .character-portrait-new {
        width: 150px;
        height: 150px;
    }
    
    .characters-orb-3, .characters-orb-5, .characters-orb-6 {
        display: none;
    }
}

/* Hero Video Container */
.hero-video-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 85%;
    height: 100%;
    z-index: 1;
    border-radius: 16px 0 0 0;
    overflow: hidden;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.4);
}

.hero-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0) 100%);
    z-index: 10;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px 0 0 0;
    object-fit: cover;
    object-position: right;
    transition: opacity 1s ease-in-out, transform 0.3s ease;
    opacity: 0;
}

.hero-video.active {
    opacity: 1;
}

.hero-video:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .hero-video-container {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: 300px;
        transform: none;
        margin-top: 2rem;
    }
}

/* Promo Video Section */
.promo-video-section {
    background: #000000;
    padding: 80px 0;
}

.video-player-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(249, 176, 40, 0.2);
    border: 2px solid #333333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-player-wrapper:hover {
    border-color: #f9b028;
    box-shadow: 0 15px 60px rgba(249, 176, 40, 0.3);
}

.video-player-wrapper:hover .play-button {
    transform: scale(1.1);
    background: #ffbe3d;
}

.promo-video {
    width: 100%;
    height: auto;
    display: block;
    background: #111111;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 100px;
    height: 100px;
    background: #f9b028;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 30px rgba(249, 176, 40, 0.5);
}

.play-button i {
    font-size: 2.5rem;
    color: #000000;
    margin-left: 8px;
}

@media (max-width: 768px) {
    .promo-video-section {
        padding: 50px 0;
    }
    
    .video-player-wrapper {
        border-radius: 12px;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-button i {
        font-size: 1.8rem;
        margin-left: 5px;
    }
}

/* =====================================================
   LEGAL PAGES (Privacy & Terms)
   ===================================================== */

.legal-hero-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    padding: 80px 0 50px;
    text-align: center;
    border-bottom: 1px solid rgba(249, 176, 40, 0.1);
}

.legal-main-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f9b028;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.legal-subtitle {
    color: #888;
    font-size: 1rem;
}

.legal-content-section {
    background: #0a0a0a;
    padding: 60px 0 80px;
}

.legal-card {
    background: linear-gradient(145deg, #141414 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(249, 176, 40, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.legal-card h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #f9b028;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(249, 176, 40, 0.15);
}

.legal-card h2:first-of-type {
    margin-top: 0;
}

.legal-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ccc;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-card p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.legal-card ul {
    color: #aaa;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-card ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.legal-card strong {
    color: #ddd;
}

.legal-back-link {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(249, 176, 40, 0.1);
    text-align: center;
}

.btn-legal-back {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, #f9b028 0%, #e89f20 100%);
    color: #000;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-legal-back:hover {
    background: linear-gradient(135deg, #ffc14d 0%, #f9b028 100%);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 176, 40, 0.3);
}

@media (max-width: 768px) {
    .legal-hero-section {
        padding: 60px 0 40px;
    }
    
    .legal-main-title {
        font-size: 1.8rem;
    }
    
    .legal-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-card h2 {
        font-size: 1.2rem;
    }
}

/* ================================
   Credits Promo Section
   ================================ */
.credits-promo-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
}

.credits-promo-card {
    background: linear-gradient(135deg, rgba(30, 28, 25, 0.95) 0%, rgba(15, 14, 13, 0.98) 100%);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(249, 176, 40, 0.15);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.credits-promo-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(249, 176, 40, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.credits-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(249, 176, 40, 0.2) 0%, rgba(249, 176, 40, 0.05) 100%);
    border: 1px solid rgba(249, 176, 40, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #f9b028;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.credits-promo-title {
    font-family: 'Fredoka', cursive;
    font-size: 2.2rem;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.credits-promo-text {
    color: #888;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.credits-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.credits-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 0.9rem;
}

.credits-features li i {
    color: #4ade80;
    font-size: 0.75rem;
}

.credits-promo-cta {
    background: linear-gradient(145deg, rgba(249, 176, 40, 0.08) 0%, rgba(249, 176, 40, 0.02) 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(249, 176, 40, 0.1);
}

.credits-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f9b028 0%, #e8a020 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 10px 40px rgba(249, 176, 40, 0.3);
}

.credits-pricing {
    margin-bottom: 25px;
}

.credits-from {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.credits-price {
    font-family: 'Fredoka', cursive;
    font-size: 2.5rem;
    color: #f9b028;
}

.credits-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #f9b028 0%, #e8a020 100%);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.credits-buy-btn:hover {
    background: linear-gradient(135deg, #ffc14d 0%, #f9b028 100%);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 176, 40, 0.4);
}

@media (max-width: 991px) {
    .credits-promo-card {
        padding: 30px;
    }
    
    .credits-promo-content {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .credits-features {
        justify-content: center;
    }
    
    .credits-promo-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .credits-promo-card {
        padding: 25px 20px;
    }
    
    .credits-promo-title {
        font-size: 1.5rem;
    }
    
    .credits-features {
        flex-direction: column;
        align-items: center;
    }
}