/* ============================================
   EAGLE ESPORTS - GLOBAL STYLES (style.css)
   Used by index.html
   ============================================ */

/* --- Scrollbar Utility --- */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* --- Timeline Layout (Guest View) --- */
#scrims-timeline-container {
    position: relative;
}

.timeline-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    display: none;
}

@media (min-width: 768px) {
    .timeline-spine {
        display: block;
    }
}

.timeline-node {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border-width: 3px;
    z-index: 10;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 1);
}

@media (min-width: 768px) {
    .timeline-node {
        display: block;
    }
}

.timeline-connector {
    display: none;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    z-index: 5;
}

@media (min-width: 768px) {
    .left-card .timeline-connector {
        display: block;
        right: -40px;
    }

    .right-card .timeline-connector {
        display: block;
        left: -40px;
    }
}

/* --- My Matches - Ticket Card --- */
.match-ticket {
    width: 260px;
    min-height: 130px;
    background: white;
    border-radius: 1.25rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.match-ticket:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* --- Animations --- */
.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Selection --- */
::selection {
    background-color: #FF6B35;
    color: white;
}

/* --- Font Gaming (Orbitron fallback class) --- */
.font-gaming {
    font-family: 'Orbitron', 'Outfit', sans-serif;
}