/* drops.css - Avant-Garde Release Timeline */

:root {
    --drop-card-bg: rgba(10, 10, 15, 0.9);
    --drop-card-border: rgba(0, 243, 255, 0.1);
    --drop-accent: #00f3ff;
    --drop-accent-secondary: #bc13fe;
    --drop-text-muted: #6b7280;
}

/* Wrapper styles (scoped to drops page) */
.drops-page-wrapper {
    background-color: transparent;
    /* Inherits from body */
    background-image: radial-gradient(circle at 50% 0%, rgba(0, 243, 255, 0.05) 0%, transparent 50%);
    min-height: 100vh;
}

/* Timeline Container */
.cyber-stream {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: 100vh;
}

/* Central Line */
.cyber-stream::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    /* Mobile alignment */
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,
            transparent 0%,
            var(--drop-accent) 20%,
            var(--drop-accent-secondary) 80%,
            transparent 100%);
    opacity: 0.3;
    z-index: 0;
}

@media (min-width: 768px) {
    .cyber-stream::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Month Headers */
.stream-month-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 4rem 0 2rem 0;
    padding: 1rem;
}

.month-badge {
    display: inline-block;
    background: #000;
    border: 1px solid var(--drop-accent);
    color: var(--drop-accent);
    padding: 0.5rem 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

/* Navigation Header (Sticky) */
.drops-nav {
    position: sticky;
    top: 80px;
    /* Adjust based on main header height */
    z-index: 40;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.drops-nav-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.nav-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
}

.nav-btn:hover {
    border-color: var(--drop-accent);
    color: var(--drop-accent);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

/* Game Card Groups (Days) */
.stream-day-group {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .stream-day-group {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 4rem;
        /* Space for center line */
    }

    .day-marker {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        z-index: 10;
        background: #000;
        border: 1px solid var(--drop-accent-secondary);
        color: #fff;
        width: 3rem;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Rajdhani', sans-serif;
        font-weight: 700;
        border-radius: 50%;
        /* Circle or keep square? Let's go Hexagon-ish via clip-path later, square for now */
        box-shadow: 0 0 10px rgba(188, 19, 254, 0.3);
    }

    .day-content-left,
    .day-content-right {
        flex: 1;
        max-width: 350px;
    }

    .day-content-left {
        text-align: right;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .day-content-right {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Game Card */
.drop-card {
    background: var(--drop-card-bg);
    border: 1px solid var(--drop-card-border);
    border-radius: 4px;
    /* Minimal */
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.drop-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--drop-accent);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.15);
}

.drop-image-container {
    height: 180px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.drop-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.drop-card:hover .drop-image {
    transform: scale(1.1);
}

.drop-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 1rem;
    z-index: 2;
}

.drop-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

.drop-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--drop-text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hype-meter {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.fire-icon {
    color: var(--drop-accent-secondary);
    width: 12px;
    height: 12px;
}

/* Horizon Section */
.horizon-section {
    position: relative;
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.horizon-title {
    text-align: center;
    font-family: 'SD Dystopian', sans-serif;
    font-size: 3rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--drop-accent-secondary);
    opacity: 0.5;
    margin-bottom: 3rem;
}

.horizon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.horizon-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(188, 19, 254, 0.2);
    padding: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.horizon-card:hover {
    border-color: var(--drop-accent-secondary);
    background: rgba(188, 19, 254, 0.05);
}

.horizon-year {
    font-family: 'JetBrains Mono', monospace;
    color: var(--drop-accent-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

/* Custom Scrollbar for container if needed */
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}