    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 1.5rem 0;
        z-index: 1000;
        border-bottom: 2px solid var(--red);
        box-shadow: 0 4px 30px rgba(255, 0, 0, 0.3);
    }

    .navbar-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 2rem;
        font-weight: 900;
        color: var(--white);
        text-decoration: none;
        letter-spacing: 2px;
        text-transform: uppercase;
        position: relative;
        transition: all 0.3s ease;
    }

    .logo span {
        color: var(--red);
    }

    .logo:hover {
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    }

    .nav-links {
        display: flex;
        gap: 2rem;
        list-style: none;
        align-items: center;
    }

    .nav-link {
        color: var(--white);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 0.5rem 1rem;
        position: relative;
        transition: all 0.3s ease;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--red);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .nav-link:hover {
        color: var(--red);
    }

    .btn-cta {
        background: var(--red);
        color: var(--white);
        padding: 0.75rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        border: 2px solid var(--red);
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    }

    .btn-cta:hover {
        background: transparent;
        transform: translateY(-3px);
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding: 80px 2rem 2rem;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            linear-gradient(45deg, transparent 30%, rgba(255, 0, 0, 0.1) 50%, transparent 70%),
            radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
        animation: heroGlow 8s ease-in-out infinite;
    }

    @keyframes heroGlow {

        0%,
        100% {
            opacity: 0.3;
        }

        50% {
            opacity: 0.6;
        }
    }

    .hero-content {
        text-align: center;
        z-index: 1;
        max-width: 1200px;
        width: 100%;
        padding: 2rem;
    }

    .hero-title {
        font-size: 5rem;
        font-weight: 900;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 3px;
        line-height: 1.2;
        animation: fadeInUp 1s ease;
    }

    .hero-title span {
        color: var(--red);
        text-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
    }

    .hero-subtitle {
        font-size: 1.5rem;
        color: var(--gray-text);
        margin-bottom: 3rem;
        font-weight: 300;
        letter-spacing: 2px;
        animation: fadeInUp 1s ease 0.2s both;
    }

    .hero-buttons {
        display: flex;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeInUp 1s ease 0.4s both;
        width: 100%;
    }

    .btn-hero {
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: all 0.3s ease;
        border: 2px solid;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        min-width: 200px;
    }

    .btn-primary {
        background: var(--red);
        color: var(--white);
        border-color: var(--red);
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    }

    .btn-primary:hover {
        background: transparent;
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 0 50px rgba(255, 0, 0, 0.8);
    }

    .btn-secondary {
        background: transparent;
        color: var(--white);
        border-color: var(--white);
    }

    .btn-secondary:hover {
        background: var(--white);
        color: var(--black);
        transform: translateY(-5px) scale(1.05);
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Stats Section */
    .stats {
        background: var(--dark-gray);
        padding: 4rem 2rem;
        border-top: 2px solid var(--red);
        border-bottom: 2px solid var(--red);
    }

    .stats-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
    }

    .stat-item {
        text-align: center;
        padding: 2rem;
        background: rgba(255, 0, 0, 0.05);
        border-radius: 15px;
        border: 1px solid rgba(255, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .stat-item:hover {
        transform: translateY(-10px);
        background: rgba(255, 0, 0, 0.1);
        box-shadow: 0 10px 40px rgba(255, 0, 0, 0.3);
    }

    .stat-number {
        font-size: 3.5rem;
        font-weight: 900;
        color: var(--red);
        margin-bottom: 0.5rem;
        text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    }

    .stat-label {
        font-size: 1.1rem;
        color: var(--gray-text);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
    }

    /* Features Section */
    .features {
        padding: 6rem 2rem;
        max-width: 1400px;
        margin: 0 auto;
    }

    .section-title {
        text-align: center;
        font-size: 3rem;
        font-weight: 900;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 3px;
    }

    .section-title span {
        color: var(--red);
    }

    .section-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: var(--gray-text);
        margin-bottom: 4rem;
        font-weight: 300;
    }

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

    .feature-card {
        background: var(--medium-gray);
        padding: 3rem 2rem;
        border-radius: 20px;
        text-align: center;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--red);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .feature-card:hover::before {
        transform: scaleX(1);
    }

    .feature-card:hover {
        border-color: var(--red);
        transform: translateY(-10px);
        box-shadow: 0 15px 50px rgba(255, 0, 0, 0.3);
    }

    .feature-icon {
        font-size: 4rem;
        color: var(--red);
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.2) rotate(360deg);
        text-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
    }

    .feature-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .feature-description {
        color: var(--gray-text);
        line-height: 1.8;
        font-weight: 300;
    }

    /* CTA Section */
    .cta-section {
        background: var(--dark-gray);
        padding: 6rem 2rem;
        text-align: center;
        border-top: 2px solid var(--red);
        border-bottom: 2px solid var(--red);
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
        animation: pulse 5s ease-in-out infinite;
    }

    .cta-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .cta-title {
        font-size: 3rem;
        font-weight: 900;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .cta-title span {
        color: var(--red);
    }

    .cta-text {
        font-size: 1.3rem;
        color: var(--gray-text);
        margin-bottom: 3rem;
        font-weight: 300;
    }

    /* Footer */
    .footer {
        background: var(--black);
        padding: 4rem 2rem 2rem;
        border-top: 2px solid var(--red);
    }

    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-section h3 {
        color: var(--red);
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .footer-section p {
        color: var(--gray-text);
        line-height: 1.8;
        margin-bottom: 1rem;
    }

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

    .footer-section ul li {
        margin-bottom: 0.8rem;
    }

    .footer-section a {
        color: var(--gray-text);
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 300;
    }

    .footer-section a:hover {
        color: var(--red);
        padding-left: 5px;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--medium-gray);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        text-decoration: none;
        font-size: 1.3rem;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .social-link:hover {
        background: var(--red);
        border-color: var(--red);
        transform: translateY(-5px) rotate(360deg);
        box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 0, 0, 0.2);
        color: var(--gray-text);
        font-weight: 300;
    }

    /* Mobile Menu */
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1001;
    }

    .mobile-menu-btn:hover {
        color: var(--red);
        transform: scale(1.1);
    }

    .nav-links.mobile-active {
        display: flex !important;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 2px solid var(--red);
        box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
        animation: slideDown 0.3s ease;
        z-index: 999;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links.mobile-active .nav-link,
    .nav-links.mobile-active .btn-cta {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero {
            min-height: 100vh;
            padding: 120px 1rem 2rem;
        }

        .hero-content {
            padding: 1rem;
            max-width: 100%;
        }

        .hero-title {
            font-size: 2.5rem;
            letter-spacing: 1px;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            font-size: 1rem;
            margin-bottom: 2rem;
            letter-spacing: 1px;
            line-height: 1.4;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .btn-hero {
            width: 100%;
            max-width: 280px;
            padding: 1rem 2rem;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .nav-links {
            display: none;
        }

        .mobile-menu-btn {
            display: block;
        }

        .section-title {
            font-size: 2rem;
        }

        .cta-title {
            font-size: 2rem;
        }

        .stats {
            padding: 3rem 1rem;
        }

        .stats-container {
            gap: 2rem;
        }

        .stat-item {
            padding: 1.5rem;
        }

        .stat-number {
            font-size: 2.5rem;
        }

        .features {
            padding: 4rem 1rem;
        }

        .features-grid {
            gap: 2rem;
        }

        .feature-card {
            padding: 2rem 1.5rem;
        }

        .cta-section {
            padding: 4rem 1rem;
        }

        .cta-text {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 0.9rem;
        }

        .btn-hero {
            padding: 0.9rem 1.5rem;
            font-size: 0.8rem;
        }

        .navbar-container {
            padding: 0 1rem;
        }

        .logo {
            font-size: 1.5rem;
        }
    }


    :root {
        --black: #000000;
        --dark-gray: #0d0d0d;
        --medium-gray: #1a1a1a;
        --red: #ff0000;
        --dark-red: #cc0000;
        --light-red: #ff3333;
        --white: #ffffff;
        --gray-text: #b3b3b3;
    }

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

    body {
        font-family: 'Montserrat', sans-serif;
        background: var(--black);
        color: var(--white);
        overflow-x: hidden;
    }

    /* Animated Background */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle at 10% 20%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 90% 80%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
        z-index: -1;
        animation: pulse 10s ease-in-out infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 0.3;
        }

        50% {
            opacity: 0.6;
        }
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 12px;
    }

    ::-webkit-scrollbar-track {
        background: var(--black);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--red);
        border-radius: 6px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--light-red);
    }