@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/poppins-v24-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/poppins-v24-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/poppins-v24-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/poppins-v24-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/poppins-v24-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/poppins-v24-latin-800.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/poppins-v24-latin-900.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-v24-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-v24-latin-700.woff2') format('woff2');
}


body {
    font-family: 'Poppins', sans-serif;
    background-color: #050505;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.03em; 
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #050505; 
}

::-webkit-scrollbar-thumb {
    background: #222; 
    border-radius: 5px;
    border: 2px solid #050505; 
}

::-webkit-scrollbar-thumb:hover {
    background: #7546E8; 
}


.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(0px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: none;
}

.glass-card:hover {
    background: rgba(117, 70, 232, 0.05);
    border-color: rgba(117, 70, 232, 0.4);
    transform: translateY(-8px);
        box-shadow: 0 0 10px rgba(117, 70, 232, 0.3);
}

    .group.active {
        border-color: #7546E8 !important;  
        transform: translateY(-8px);        
        box-shadow: 0 0 10px rgba(117, 70, 232, 0.3); 
    }

.glass-card img, 
.glass-card video {
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.gradient-text-purple {
    background: linear-gradient(135deg, #ffffff 30%, #7546E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.purple-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #7546E8;
    filter: blur(140px);
    opacity: 0.12;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.counter-value {
    font-variant-numeric: tabular-nums;
}

::selection {
    background: #7546E8;
    color: white;
}


@keyframes scan-line {
    0% { transform: translateX(-100%); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateX(300%); opacity: 0; }
}

.animate-scan-line {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    animation: scan-line 4s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
    will-change: transform;
}


@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: marquee 15s linear infinite; 
}

 html, body {
            max-width: 100% !important;
            overflow-x: hidden !important;
            position: relative;
        }



@media (max-width: 768px) {
    .backdrop-blur-md, 
    .backdrop-blur-sm,
    .glass-card {
        backdrop-filter: none !important;
        background-color: rgba(10, 10, 10, 0.95) !important; 
    }
}