/* =====================================================
   2026 AGÜ VİZYONER ÖDÜLLERİ
   Luxury Award Voting Platform
   Dark + Gold Design System
   ===================================================== */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Gold Palette */
    --gold-primary: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-dark: #8B7355;
    --gold-muted: #A69060;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    --gold-gradient-hover: linear-gradient(135deg, #F4E4BC 0%, #D4AF37 50%, #F4E4BC 100%);
    --gold-radial: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);

    /* Background Colors */
    --bg-primary: #0A0A0A;
    --bg-secondary: #0F0F0F;
    --bg-card: #141414;
    --bg-card-hover: #1A1A1A;
    --bg-elevated: #1E1E1E;
    --bg-modal: rgba(5, 5, 5, 0.95);

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #C8C8C8;
    --text-muted: #888888;
    --text-gold: var(--gold-primary);

    /* Effects */
    --glow-gold-sm: 0 0 15px rgba(212, 175, 55, 0.2);
    --glow-gold-md: 0 0 30px rgba(212, 175, 55, 0.3);
    --glow-gold-lg: 0 0 60px rgba(212, 175, 55, 0.4);
    --border-gold: 1px solid rgba(212, 175, 55, 0.3);
    --border-gold-hover: 1px solid rgba(212, 175, 55, 0.6);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-elevated: 0 8px 48px rgba(0, 0, 0, 0.7);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ==================== AMBIENT BACKGROUND ==================== */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 115, 85, 0.1) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: -7s;
}

.gradient-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    33% {
        transform: translateY(-30px) scale(1.05);
    }

    66% {
        transform: translateY(20px) scale(0.95);
    }
}

/* ==================== MAIN CONTAINER ==================== */
.main-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) 0;
    position: relative;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Award Emblem */
.award-emblem {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-lg);
    animation: pulse 3s ease-in-out infinite;
}

.emblem-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Hero Year */
.hero-year {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: var(--gold-primary);
    letter-spacing: 0.5em;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 8vw, 5rem);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
    animation: shimmer 3s ease-in-out infinite;
}

.title-accent {
    font-size: clamp(3rem, 10vw, 6rem);
    font-style: italic;
}

@keyframes shimmer {

    0%,
    100% {
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.5));
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Hero Divider */
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.divider-line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.divider-diamond {
    color: var(--gold-primary);
    font-size: 0.75rem;
}

/* Hero CTA */
.hero-cta {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* ==================== CATEGORIES SECTION ==================== */
.categories-section {
    padding: var(--space-3xl) 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 500;
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: var(--space-2xl);
    letter-spacing: 0.1em;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

/* Category Card */
.category-card {
    position: relative;
    background: var(--bg-card);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-base);
    animation: fadeInUp 0.6s ease-out both;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-radial);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.category-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
    box-shadow: var(--glow-gold-md), var(--shadow-card);
}

.category-card:hover::before,
.category-card:hover::after {
    opacity: 1;
}

.category-card:nth-child(1) {
    animation-delay: 0.1s;
}

.category-card:nth-child(2) {
    animation-delay: 0.15s;
}

.category-card:nth-child(3) {
    animation-delay: 0.2s;
}

.category-card:nth-child(4) {
    animation-delay: 0.25s;
}

.category-card:nth-child(5) {
    animation-delay: 0.3s;
}

.category-card:nth-child(6) {
    animation-delay: 0.35s;
}

/* Category Card Icon */
.category-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
    color: var(--gold-primary);
    transition: transform var(--transition-bounce);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

/* Category Card Content */
.category-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.category-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Category Status Badge */
.category-status {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    padding: 0.375rem 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--gold-primary);
}

.category-status.voted {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

/* Locked Category Card */
.category-card.locked {
    cursor: default;
    opacity: 0.85;
}

.category-card.locked:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(76, 175, 80, 0.3);
}

.category-card.locked::before,
.category-card.locked::after {
    display: none;
}

.voted-info {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.voted-info .lock-icon {
    width: 14px;
    height: 14px;
    color: #4CAF50;
}

.voted-info strong {
    color: #4CAF50;
    font-weight: 500;
}

/* ==================== MODAL STYLES ==================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-modal);
    backdrop-filter: blur(8px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--bg-secondary);
    border: var(--border-gold);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-base);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: var(--border-gold);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-content {
    padding: var(--space-2xl);
    overflow-y: auto;
    max-height: 90vh;
}

.modal-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
}

.modal-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

/* ==================== NOMINEES GRID ==================== */
.nominees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

/* Nominee Card */
.nominee-card {
    position: relative;
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    cursor: pointer;
    transition: all var(--transition-base);
    overflow: hidden;
}

.nominee-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-radial);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.nominee-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(212, 175, 55, 0.3);
}

.nominee-card.selected {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: var(--glow-gold-sm);
}

.nominee-card.selected::before {
    opacity: 1;
}

/* Nominee Image */
.nominee-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-sm);
    background: var(--bg-elevated);
}

.nominee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.nominee-card:hover .nominee-image img {
    transform: scale(1.05);
}

/* Nominee Image Placeholder */
.nominee-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
}

.nominee-image-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    opacity: 0.5;
}

/* Selection Indicator */
.selection-indicator {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.5);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.nominee-card.selected .selection-indicator {
    background: var(--gold-gradient);
    border-color: var(--gold-primary);
}

.selection-indicator svg {
    width: 14px;
    height: 14px;
    color: var(--bg-primary);
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-bounce);
}

.nominee-card.selected .selection-indicator svg {
    opacity: 1;
    transform: scale(1);
}

/* Nominee Name */
.nominee-name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    transition: color var(--transition-base);
}

.nominee-card.selected .nominee-name {
    color: var(--gold-primary);
}

/* Nominee Work */
.nominee-work {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.25rem;
}

/* ==================== VOTE BUTTON ==================== */
.vote-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--space-md) var(--space-xl);
    background: var(--gold-gradient);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--bg-primary);
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-base);
}

.vote-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.vote-button:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold-md);
}

.vote-button:not(:disabled):active {
    transform: translateY(0);
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.vote-button:not(:disabled):hover .button-shimmer {
    left: 100%;
}

/* ==================== CONFIRMATION MODAL ==================== */
.confirmation-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-modal);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.confirmation-overlay.active {
    opacity: 1;
    visibility: visible;
}

.confirmation-container {
    text-align: center;
    transform: scale(0.8);
    transition: transform var(--transition-bounce);
}

.confirmation-overlay.active .confirmation-container {
    transform: scale(1);
}

.confirmation-content {
    padding: var(--space-2xl);
}

/* Checkmark Animation */
.checkmark-container {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-xl);
}

.checkmark-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(var(--glow-gold-md));
}

.checkmark-circle {
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: drawCircle 0.6s ease-out 0.2s forwards;
}

.checkmark-path {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: drawCheck 0.4s ease-out 0.6s forwards;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.confirmation-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 600;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    animation: fadeInUp 0.5s ease-out 0.8s both;
}

.confirmation-message {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    animation: fadeInUp 0.5s ease-out 0.9s both;
}

.confirmation-detail {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.5s ease-out 1s both;
}

.continue-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-xl);
    background: transparent;
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold-primary);
    cursor: pointer;
    transition: all var(--transition-base);
    animation: fadeInUp 0.5s ease-out 1.1s both;
}

.continue-button:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    box-shadow: var(--glow-gold-sm);
}

/* ==================== SPONSORS SECTION ==================== */
.sponsors-section {
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

.sponsors-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.sponsors-track {
    display: flex;
    gap: var(--space-2xl);
    animation: scroll 30s linear infinite;
    width: max-content;
}

.sponsors-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.sponsor-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    background: var(--bg-card);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.sponsor-item:hover {
    background: var(--bg-card-hover);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: var(--glow-gold-sm);
}

.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-text {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.sponsor-text .gold {
    color: var(--gold-primary);
}

/* ==================== CATEGORIES PAGE (SECTION) ==================== */
.categories-page {
    position: relative;
    padding: var(--space-3xl) var(--space-lg);
    margin: var(--space-2xl) 0;
    background: var(--bg-secondary);
    border: var(--border-gold);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.categories-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
}

.categories-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.categories-page-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.page-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-primary);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.6s ease-out;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.page-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-md);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.page-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: var(--space-3xl) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: all var(--transition-base);
    animation: fadeInUp 0.5s ease-out both;
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.15s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.25s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.3s;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.faq-item.active {
    background: var(--bg-card-hover);
    border-color: var(--gold-primary);
    box-shadow: var(--glow-gold-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-item.active .faq-question {
    color: var(--gold-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--gold-primary);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== FOOTER ==================== */
.footer {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl) var(--space-md);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: var(--space-3xl);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    :root {
        --space-xl: 2rem;
        --space-2xl: 3rem;
        --space-3xl: 4rem;
    }

    .hero {
        min-height: auto;
        padding: var(--space-2xl) 0 var(--space-xl);
    }

    .award-emblem {
        width: 80px;
        height: 80px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .modal-content {
        padding: var(--space-lg);
    }

    .nominees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .nominee-card {
        padding: var(--space-sm);
    }

    .nominee-name {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .nominees-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nominee-image {
        aspect-ratio: 1;
    }

    .vote-button {
        padding: var(--space-sm) var(--space-md);
        font-size: 1rem;
    }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================== SCROLLBAR STYLING ==================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* ==================== NAVIGATION ==================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-sm) var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

.nav-logo:hover {
    color: var(--gold-primary);
}

.logo-gold {
    color: var(--gold-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-xs) 0;
    position: relative;
    transition: color var(--transition-base);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-primary);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-primary);
    transition: all var(--transition-base);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1rem;
    }
}

/* ==================== PAGE CONTAINER ==================== */
.page-container {
    padding-top: 100px;
    min-height: 100vh;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    text-align: center;
    padding: var(--space-2xl) 0;
    animation: fadeInUp 0.6s ease-out;
}

.page-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-primary);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-md);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.page-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-md);
}

.page-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

/* ==================== HERO BUTTON ==================== */
.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-2xl);
    background: var(--gold-gradient);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--bg-primary);
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: all var(--transition-base);
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold-md);
}

.hero-button .button-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-button:hover .button-shimmer {
    left: 100%;
}

/* ==================== QUICK LINKS ==================== */
.quick-links-section {
    padding: var(--space-2xl) 0;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.quick-link-card {
    display: block;
    background: var(--bg-card);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-base);
}

.quick-link-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
    box-shadow: var(--glow-gold-md);
}

.quick-link-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    color: var(--gold-primary);
}

.quick-link-icon svg {
    width: 100%;
    height: 100%;
}

.quick-link-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.quick-link-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
    margin-top: var(--space-2xl);
    background: var(--bg-card);
    border: var(--border-gold);
    border-radius: var(--radius-xl);
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--gold-primary);
    margin-bottom: var(--space-sm);
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: var(--space-sm) var(--space-xl);
    background: transparent;
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold-primary);
    text-decoration: none;
    transition: all var(--transition-base);
}

.cta-button:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    box-shadow: var(--glow-gold-sm);
}