.hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: radial-gradient(ellipse at center, #2e0d0d 0%, #000000 70%);
        }

        .hero-glow {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%) translateY(-65%);
            width: 70%;
            max-width: 800px;
            aspect-ratio: 1/1;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(204, 0, 0, 0.4) 0%, rgba(204, 0, 0, 0.2) 40%, transparent 70%);
            filter: blur(120px);
            animation: pulse 4s ease-in-out infinite alternate;
            pointer-events: none;
            z-index: 1;
        }

        .grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 2;
        }

        @keyframes gridFloat {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        .grid-overlay::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 90%;
            background: linear-gradient(
                to top,
                #0a0a0a 0%,
                rgba(10,10,10,0.95) 15%,
                rgba(10,10,10,0.8) 30%,
                rgba(10,10,10,0.6) 50%,
                rgba(10,10,10,0.3) 70%,
                rgba(10,10,10,0.1) 85%,
                transparent 100%
            );
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 1200px;
            padding: 0 2rem;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50px;
            padding: 0.5rem 1rem;
            margin-bottom: 2rem;
            font-size: 0.875rem;
            font-weight: 500;
            animation: slideIn 1s ease-out 0.2s both;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            background: #cc0000;
            border-radius: 50%;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { box-shadow: 0 0 5px #cc0000; }
            to { box-shadow: 0 0 20px #cc0000, 0 0 30px #cc0000; }
        }

        .hero-title {
            font-size: clamp(2.5rem, 8vw, 5.5rem);
            font-weight: 500;
            margin-bottom: 1.5rem;
            background: #ffffff;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: slideIn 1s ease-out 0.4s both;
        }

        .hero-subtitle {
            font-size: clamp(1.125rem, 3vw, 1.5rem);
            line-height: 1.6;
            margin-bottom: 3rem;
            color: rgba(255,255,255,0.8);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: slideIn 1s ease-out 0.6s both;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: slideIn 1s ease-out 0.8s both;
        }

        .btn-heroo {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary-heroo {
            background: linear-gradient(135deg, #cc0000 0%, #cc0000 100%);
            color: white;
            box-shadow: 0 4px 20px rgba(204, 0, 0, 0.3);
        }

        .btn-primary-heroo:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(204, 0, 0, 0.4);
        }

        .btn-secondary-heroo {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
        }

        .btn-secondary-heroo:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255,255,255,0.1);
        }

        .btn-heroo::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .btn-heroo:hover::before {
            left: 100%;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 3;
        }

        .floating-element {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(204, 0, 0, 0.6);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .floating-element:nth-child(2) { top: 60%; left: 85%; animation-delay: 1s; }
        .floating-element:nth-child(3) { top: 30%; left: 70%; animation-delay: 2s; }
        .floating-element:nth-child(4) { top: 80%; left: 20%; animation-delay: 3s; }
        .floating-element:nth-child(5) { top: 10%; left: 50%; animation-delay: 4s; }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) scale(1);
                opacity: 0.6;
            }
            50% { 
                transform: translateY(-20px) scale(1.2);
                opacity: 1;
            }
        }

        .hero:hover::before {
            opacity: 1;
        }
/* Mobile-specific optimizations */
@media (max-width: 767px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 0.5rem;
    }
.hero {
  margin-top: 40px !important;
}
    
    .hero-glow {
        width: 100%;
        filter: blur(60px);
        transform: translateX(-50%) translateY(-70%);
    }
    
    .grid-overlay {
        background-size: 30px 30px;
        opacity: 0.7;
    }
    
    .hero-content {
        padding: 0 0.75rem;
    }
    
    .hero-badge {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 12vw, 3.5rem);
        margin-bottom: 0.75rem;
        line-height: 1.05;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4.5vw, 1.125rem);
        line-height: 1.4;
        margin-bottom: 1.75rem;
        padding: 0 0.5rem;
    }
    
    .hero-cta {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .btn-heroo {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        max-width: 280px;
        min-height: 48px;
    }
    
    .floating-element {
        width: 2px;
        height: 2px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero {
        padding: 0.25rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-badge {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
        gap: 0.375rem;
    }
    
    .badge-dot {
        width: 6px;
        height: 6px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 14vw, 3rem);
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 5vw, 1rem);
        margin-bottom: 1.5rem;
        line-height: 1.35;
    }
    
    .btn-heroo {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        max-width: 260px;
        min-height: 44px;
    }
    
    .floating-elements {
        display: none; /* Hide on very small screens for better performance */
    }
 
}

/* Landscape mobile optimization */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        min-height: 100lvh;
    }
    
    .hero-content {
        padding: 1rem 0.75rem;
    }
    
    .hero-badge {
        margin-bottom: 1rem;
    }
    
    .hero-title {
        margin-bottom: 0.5rem;
        font-size: clamp(1.5rem, 8vw, 2.5rem);
    }
    
    .hero-subtitle {
        margin-bottom: 1.25rem;
        font-size: clamp(0.8rem, 3vw, 1rem);
    }
    
    .hero-cta {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: center;
    }
    
    .btn-heroo {
        max-width: 200px;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .hero-glow,
    .floating-element,
    .badge-dot {
        animation: none;
    }
    
    .hero-content,
    .hero-badge,
    .hero-title,
    .hero-subtitle,
    .hero-cta {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .btn-heroo {
        transition: none;
    }
    
    .btn-heroo:hover,
    .btn-heroo:focus {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-badge {
        background: rgba(255,255,255,0.15);
        border-color: rgba(255,255,255,0.3);
    }
    
    .btn-secondary-heroo {
        background: rgba(255,255,255,0.15);
        border-color: rgba(255,255,255,0.4);
    }
    
    .hero-subtitle {
        color: rgba(255,255,255,0.95);
    }
}


    .global-dot-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms ease;
    background-image: radial-gradient(circle, #ef4444 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    -webkit-mask-image: radial-gradient(100px circle at 50% 50%, black 0%, transparent 100%);
    mask-image: radial-gradient(100px circle at 50% 50%, black 0%, transparent 100%);
    z-index: -1;
}

body:hover .global-dot-background {
    opacity: 0.8;
}

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.01);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(203, 0, 0, 0.5);
            border-radius: 20px;
            padding: 32px 28px;
            position: relative;
            overflow: hidden;
            --mouse-x: 50%;
            --mouse-y: 50%;
            animation: purpleBorderPulse 3s ease infinite;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(203, 0, 0, 0.15) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 1;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        @keyframes purpleBorderPulse {
            0%, 100% {
                border-color: rgba(203, 0, 0, 0.3);
            }
            50% {
                border-color: rgba(203, 0, 0, 0.9);
            }
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.01);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

        .icon {
            width: 24px;
            height: 24px;
            fill: rgb(203, 0, 0);
            transition: fill 0.3s ease;
        }

        .feature-title {
            font-size: 20px;
            font-weight: 600;
            color: white;
            margin-bottom: 12px;
            line-height: 1.3;
            position: relative;
            z-index: 2;
        }

        .feature-description {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
        }
          .navbar {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 95%;
            max-width: 1200px;
            background: transparent;
            backdrop-filter: blur(20px);
            border-radius: 35px;
            padding: 12px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        @keyframes navbarEntry {
            0% {
                opacity: 0;
                transform: translateX(-50%) translateY(-100px) scale(0.8);
            }
            100% {
                opacity: 1;
                transform: translateX(-50%) translateY(0) scale(1);
            }
        }

        .navbar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            transition: left 0.5s;
        }

        .navbar:hover::before {
            left: 100%;
        }

        .navbar:hover {
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 
                0 16px 64px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.1);
            transform: translateX(-50%) translateY(-2px) scale(1.02);
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #ffffff;
            font-weight: 800;
            font-size: 28px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 2;
        }

        .logo::before {
            content: '';
            position: absolute;
            inset: -4px;
            background: linear-gradient(45deg, #ff6b6b, #cd4e4e, #d14545, #ce9696, #fe5757);
            border-radius: 12px;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: -1;
            filter: blur(8px);
        }

        @keyframes rainbow {
            0% { filter: blur(12px) hue-rotate(0deg); }
            100% { filter: blur(12px) hue-rotate(360deg); }
        }

        .logo img {
            width: 40px;
            height: 40px;
            margin-right: 12px;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .logo:hover img {
            transform: rotate(360deg) scale(1.1);
        }

        .logo span {
            background: linear-gradient(135deg, #992929 0%, #a11d1d 50%, #962424 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 40px;
            list-style: none;
            margin-left: auto;
        }

        .icon-buttons {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-left: 24px;
        }

        .nav-links a:not(.btn-cart):not(.btn-login) {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            padding: 8px 16px;
            border-radius: 20px;
        }

        .nav-links a:not(.btn-cart):not(.btn-login)::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 20px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .nav-links a:not(.btn-cart):not(.btn-login):hover::before {
            opacity: 1;
        }

        .nav-links a:not(.btn-cart):not(.btn-login):hover {
            color: rgba(255, 255, 255, 1);
            transform: translateY(-2px);
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .nav-links a:not(.btn-cart):not(.btn-login)::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 4px;
            left: 50%;
            background: linear-gradient(90deg, #ff6b6b, #cd4e4e);
            border-radius: 2px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(-50%);
        }

        .nav-links a:not(.btn-cart):not(.btn-login):hover::after {
            width: calc(100% - 32px);
            box-shadow: 0 0 8px rgba(255, 107, 107, 0.5);
        }

        .btn-cart, .btn-login {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            cursor: pointer;
            overflow: hidden;
        }

        .btn-cart::before, .btn-login::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            border-radius: 50%;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translate(-50%, -50%);
        }

        .btn-cart:hover::before, .btn-login:hover::before {
            width: 120%;
            height: 120%;
        }

        .btn-cart:hover, .btn-login:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            color: rgba(255, 255, 255, 1);
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-cart:active, .btn-login:active {
            transform: scale(1.05) rotate(0deg);
        }

        .btn-cart i, .btn-login i {
            font-size: 18px;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .btn-cart:hover i, .btn-login:hover i {
            animation: bounce 0.6s ease;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-6px); }
            60% { transform: translateY(-3px); }
        }

        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 4px 12px rgba(238, 90, 36, 0.4); }
            50% { transform: scale(1.1); box-shadow: 0 6px 16px rgba(238, 90, 36, 0.6); }
            100% { transform: scale(1); box-shadow: 0 4px 12px rgba(238, 90, 36, 0.4); }
        }

        .mobile-menu {
            display: none;
            cursor: pointer;
            padding: 12px;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .mobile-menu::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .mobile-menu:hover::before {
            opacity: 1;
        }

        .mobile-menu:hover {
            transform: scale(1.05);
        }

        .hamburger {
            width: 24px;
            height: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
        }

        .hamburger span {
            width: 100%;
            height: 3px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scale(0);
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .mobile-nav {
            display: none;
            position: absolute;
            top: calc(100% + 16px);
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(25px) saturate(180%);
            border-radius: 24px;
            padding: 24px;
            box-shadow: 
                0 16px 64px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transform: translateY(-10px) scale(0.95);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-nav.active {
            display: block;
            transform: translateY(0) scale(1);
            opacity: 1;
            animation: mobileNavSlide 0.4s ease-out;
        }

        @keyframes mobileNavSlide {
            0% {
                transform: translateY(-20px) scale(0.9);
                opacity: 0;
            }
            100% {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }

        .mobile-nav .nav-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 24px;
        }

        .mobile-nav .nav-section:last-child {
            margin-bottom: 0;
        }

        .mobile-nav a, .mobile-nav button {
            text-decoration: none;
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            font-size: 16px;
            padding: 12px 16px;
            text-align: left;
            cursor: pointer;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .mobile-nav a::before, .mobile-nav button::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            opacity: 0;
            transition: all 0.3s ease;
        }

        .mobile-nav a:hover::before, .mobile-nav button:hover::before {
            opacity: 1;
        }

        .mobile-nav a:hover, .mobile-nav button:hover {
            color: rgba(255, 255, 255, 1);
            transform: translateX(8px);
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 16px 24px;
                width: 90%;
            }

            .nav-links {
                display: none;
            }
       .logo span {
    display: none;
}
       .hero-badge {
    display: none;
}
    
  .global-dot-background {
    display: none;
}
            .mobile-menu {
                display: block;
            }

            .content h1 {
                font-size: 2rem;
            }

            .content p {
                font-size: 1rem;
            }
        }
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 60px;
  position: relative;
}

/* Title Container with Optional Line Decoration */
.section-title-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Main Title Styling */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
  padding: 0;
  position: relative;
  color: #f4f4f5;
  background: linear-gradient(to right, rgba(244, 244, 245, 1), rgba(244, 244, 245, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Title Badge - Small Label Above Title */
.section-badge {
  display: inline-block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 600;
  padding-top: 160px;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-subtitle {
  max-width: 600px;
  margin: 0.75rem auto 0;
  font-size: 1rem;
  color: rgba(244, 244, 245, 0.6);
  line-height: 1.6;
}

.title-underline {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  overflow: visible;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-title-container::before,
  .section-title-container::after {
    max-width: 60px;
  }
  
  .section-title-container::before {
    margin-right: 1rem;
  }
  
  .section-title-container::after {
    margin-left: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-title-container::before,
  .section-title-container::after {
    max-width: 40px;
  }
  
  .section-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
  }
}
/* Preloader Overlay */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh; /* mobile-friendly full viewport height */
  background: #030303;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.5s ease;
  color: white;
}

/* Preloader content wrapper - center everything */
.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Spinner */
.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top: 6px solid #ae00ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Loading Text */
.loading-text {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

/* Hide everything except preloader initially */
body.loading > *:not(#preloader) {
  visibility: hidden;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .spinner {
    width: 35px;
    height: 35px;
    border-width: 4px;
  }

  .loading-text {
    font-size: 14px;
  }
}
.status-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  background-color: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  text-decoration: none;
  color: white;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 16px;
}

.status-card:hover {
  border-color: #ff0000;
  box-shadow: 0 4px 12px rgba(230, 57, 57, 0.3);
}

.product-name {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  position: relative;
}

.status-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.shield-icon {
  color: var(--status-color);
  stroke: var(--status-color);
  position: relative;
  z-index: 2;
}

.status-icon::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: 30px;
  height: 30px;
  background-color: var(--status-color);
  opacity: 0.2;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  z-index: 1;
}

.status-text {
  font-weight: 600;
  color: var(--status-color);
  font-size: 0.875rem;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
        .backdrop-blur-lg {
            backdrop-filter: blur(16px);
        }
        
        .transition-all {
            transition: all 0.3s ease;
        }
        
        .modal-enter {
            opacity: 0;
            transform: translateY(16px) scale(0.95);
        }
        
        .modal-enter-active {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        
        .modal-leave {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        
        .modal-leave-active {
            opacity: 0;
            transform: translateY(16px) scale(0.95);
        }
        
        .text-t-primary {
            color: white;
        }
        
        .text-t-accent {
            color: white;
        }
        
        .text-accent-100 {
            color: rgb(219, 234, 254);
        }
        
        .text-accent-500 {
            color: rgb(204, 0, 0);
        }
        
        .bg-accent-500 {
            background-color: rgb(204, 0, 0);
        }
        
        .bg-accent-600 {
            background-color: rgb(235, 37, 37);
        }
        
        .border-accent-500 {
            border-color: rgb(204, 0, 0);
        }
        
        .hover\:text-accent-500:hover {
            color: rgb(204, 0, 0);
        }
        
        .hover\:bg-accent-600:hover {
            background-color: rgb(204, 0, 0);
        }
        
        .hover\:bg-accent-500\/50:hover {
            background-color: rgba(204, 0, 0, 0.5);
        }
.products-container {
            justify-content: center;
            max-width: 1600px;
          background: rgb(31, 31, 31, 0.3);
         margin: 0 auto;
         border-radius: 12px;
         padding: 2rem;
         border: 2px solid rgba(255, 255, 255, 0.1);
}