:root {
    --primary-color: #6366F1;
    --secondary-color: #8B5CF6;
    --accent-color: #F59E0B;
    --success-color: #10B981;
    --danger-color: #EF4444;
    --warning-color: #F59E0B;
    --info-color: #3B82F6;
    --dark-color: #1F2937;
    --darker-bg: #0A0A0A;
    --card-bg: rgba(30, 41, 59, 0.8);
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --gradient-evolution:  linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    --gradient-secondary: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --border-radius: 12px;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--darker-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.text-muted {
    --bs-text-opacity: 1;
    color: var(--text-secondary)!important;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(99, 102, 241, 0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    position: fixed;
    top: 0;
    z-index: 1030;
    width: 100vw;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow-card);
}

.navbar-brand {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.dropdown-menu {
    position: absolute;
    z-index: var(--bs-dropdown-zindex);
    display: none;
    min-width: var(--bs-dropdown-min-width);
    padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    margin: 0;
    font-size: var(--bs-dropdown-font-size);
    color: #c7d1dd;
    text-align: left;
    list-style: none;
    background-color: rgba(15, 23, 42, 0.95);
    background-clip: padding-box;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1px;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: #c6d0dc;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: var(--bs-dropdown-item-border-radius,0);
}
.dropdown-item:hover {
    color: var(--primary-color);
    background-color: rgba(99, 102, 241, 0.1);
    text-decoration: none;
}
.dropdown-divider {
    height: 0;
    margin: var(--bs-dropdown-divider-margin-y) 0;
    overflow: hidden;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    opacity: 1;
}

/* Buttons */
.btn-primary-gradient {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
    color: white;
}

.btn-outline-gradient {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-gradient:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.btn-white {
    background: white;
    color: var(--dark-color);
    border: none;
    padding: 15px 35px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: var(--dark-color);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(99,102,241,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.features1-section {
    padding: 100px 0;
    position: relative;
    background: rgb(25 32 49);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    position: relative;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: rgba(30, 41, 59, 0.3);
}

.pricing-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
    height: 100%;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.pricing-period {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--text-secondary);
}

.pricing-features li:before {
    content: "✅";
    margin-right: 10px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 8s ease-in-out infinite;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Table Styles */
.feature-table {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.feature-table table {
    width: 100%;
    margin: 0;
}

.feature-table th {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    font-weight: 700;
    border: none;
}

.feature-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    color: var(--text-secondary);
}

.feature-table td:first-child {
    color: var(--text-primary);
    font-weight: 600;
}

/* Footer */
.footer {
    background: rgba(15, 23, 42, 0.95);
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    margin-top: 40px;
    padding-top: 30px;
    color: var(--text-secondary);
}

/* Use Case Cards */
.use-case-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.use-case-icon {
    font-size: 2rem;
    margin-right: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Special Animations */
.rapid-fire {
    background: var(--gradient-success);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.highlight-box {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 20px 0;
}

.demo-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 576px) {
    .demo-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.feature-preview {
    background: var(--card-bg);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    text-align: center;
}

.feature-preview:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}
.nft-placeholder {
    font-size: 3rem;
}

.coming-soon-holder {
        /* Buttons */
        .btn-primary-gradient {
            background: var(--gradient-primary);
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
        }

        .btn-primary-gradient:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(99, 102, 241, 0.6);
            color: white;
        }

        .btn-outline-gradient {
            background: transparent;
            border: 2px solid var(--primary-color);
            padding: 12px 30px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            color: var(--primary-color);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-outline-gradient:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
        }

        .btn-white {
            background: white;
            color: var(--dark-bg);
            border: none;
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
            color: var(--dark-bg);
        }

        /* Main Coming Soon Section */
        .coming-soon-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
            overflow: hidden;
        }

        .coming-soon-title {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 24px;
        }

        .coming-soon-subtitle {
            font-size: 1.8rem;
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .coming-soon-description {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Countdown Timer */
        .countdown-container {
            background: var(--card-bg);
            border: 1px solid var(--border-primary);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(20px);
            margin: 40px 0;
            text-align: center;
        }

        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .countdown-item {
            background: var(--gradient-primary);
            border-radius: 15px;
            padding: 20px;
            min-width: 120px;
            color: white;
            text-align: center;
        }

        .countdown-number {
            font-size: 2.5rem;
            font-weight: 900;
            display: block;
        }

        .countdown-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
        }

        /* Feature Preview Cards */
        .feature-preview {
            background: var(--card-bg);
            border: 1px solid var(--border-primary);
            border-radius: 20px;
            padding: 32px;
            height: 100%;
            transition: all 0.3s ease;
            backdrop-filter: blur(20px);
            text-align: center;
        }

        .feature-preview:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-glow);
            border-color: var(--primary-color);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-secondary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 2.5rem;
            color: white;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .feature-description {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* Notify Section */
        .notify-section {
            background: rgba(30, 41, 59, 0.3);
            padding: 60px 0;
        }

        .notify-form {
            background: var(--card-bg);
            border: 1px solid var(--border-primary);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(20px);
            max-width: 600px;
            margin: 0 auto;
        }

        .form-control {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-primary);
            border-radius: 12px;
            padding: 15px 20px;
            color: var(--text-primary);
            font-size: 1.1rem;
        }

        .form-control:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
            color: var(--text-primary);
        }

        .form-control::placeholder {
            color: var(--text-secondary);
        }

        /* Footer */
        .footer {
            background: var(--darker-bg);
            padding: 40px 0;
            border-top: 1px solid var(--border-primary);
            text-align: center;
        }

        .footer-brand {
            font-size: 1.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 16px;
        }

        .social-links a {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: var(--card-bg);
            border: 1px solid var(--border-primary);
            border-radius: 12px;
            text-align: center;
            line-height: 48px;
            color: var(--text-secondary);
            margin: 0 8px;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-links a:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
        }

        /* Battle Animation */
        .battle-animation {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .battle-character {
            position: absolute;
            font-size: 4rem;
            animation: battle-bounce 3s ease-in-out infinite;
        }

        .character-1 {
            left: 20%;
            top: 50%;
            transform: translateY(-50%);
            animation-delay: 0s;
        }

        .character-2 {
            right: 20%;
            top: 50%;
            transform: translateY(-50%) scaleX(-1);
            animation-delay: 1.5s;
        }

        @keyframes battle-bounce {
            0%, 100% { transform: translateY(-50%) scale(1); }
            25% { transform: translateY(-70%) scale(1.1); }
            75% { transform: translateY(-30%) scale(0.9); }
        }

        /* Battle effects */
        .battle-effects {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            animation: battle-flash 2s ease-in-out infinite;
        }

        @keyframes battle-flash {
            0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
            50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .coming-soon-title {
                font-size: 3rem;
            }
            
            .coming-soon-subtitle {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .coming-soon-title {
                font-size: 2.5rem;
            }
            
            .coming-soon-subtitle {
                font-size: 1.3rem;
            }
            
            .countdown-timer {
                gap: 15px;
            }
            
            .countdown-item {
                min-width: 100px;
                padding: 15px;
            }
            
            .countdown-number {
                font-size: 2rem;
            }
            
            .battle-character {
                font-size: 3rem;
            }
        }

        /* Additional animations */
        .glow-pulse {
            animation: glow-pulse 3s ease-in-out infinite;
        }

        @keyframes glow-pulse {
            0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.3); }
            50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.6); }
        }

        /* Coming soon badge */
        .coming-soon-badge {
            background: var(--gradient-secondary);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            display: inline-block;
        }

        /* Highlight boxes */
        .highlight-box {
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 12px;
            padding: 20px;
            margin: 24px 0;
            border-left: 4px solid var(--accent-color);
        }

        .info-box {
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid var(--border-primary);
            border-radius: 12px;
            padding: 24px;
            margin: 24px 0;
            border-left: 4px solid var(--primary-color);
        }
}

.coming-soon-badge {
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    animation: glow 2s ease-in-out infinite alternate;
}

.boss-raids-coming-soon {
    /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 20%, rgba(239, 68, 68, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
            z-index: -1;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 24px;
        }

        .hero-subtitle {
            font-size: 1.8rem;
            color: var(--danger-color);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .hero-description {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Boss Icon Animation */
        .boss-icon {
            font-size: 25rem;
            line-height: 1;
            filter: drop-shadow(0 0 50px rgba(239, 68, 68, 0.5));
            animation: bossBreath 4s ease-in-out infinite;
        }

        @keyframes bossBreath {
            0%, 100% { 
                transform: scale(1) rotate(0deg);
                filter: drop-shadow(0 0 50px rgba(239, 68, 68, 0.5));
            }
            50% { 
                transform: scale(1.1) rotate(2deg);
                filter: drop-shadow(0 0 80px rgba(245, 158, 11, 0.7));
            }
        }

        /* Coming Soon Badge */
        .coming-soon-badge {
            background: var(--gradient-secondary);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4); }
            to { box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6); }
        }

        /* Feature Preview Cards */
        .feature-card {
            background: var(--card-bg);
            border: 1px solid var(--border-primary);
            border-radius: 20px;
            padding: 32px;
            height: 100%;
            transition: all 0.3s ease;
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.1), transparent);
            transition: left 0.5s;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(239, 68, 68, 0.3);
            border-color: var(--danger-color);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-secondary);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 2rem;
            color: white;
            position: relative;
            z-index: 2;
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
            position: relative;
            z-index: 2;
        }

        .feature-description {
            color: var(--text-secondary);
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }

        /* Countdown Timer */
        .countdown-section {
            background: rgba(30, 41, 59, 0.3);
            padding: 80px 0;
            border-top: 1px solid var(--border-primary);
            border-bottom: 1px solid var(--border-primary);
        }

        .countdown-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .countdown-item {
            text-align: center;
            background: var(--card-bg);
            border: 1px solid var(--border-primary);
            border-radius: 16px;
            padding: 30px 20px;
            min-width: 120px;
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
        }

        .countdown-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
        }

        .countdown-number {
            font-size: 3rem;
            font-weight: 900;
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
        }

        .countdown-label {
            color: var(--text-secondary);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        /* Notify Section */
        .notify-section {
            background: var(--darker-bg);
            padding: 80px 0;
        }

        .notify-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .notify-input {
            flex: 1;
            min-width: 250px;
            padding: 16px 20px;
            border: 2px solid var(--border-primary);
            border-radius: 12px;
            background: var(--card-bg);
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .notify-input:focus {
            outline: none;
            border-color: var(--danger-color);
            box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
        }

        .notify-input::placeholder {
            color: var(--text-secondary);
        }

        /* Footer */
        .footer {
            background: var(--darker-bg);
            padding: 60px 0 40px;
            border-top: 1px solid var(--border-primary);
        }

        .footer-brand {
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 12px;
        }

        .footer-tagline {
            color: var(--danger-color);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--card-bg);
            border: 1px solid var(--border-primary);
            border-radius: 10px;
            text-align: center;
            line-height: 38px;
            color: var(--text-secondary);
            margin-right: 12px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--danger-color);
            color: white;
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-primary);
            padding-top: 30px;
            margin-top: 40px;
            text-align: center;
        }

        .footer-bottom p {
            color: var(--text-secondary);
            margin-bottom: 0;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .boss-icon {
                font-size: 18rem;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.4rem;
            }
            
            .boss-icon {
                font-size: 15rem;
            }
            
            .countdown-container {
                gap: 15px;
            }
            
            .countdown-item {
                min-width: 100px;
                padding: 20px 15px;
            }
            
            .countdown-number {
                font-size: 2rem;
            }
            
            .notify-form {
                flex-direction: column;
                align-items: center;
            }
            
            .notify-input {
                min-width: 100%;
            }
        }

        /* Additional Animations */
        .rapid-fire {
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
        }

        /* Particles Animation */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--danger-color);
            border-radius: 50%;
            animation: float-particle 8s infinite linear;
            opacity: 0.6;
        }

        @keyframes float-particle {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100px) scale(1);
                opacity: 0;
            }
        }

        /* Glitch Effect */
        .glitch {
            animation: glitch 3s infinite;
        }

        @keyframes glitch {
            0%, 100% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(-2px, -2px); }
            60% { transform: translate(2px, 2px); }
            80% { transform: translate(2px, -2px); }
        }
}


.idlequest {
            .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .countdown-item {
            background: var(--card-bg);
            border: 1px solid var(--border-primary);
            border-radius: 16px;
            padding: 25px;
            text-align: center;
            min-width: 120px;
            backdrop-filter: blur(20px);
        }

        .countdown-number {
            font-size: 2.5rem;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
        }

        .countdown-label {
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Feature Preview Cards */
        .feature-preview {
            background: var(--card-bg);
            border: 1px solid var(--border-primary);
            border-radius: 20px;
            padding: 32px;
            height: 100%;
            transition: all 0.3s ease;
            backdrop-filter: blur(20px);
            text-align: center;
        }

        .feature-preview:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-glow);
            border-color: var(--primary-color);
        }

        .feature-icon {
            font-size: 4rem;
            margin-bottom: 24px;
            display: block;
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .feature-description {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Progress Indicator */
        .progress-section {
            background: rgba(30, 41, 59, 0.3);
            padding: 80px 0;
        }

        .progress-bar-container {
            background: var(--darker-bg);
            border-radius: 25px;
            padding: 8px;
            margin: 30px 0;
            border: 1px solid var(--border-primary);
        }

        .progress-bar-fill {
            background: var(--gradient-primary);
            height: 20px;
            border-radius: 20px;
            width: 75%;
            transition: width 1s ease;
            position: relative;
            overflow: hidden;
        }

        .progress-bar-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Notification Signup */
        .notify-section {
            background: var(--darker-bg);
            padding: 80px 0;
        }

        .notify-form {
            background: var(--card-bg);
            border: 1px solid var(--border-primary);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(20px);
        }

        .form-control {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-primary);
            border-radius: 12px;
            padding: 16px 20px;
            color: var(--text-primary);
            font-size: 1rem;
        }

        .form-control:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
            color: var(--text-primary);
        }

        .form-control::placeholder {
            color: var(--text-secondary);
        }

        /* Social Proof */
        .social-proof {
            text-align: center;
            margin: 40px 0;
        }

        .social-stat {
            display: inline-block;
            margin: 0 20px;
            padding: 15px 25px;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid var(--border-primary);
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .social-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
        }

        .social-label {
            font-size: 0.8rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Footer */
        .footer {
            background: var(--darker-bg);
            padding: 40px 0;
            border-top: 1px solid var(--border-primary);
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .countdown-timer {
                gap: 15px;
            }
            
            .countdown-item {
                min-width: 100px;
                padding: 20px;
            }
            
            .countdown-number {
                font-size: 2rem;
            }
            
            .social-stat {
                margin: 10px;
                display: block;
                width: 200px;
            }
        }

        /* Additional animations */
        .glow-on-hover {
            transition: all 0.3s ease;
        }

        .glow-on-hover:hover {
            box-shadow: 0 0 40px rgba(99, 102, 241, 0.4);
        }

        /* Particle effect background */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .particle {
            position: absolute;
            background: var(--primary-color);
            border-radius: 50%;
            opacity: 0.1;
            animation: float-particle 10s infinite linear;
        }

        @keyframes float-particle {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.1;
            }
            90% {
                opacity: 0.1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
}