/* ==========================================================
   EzzyGameStats - Game of the Year (GOTY) Stylesheet
   Theme: Sleek Dark Gaming with Gold/Amber Accents & Glassmorphism
   ========================================================== */

:root {
    --goty-gold: #f59e0b;
    --goty-gold-light: #fbbf24;
    --goty-gold-glow: rgba(245, 158, 11, 0.35);
    --goty-dark-bg: #121318;
    --goty-card-bg: rgba(26, 29, 38, 0.85);
    --goty-card-border: rgba(255, 255, 255, 0.08);
    --goty-accent-blue: #3b82f6;
    --goty-accent-purple: #8b5cf6;
    --goty-text-main: #f3f4f6;
    --goty-text-muted: #9ca3af;
}

/* Hero Section for GOTY Index */
.goty-hero-section {
    position: relative;
    background: radial-gradient(circle at 50% 20%, rgba(245, 158, 11, 0.15) 0%, rgba(18, 19, 24, 0.98) 75%), #0c0d12;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    padding: 3.5rem 0 3rem;
    overflow: hidden;
}

.goty-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.1) 100%);
    border: 1px solid var(--goty-gold);
    color: var(--goty-gold-light);
    padding: 6px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 0 15px var(--goty-gold-glow);
    margin-bottom: 1rem;
}

.goty-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 1rem;
    background: linear-gradient(135deg, #ffffff 30%, var(--goty-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 20px rgba(245, 158, 11, 0.2);
}

.goty-hero-subtitle {
    color: var(--goty-text-muted);
    font-size: 1.15rem;
    max-width: 750px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Latest Winner Highlight Banner */
.latest-winner-card {
    background: linear-gradient(135deg, rgba(30, 34, 48, 0.9) 0%, rgba(18, 20, 28, 0.95) 100%);
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: 20px;
    padding: 2.2rem;
    margin: 2rem auto;
    max-width: 1000px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 158, 11, 0.15);
    position: relative;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.latest-winner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(245, 158, 11, 0.25);
    border-color: var(--goty-gold);
}

.latest-winner-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (max-width: 850px) {
    .latest-winner-grid {
        grid-template-columns: 1fr;
    }
}

.winner-visual-box {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #0f1118;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.winner-visual-icon {
    font-size: 5rem;
    color: var(--goty-gold);
    text-shadow: 0 0 25px var(--goty-gold-glow);
}

.winner-year-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #000;
    color: var(--goty-gold);
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.85rem;
    border: 1px solid var(--goty-gold);
}

.winner-details h3 {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    color: #fff;
}

.winner-meta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1rem 0 1.2rem;
}

.winner-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 0.85rem;
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.winner-chip i {
    color: var(--goty-gold);
}

/* Fast Navigation & Stats Bar */
.goty-stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.goty-stat-card {
    background: var(--goty-card-bg);
    border: 1px solid var(--goty-card-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(8px);
}

.goty-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--goty-gold-light);
    margin-bottom: 0.25rem;
}

.goty-stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--goty-text-muted);
    letter-spacing: 1px;
}

/* Search and Filters */
.goty-filter-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0 2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.goty-search-input {
    background: rgba(15, 17, 24, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    min-width: 260px;
    outline: none;
    transition: border-color 0.2s;
}

.goty-search-input:focus {
    border-color: var(--goty-gold);
    box-shadow: 0 0 10px var(--goty-gold-glow);
}

.goty-btn-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000 !important;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.goty-btn-gold:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 4px 20px var(--goty-gold-glow);
    transform: translateY(-2px);
}

.goty-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.goty-btn-outline:hover {
    border-color: var(--goty-gold);
    color: var(--goty-gold-light) !important;
    background: rgba(245, 158, 11, 0.1);
}

/* Grid of GOTY Years */
.goty-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
    margin-bottom: 4rem;
}

.goty-year-card {
    background: var(--goty-card-bg);
    border: 1px solid var(--goty-card-border);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.goty-year-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--goty-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.goty-year-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.1);
}

.goty-year-card:hover::before {
    opacity: 1;
}

.goty-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.goty-card-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--goty-gold-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.goty-card-score {
    background: rgba(245, 158, 11, 0.15);
    color: var(--goty-gold-light);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 2px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
}

.goty-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #ffffff;
}

.goty-card-studio {
    font-size: 0.9rem;
    color: var(--goty-text-muted);
    margin-bottom: 1rem;
}

.goty-card-nominees-preview {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    color: #cbd5e1;
}

.goty-card-nominees-preview strong {
    color: #e2e8f0;
    display: block;
    margin-bottom: 4px;
}

/* ==========================================================
   INDIVIDUAL GOTY PAGE SPECIFIC STYLES
   ========================================================== */

.single-goty-hero {
    background: radial-gradient(circle at 75% 20%, rgba(245, 158, 11, 0.18) 0%, rgba(15, 17, 24, 0.98) 70%), #0c0d12;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    padding: 4rem 0 3.5rem;
}

.single-goty-header-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .single-goty-header-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.goty-trophy-display {
    background: linear-gradient(135deg, rgba(30, 34, 48, 0.8) 0%, rgba(20, 22, 32, 0.95) 100%);
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(245, 158, 11, 0.15);
}

.goty-trophy-icon {
    font-size: 6rem;
    color: var(--goty-gold);
    text-shadow: 0 0 30px var(--goty-gold-glow);
    margin-bottom: 1rem;
}

.goty-info-box {
    background: var(--goty-card-bg);
    border: 1px solid var(--goty-card-border);
    border-radius: 14px;
    padding: 1.75rem;
    margin-bottom: 2rem;
}

.goty-info-box h3 {
    margin-top: 0;
    color: var(--goty-gold-light);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
}

/* Ceremony Meta Grid */
.ceremony-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.ceremony-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem;
}

.ceremony-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--goty-text-muted);
    margin-bottom: 0.35rem;
}

.ceremony-val {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

/* Nominees Comparison Grid */
.nominees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0 2.5rem;
}

.nominee-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.nominee-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.nominee-card.is-winner {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(26, 29, 38, 0.9) 100%);
    border: 1.5px solid var(--goty-gold);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.nominee-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.nominee-status.winner {
    background: var(--goty-gold);
    color: #000;
}

.nominee-status.nominee {
    background: rgba(255, 255, 255, 0.1);
    color: var(--goty-text-muted);
}

.nominee-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: #fff;
}

.nominee-meta {
    font-size: 0.85rem;
    color: var(--goty-text-muted);
    margin-bottom: 0.75rem;
}

/* Why It Won Analysis Section */
.why-won-article {
    line-height: 1.8;
    color: #e2e8f0;
    font-size: 1.05rem;
}

.why-won-article p {
    margin-bottom: 1.25rem;
}

.why-won-keypoint {
    background: rgba(245, 158, 11, 0.06);
    border-left: 4px solid var(--goty-gold);
    border-radius: 0 10px 10px 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.why-won-keypoint h4 {
    margin: 0 0 0.5rem;
    color: var(--goty-gold-light);
    font-size: 1.1rem;
}

/* Other Awards List */
.awards-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1rem 0;
}

.award-pill {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.award-pill.won {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
    color: var(--goty-gold-light);
    font-weight: 600;
}

/* GOTY Nav Prev/Next Bar */
.goty-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 3rem;
}

.goty-nav-item {
    display: flex;
    flex-direction: column;
}

.goty-nav-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--goty-text-muted);
    letter-spacing: 1px;
}

.goty-nav-link {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.goty-nav-link:hover {
    color: var(--goty-gold-light);
}
