body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* LIVE DOT */
.live-dot {
    position: relative;
    width: 8px;
    height: 8px;
    background: #e11d2e;
    border-radius: 50%;
}

.live-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #e11d2e;
    animation: ping 1.2s infinite;
    opacity: 0.6;
}

@keyframes ping {
    0% { transform: scale(1); opacity: 0.6; }
    80%, 100% { transform: scale(2.5); opacity: 0; }
}



@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.animate-spin-slow {
    animation: spin-slow 18s linear infinite;
}

/* reverse spin */
@keyframes spin-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}
.animate-spin-reverse {
    animation: spin-reverse 25s linear infinite;
}

/* floating cards */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-float {
    animation: float 4s ease-in-out infinite;
}
.animate-float-delayed {
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}


/* sports */

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.animate-marquee {
    display: inline-block;
    animation: marquee 15s linear infinite;
}


/* Category */

.masonry {
    column-count: 1;
    column-gap: 1rem;
}

@media (min-width: 768px) {
    .masonry { column-count: 2; }
}

@media (min-width: 1280px) {
    .masonry { column-count: 3; }
}

.break-inside {
    break-inside: avoid;
    margin-bottom: 1rem;
}

.glow-hover:hover {
    transform: translateY(-3px) scale(1.01);
    transition: 0.3s ease;
}

.live-pulse {
    width: 8px;
    height: 8px;
    background: red;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.4; }
    100% { transform: scale(0.9); opacity: 1; }
}



/* 404 */

/* SLOW SPIN */
@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.animate-spin-slow {
    animation: spinSlow 12s linear infinite;
}

/* GLITCH EFFECT */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: "404";
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.glitch::before {
    animation: glitchTop 2s infinite linear alternate-reverse;
    color: #e11d2e;
    z-index: -1;
}

.glitch::after {
    animation: glitchBottom 2s infinite linear alternate-reverse;
    color: #0b0d3b;
    z-index: -2;
}

@keyframes glitchTop {
    0% { transform: translate(0,0); }
    20% { transform: translate(-5px,-5px); }
    40% { transform: translate(-5px,5px); }
    60% { transform: translate(5px,-5px); }
    80% { transform: translate(5px,5px); }
    100% { transform: translate(0,0); }
}

@keyframes glitchBottom {
    0% { transform: translate(0,0); }
    20% { transform: translate(5px,5px); }
    40% { transform: translate(5px,-5px); }
    60% { transform: translate(-5px,5px); }
    80% { transform: translate(-5px,-5px); }
    100% { transform: translate(0,0); }
}


/* Contact */

/* FLOATING ANIMATION */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* DELAYS */
.delay-200 {
    animation-delay: 0.2s;
}
.delay-400 {
    animation-delay: 0.4s;
}


/* About */

/* SLIDE LINE */
@keyframes slide {
    0% { transform: translateX(-100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}
.animate-slide {
    animation: slide 2s ease forwards;
}

/* ZOOM IMAGE */
@keyframes zoom {
    0% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.animate-zoom {
    animation: zoom 6s ease forwards;
}

/* CARDS */
.card {
    padding: 30px;
    background: white;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    color: #0b0d3b;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}
.card:hover {
    transform: translateY(-10px);
}

/* SERVICES */
.service {
    padding: 20px 25px;
    background: #f9fafb;
    border-radius: 999px;
    text-align: center;
    font-weight: 500;
    transition: 0.3s;
}
.service:hover {
    background: #0b0d3b;
    color: white;
}

/* PROGRAMS */
.program {
    padding: 25px;
    background: white;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.program:hover {
    transform: scale(1.05);
}