@font-face {
    font-family: 'StretchPro';
    src: url('/StretchPro.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #100c08;
    --secondary-bg: #1a140d;
    --accent-color: #f7d04b;
    --accent-secondary: #ffde7a;
    --accent-tertiary: #c9b394;
    --accent-quaternary: #FFFC90;
    --text-primary: #fffcf5;
    --text-secondary: #c9b394;
    --border-color: #4a3c23;
    --gradient-1: linear-gradient(135deg, #f7d04b 0%, #ffde7a 100%);
    --gradient-2: linear-gradient(135deg, #ffde7a 0%, #c9b394 100%);
    --gradient-3: linear-gradient(135deg, #f7d04b 0%, #c9b394 100%);
}

body {
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(26, 20, 13, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    gap: 20px;
}

.nav-container:hover {
    background: rgba(26, 20, 13, 1);
    border-color: var(--accent-color);
}

.nav-left, .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center {
    flex-shrink: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.logo-text {
    font-family: 'StretchPro', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.nav-news-ticker {
    height: 42px;
    padding: 0 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    overflow: hidden;
    color: var(--text-secondary);
}

.nav-news-ticker:hover, .nav-news-ticker.is-open {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-secondary);
}

.news-icon {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: pulse-text 2s infinite;
}

@keyframes pulse-text {
    0% { color: var(--text-secondary); }
    50% { color: var(--accent-color); }
    100% { color: var(--text-secondary); }
}

.news-short {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.9rem;
}

.news-dropdown {
    position: fixed;
    top: 95px;
    left: 50%;
    transform: translate(-50%, -20px) scale(0.95);
    transform-origin: top center;
    width: 90%;
    max-width: 450px;
    padding: 25px;
    background: rgba(26, 20, 13, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.news-dropdown.is-open {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, 0) scale(1);
}

.news-dropdown p {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.5;
}

.news-dropdown pre.ascii-art {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.55rem;
    line-height: 1.2;
    text-align: center;
    color: var(--text-secondary);
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    white-space: pre;
    overflow-x: auto;
}

.news-dropdown h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-news {
    background: var(--gradient-1);
    color: var(--primary-bg);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.btn-news:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(247, 208, 75, 0.3);
}

.nav-links {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: flex-end;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.hamburger-menu.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-menu.is-active span:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 12, 8, 0.98);
    backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-nav.is-active {
    transform: translateY(0);
}

.mobile-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    margin: 20px 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--text-primary);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    flex-wrap: wrap;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-bg);
    /* Grid removed for cleaner starfield effect */
}

#starfield, #nominee-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

@keyframes pan-bg {
    from { background-position: 0 0; }
    to { background-position: -480px -480px; }
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(2px);
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; right: 15%; animation-delay: 2.5s; }
.floating-icon:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 5s; }
.floating-icon:nth-child(4) { top: 80%; left: 60%; animation-delay: 1.5s; opacity: 0.15; width: 40px; height: 40px; }
.floating-icon:nth-child(5) { top: 10%; right: 40%; animation-delay: 4s; opacity: 0.1; width: 80px; height: 80px; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), var(--accent-color), transparent 50%);
    opacity: 0.15;
    filter: blur(100px);
    z-index: -1;
    transition: background 0.2s ease-out;
}

.hero-logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
    animation: logo-float 4s ease-in-out infinite;
}

@keyframes logo-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(247, 208, 75, 0.4);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero for individual pages */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(247, 208, 75, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 222, 122, 0.15) 0%, transparent 40%);
    filter: blur(50px);
}

.credits-hero {
    height: 60vh;
    min-height: 400px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#credits-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Project Scroller */
.project-scroller-header {
    height: 60vh;
    min-height: 400px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroller-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 10px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.scroller-track {
    display: flex;
    flex-shrink: 0;
    animation: scroll 60s linear infinite;
}

.scroller-track:nth-child(2) {
    animation-direction: reverse;
    animation-duration: 70s;
}
.scroller-track:nth-child(3) {
    animation-duration: 50s;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.scroller-item {
    flex: 0 0 auto;
    width: 250px;
    margin: 0 10px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    background: var(--secondary-bg);
}

.scroller-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(247, 208, 75, 0.3);
    border-color: var(--accent-color);
    z-index: 10;
}

.scroller-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.scroller-item .scroller-item-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.scroller-item:hover .scroller-item-bg {
    transform: scale(1.1);
}

.scroller-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 25%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroller-item:hover .scroller-item-overlay {
    opacity: 1;
}

.scroller-item-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
    text-align: left;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.05s;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.scroller-item:hover .scroller-item-title {
    transform: translateY(0);
}

.scroller-item-author {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    text-align: left;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s, color 0.3s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.scroller-item:hover .scroller-item-author {
    transform: translateY(0);
}

.scroller-item-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    object-fit: cover;
}

.hero-content-overlay {
    position: relative;
    z-index: 2;
    background: rgba(16, 12, 8, 0.5);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    text-align: center;
    border: 1px solid var(--border-color);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-submit {
    position: relative;
    padding: 16px 32px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.btn-primary,
.btn-submit {
    background: var(--gradient-1);
    color: var(--primary-bg);
    box-shadow: 0 10px 30px rgba(247, 208, 75, 0.2);
}

.btn-primary:hover,
.btn-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(247, 208, 75, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    background: rgba(247, 208, 75, 0.1);
    color: var(--text-primary);
    transform: translateY(-3px);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.btn-primary:hover .btn-glow,
.btn-submit:hover .btn-glow {
    width: 300px;
    height: 300px;
    opacity: 1;
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 120px 0;
    position: relative;
    background-color: var(--secondary-bg);
}

.about-intro {
    padding: 80px 0;
    background: var(--secondary-bg);
    text-align: center;
}

.about-intro .section-header {
    margin-bottom: 0;
}

.about-grid, .hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.about-card {
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.about-card:hover .card-icon {
    animation: icon-bounce 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes icon-bounce {
    0% { transform: scale(1) rotate(0deg); }
    30% { transform: scale(1.3) rotate(-8deg); }
    50% { transform: scale(0.9) rotate(8deg); }
    70% { transform: scale(1.15) rotate(-4deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Categories Section */
.categories-section {
    padding: 120px 0;
}
.categories-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: flex-start;
}
.category-column {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}
.category-column:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0, 0.1);
}
.category-column h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: 'StretchPro', sans-serif;
    letter-spacing: 1px;
    text-align: center;
}
.category-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.category-column li {
    font-size: 1.1rem;
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.3s ease;
}
.category-column li:last-child {
    border-bottom: none;
}
.category-column li:hover {
    color: var(--text-primary);
}
.category-column li.golden {
    font-weight: 700;
    color: var(--accent-tertiary);
    background: linear-gradient(135deg, #FFDE7A 0%, #F7D04B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.category-highlight {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: -10px;
    margin-bottom: 15px;
}

.category-column .category-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 400;
}

.category-column.special-category {
    background: rgba(255,255,255,0.03);
    border-style: dashed;
}

.category-column.special-category:hover {
    border-color: var(--text-secondary);
}

.category-column.special-category h3 {
    color: var(--text-secondary);
}

/* Submit Section */
.submit-intro {
    padding: 120px 0 0;
    background: var(--secondary-bg);
}

.submit-content-simple {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    background: var(--primary-bg);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    margin-top: -80px;
    position: relative;
    z-index: 5;
}

.submit-visual {
    text-align: center;
}

.submit-visual .main-award-icon {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 3;
}

.submit-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.submit-text p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

#countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.timer-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 25px;
    text-align: center;
    min-width: 100px;
}

.timer-box span {
    display: block;
}

.timer-box span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timer-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.timer-timezone {
    font-size: 1rem !important;
    color: var(--text-secondary) !important;
    text-align: center;
    margin-top: -10px;
}

/* Submission Criteria Section */
.submission-criteria-section {
    padding: 120px 0;
    background: var(--secondary-bg);
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.criteria-card {
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.criteria-card:hover {
    border-color: var(--accent-tertiary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.criteria-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.criteria-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.criteria-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: var(--primary-bg);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 100% 50%, rgba(255, 222, 122, 0.1) 0%, transparent 40%);
    filter: blur(100px);
    pointer-events: none;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    text-align: left;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-item.active .faq-question {
    color: var(--accent-color);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transform: translate(-50%, -50%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    padding-bottom: 30px;
    max-width: 95%;
}

/* Final CTA Section */
.final-cta-section {
    padding: 120px 0;
    background: var(--secondary-bg);
    text-align: center;
}

.final-cta-section .container {
    max-width: 800px;
}

.cta-content {
    background: var(--primary-bg);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 90%, var(--accent-color), transparent 30%),
        radial-gradient(circle at 90% 10%, var(--accent-tertiary), transparent 30%);
    opacity: 0.1;
    filter: blur(80px);
    animation: rotate 15s linear infinite;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Award Details Section */
.award-details {
    padding: 120px 0;
    position: relative;
}

.award-details .container {
    position: relative;
}

.award-details-sticky-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.award-details-visual {
    position: sticky;
    top: 150px;
    height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-details-visual .award-display {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.award-details-content {
    padding-top: 15vh;
    padding-bottom: 15vh;
}

.detail-step {
    padding: 15vh 0;
    opacity: 0.3;
    transition: opacity 0.4s ease;
    will-change: opacity;
}

.detail-step[data-step="1"] { padding-top: 0; }
.detail-step[data-step="3"] { padding-bottom: 0; }

.detail-step.is-active {
    opacity: 1;
}

.detail-step h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detail-step p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
}

.award-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.award-details[data-step="1"] .award-display { transform: scale(0.95) rotate(-3deg); }
.award-details[data-step="2"] .award-display { transform: scale(1.1) rotate(3deg); }
.award-details[data-step="3"] .award-display { transform: scale(1) rotate(0deg); }

.award-details[data-step="3"] .award-particles {
    transform: scale(1.5);
}

.award-particles::before,
.award-particles::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    z-index: 4;
    animation: sparkle 5s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.award-details[data-step="2"] .award-particles::before,
.award-details[data-step="3"] .award-particles::before {
    background: var(--accent-secondary);
    box-shadow: 0 0 10px var(--accent-secondary), 0 0 20px var(--accent-secondary);
    animation-delay: 0s;
    opacity: 1;
}

.award-details[data-step="2"] .award-particles::after,
.award-details[data-step="3"] .award-particles::after {
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color);
    animation-delay: -2.5s;
    animation-duration: 4.5s;
    opacity: 1;
}

@keyframes sparkle {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateY(160px) rotate(0deg) scale(0.5); opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateY(160px) rotate(-360deg) scale(1); opacity: 0; }
}

/* Hosts & Credits Section */
.hosts, .credits {
    padding: 120px 0;
}

.hosts-preview {
    padding: 120px 0;
    background: var(--primary-bg);
}

.hosts-grid-preview {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.host-card-preview {
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.host-card-preview:hover {
    transform: translateY(-10px);
}

.host-avatar-preview {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--border-color);
    margin-bottom: 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.host-card-preview:hover .host-avatar-preview {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(247, 208, 75, 0.4);
}

.host-card-preview h4 {
    font-size: 1.3rem;
    font-weight: 600;
}

.lori-card:hover .host-avatar-preview { border-color: #f7d04b; box-shadow: 0 0 20px #f7d04b66; }
.filip-card:hover .host-avatar-preview { border-color: #ffde7a; box-shadow: 0 0 20px #ffde7a66; }
.cubey-card:hover .host-avatar-preview { border-color: #c9b394; box-shadow: 0 0 20px #c9b39466; }

.view-all-cta {
    text-align: center;
    margin-top: 60px;
}

.credits-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.thanks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.thanks-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.thanks-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-secondary);
    box-shadow: 0 10px 30px rgba(255, 222, 122, 0.1);
}

.thanks-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1;
}

.thanks-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.thanks-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.single-item-grid {
    max-width: 420px;
    margin: 0 auto;
}

.host-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.host-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: conic-gradient(transparent, var(--glow-color, var(--accent-color)), transparent 30%);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.host-card:hover::before {
    opacity: 1;
}

.host-card:hover {
    transform: none;
}

@keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}

.host-card > * {
    position: relative;
    z-index: 2;
}

.host-card .host-content {
    background: var(--secondary-bg);
    border-radius: 18px;
    padding: 38px;
    margin: 2px;
    height: calc(100% - 4px);
    width: calc(100% - 4px);
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.host-avatar {
    margin: 0 auto 20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.host-profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.host-card:hover .host-profile-pic {
    transform: scale(1.1);
}

.host-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.host-role {
    color: var(--glow-color, var(--accent-color));
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.host-card p:last-child {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

/* Awards Showcase Section */
.awards-showcase {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.awards-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 252, 144, 0.03) 49%, rgba(255, 252, 144, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(247, 208, 75, 0.03) 49%, rgba(247, 208, 75, 0.03) 51%, transparent 52%);
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.showcase-text h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f7d04b 0%, #c9b394 50%, #ffde7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.showcase-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.event-highlights {
    margin-bottom: 50px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--secondary-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px) scale(1.02);
    border-color: var(--accent-secondary);
    box-shadow: 0 10px 30px rgba(0,0,0, 0.1);
}

.highlight-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: var(--primary-bg);
    border-radius: 50%;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.highlight-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.cta-section {
    text-align: center;
    padding: 40px;
    background: var(--secondary-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    margin-top: 50px;
}

.cta-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.showcase-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.award-display {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 300px;
}

.award-display::before, .award-display::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--accent-secondary);
    border-radius: 50%;
    z-index: 4;
    box-shadow: 0 0 10px var(--accent-secondary), 0 0 20px var(--accent-secondary), 0 0 30px var(--accent-secondary);
    animation: sparkle 5s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.award-display::after {
    background: var(--accent-tertiary);
    box-shadow: 0 0 10px var(--accent-tertiary), 0 0 20px var(--accent-tertiary), 0 0 30px var(--accent-tertiary);
    animation-delay: -2.5s;
    animation-duration: 4.5s;
    opacity: 0;
}

.main-award-icon {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 3;
}

.award-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(247, 208, 75, 0.2) 0%, rgba(255, 222, 122, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite alternate;
}

@keyframes pulse {
    from { transform: translate(-50%, -50%) scale(0.95); opacity: 0.7; }
    to { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

/* Footer */
.footer {
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer-logo span {
    font-family: 'StretchPro', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.footer-socials {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-socials a {
    color: var(--text-secondary);
    display: inline-flex;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-2px) scale(1.1);
}

.footer-socials a[aria-label="YouTube Channel"]:hover {
    color: #FF0000;
}

.footer-socials a[aria-label="Discord Server"]:hover {
    color: #5865F2;
}

.footer-socials svg {
    width: 28px;
    height: 28px;
}

.footer-socials a, .footer-socials .fab {
    width: 28px;
    height: 28px;
    font-size: 28px;
    line-height: 28px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}
.fade-in-up.is-visible, .fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 10px;
    border: 3px solid var(--secondary-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-2);
}

/* Intro Section */
.intro-section {
    padding: 120px 0;
    background-color: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        var(--accent-color),
        var(--accent-tertiary),
        var(--accent-secondary),
        var(--accent-color)
    );
    background-size: 300% 300%;
    animation: animated-gradient 20s ease infinite;
    opacity: 0.15;
    filter: blur(100px);
}

.intro-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.intro-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-mascot {
    width: 300px;
    height: 300px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.intro-text h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.intro-text p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    position: relative;
    background-color: var(--primary-bg);
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background-image:
        radial-gradient(circle at 15% 15%, var(--accent-color), transparent 25%),
        radial-gradient(circle at 85% 85%, var(--accent-tertiary), transparent 25%);
    opacity: 0.1;
    filter: blur(120px);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
}

.step-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 80px 40px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.step-number-container {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    background: var(--gradient-1);
    color: var(--primary-bg);
    border-color: transparent;
    font-weight: 700;
}

.step-line {
    position: absolute;
    left: calc(50% + 20px);
    width: calc(100% - 20px);
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.step-card:last-child .step-line {
    display: none;
}

.step-icon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 30px;
    min-height: 50px;
}

.step-card .btn-primary {
    padding: 12px 24px;
    font-size: 1rem;
    min-width: 150px;
}

/* Nominees Section */
.nominees-section {
    padding: 120px 0;
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.nominees-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, var(--accent-color), transparent 30%),
        radial-gradient(circle at 90% 80%, var(--accent-tertiary), transparent 30%);
    opacity: 0.1;
    filter: blur(120px);
    animation: rotate 20s linear infinite;
}

.nominee-group {
    margin-bottom: 60px;
}

.nominee-group:last-child {
    margin-bottom: 0;
}

.nominee-group-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    font-family: 'StretchPro', sans-serif;
    letter-spacing: 1px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nominee-group-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.nominees-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.nominee-category-card {
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.nominee-category-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.nominee-category-card.golden-card {
    border-color: var(--accent-color);
    background: 
        linear-gradient(var(--primary-bg), var(--primary-bg)) padding-box,
        linear-gradient(135deg, var(--accent-color), var(--accent-secondary)) border-box;
    border-width: 2px;
    border-style: solid;
    border-image: none;
    border-color: transparent;
}
.nominee-category-card.golden-card:hover {
    border-color: var(--accent-secondary);
}

.nominee-category-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-primary);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.nominee-category-card.golden-card h4 {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nominee-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    flex-grow: 1;
    align-items: stretch;
}

.nominee-slot {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    aspect-ratio: 1 / 1.1;
    display: flex;
    transition: all 0.3s ease;
    position: relative;
    padding: 20px;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-primary);
    justify-content: space-between;
    text-align: center;
    overflow: hidden;
}

.nominee-slot:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(247, 208, 75, 0.3);
}

.nominee-slot i {
    font-size: 1.5rem;
    color: var(--text-secondary);
    opacity: 0.5;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nominee-category-card:hover .nominee-slot {
    background: var(--primary-bg);
}

.nominee-category-card:hover .nominee-slot:not(.populated) i {
    opacity: 1;
    color: var(--accent-color);
    transform: translate(-50%, -50%) scale(1.2) rotate(15deg);
}

.nominee-slot.populated {
    justify-content: center;
    gap: 15px;
    padding: 10px;
    border-style: solid;
    text-decoration: none;
    color: var(--text-primary);
}
.nominee-slot.populated:hover {
    background: var(--primary-bg);
    transform: scale(1.05) translateY(-5px);
    z-index: 1;
}

.nominee-slot.populated .nominee-avatar {
    border-color: var(--accent-color);
}

.nominee-slot.populated:hover .nominee-avatar {
    transform: scale(1.1);
    border-color: var(--accent-color);
}

.nominee-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
    line-height: 1.3;
}

.nominee-name {
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nominee-creator {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.nominee-slot.project .nominee-name {
    font-size: 1rem;
}
.nominee-slot.project .nominee-creator {
    font-size: 0.85rem;
}

.nominee-slot.text-only .nominee-name {
    font-size: 1.2rem;
}

.nominee-slot.text-only .nominee-creator {
    font-size: 0.9rem;
}

.special-category-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

.nominee-category-card.special-category {
    background: rgba(255,255,255,0.03);
    border-style: dashed;
}

.nominee-category-card.special-category .nominee-slots {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-template-columns: 1fr;
    min-height: 90px;
}

.nominee-slot.populated {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border-style: solid;
    text-decoration: none;
    color: var(--text-primary);
}
.nominee-slot.populated:hover {
    background: var(--primary-bg);
    transform: scale(1.05) translateY(-5px);
    z-index: 1;
}

.nominee-slot.populated:hover .nominee-avatar {
    transform: scale(1.1);
    border-color: var(--accent-color);
}

.nominee-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
    line-height: 1.3;
}

.nominee-name {
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nominee-creator {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.nominee-slot.project .nominee-name {
    font-size: 1rem;
}
.nominee-slot.project .nominee-creator {
    font-size: 0.85rem;
}

.nominee-slot.text-only .nominee-name {
    font-size: 1.2rem;
}

.nominee-slot.text-only .nominee-creator {
    font-size: 0.9rem;
}

.special-category-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

.nominee-category-card.special-category {
    background: rgba(255,255,255,0.03);
    border-style: dashed;
}

.nominee-category-card.special-category .nominee-slots {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-template-columns: 1fr;
    min-height: 90px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .step-card:nth-child(even) .step-line {
        display: none;
    }
    .nav-news-ticker {
        display: none;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .hamburger-menu {
        display: block;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .showcase-visual {
        order: -1;
    }
    .award-details-sticky-container {
        grid-template-columns: 1fr;
    }
    .award-details-visual {
        position: relative;
        top: 0;
        height: 50vh;
        margin-bottom: 50px;
    }
    .award-details-content {
        padding: 0;
    }
    .detail-step {
        min-height: auto;
        margin-bottom: 80px;
        padding: 20px 0 !important;
    }
    .intro-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-title, .page-title { font-size: 2.5rem; }
    .hero-subtitle, .page-subtitle { font-size: 1.2rem; }
    
    .hero-buttons { flex-direction: column; align-items: center; }
    
    .submit-content-simple { grid-template-columns: 1fr; gap: 40px; padding: 40px; text-align: center; margin-top: 0; }
    
    .footer-content { flex-direction: column; gap: 30px; }
    
    .section-header h2 { font-size: 2.5rem; }
    .about-grid, .hosts-grid { grid-template-columns: 1fr; }
    
    .showcase-text h2 { font-size: 2.5rem; }
    .highlight-item { flex-direction: column; text-align: center; gap: 15px; }

    .host-card .host-content { padding: 30px; }

    .steps-container {
        grid-template-columns: 1fr;
    }
    .step-line {
        display: none;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-item-large {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .nav-container { padding: 10px 20px; }
    
    .hero-title, .page-title { font-size: 2.2rem; }
    
    .btn-primary, .btn-secondary, .btn-submit { min-width: 100%; }
    
    .awards-showcase { padding: 80px 0; }
    
    .showcase-text h2 { font-size: 2.2rem; }
    
    .award-display { width: 220px; height: 220px; }
    .main-award-icon { width: 140px; height: 140px; }
    .award-glow { width: 180px; height: 180px; }

    .project-scroller-header {
        height: 50vh;
    }
    .scroller-item {
        width: 180px;
    }
    .hero-content-overlay {
        padding: 20px;
    }
    .scroller-item-author {
        display: none;
    }
}