:root {
    --accent-color: #bae036;
    --dark: #000000;
    --darker: #000000;
    --white: #ffffff;
    --black: #000000;
    --text-muted: #999999;
    --flux-sticky-header-offset: 120px;
}

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

body {
    font-family: "obviously-variable", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-variation-settings: "ital" 0, "wght" 400, "wdth" 100;
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    background: var(--dark);
    overflow-x: hidden;
}
html {
    scroll-padding-top: var(--flux-sticky-header-offset);
}
p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
}
ul, ol {
    margin-bottom: 1rem;
    margin-left: 2rem;
}
li {
    margin-bottom: 0.5rem;
}
.mb-8 {
    margin-bottom: 80px;
}
.mb-4 {
    margin-bottom: 40px;
}
.mt-8 {
    margin-top: 80px;
}
.mt-4 {
    margin-top: 40px;
}
.split-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.profile-page {
    padding-bottom: 80px;
}

.profile-page .form-info,
.profile-page .form-success,
.profile-page .form-error {
    padding: 20px 24px;
    border-radius: 16px;
    margin-bottom: 28px;
}

.profile-page .profile-deadline p:last-child,
.profile-page .profile-deadline ul:last-child {
    margin-bottom: 0;
}

.profile-page .profile-deadline ul {
    margin: 12px 0 0 1.2rem;
}

.profile-page .profile-deadline li {
    margin-bottom: 8px;
}

.profile-header {
    margin: 8px 0 40px;
    padding: 28px 0 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.profile-identity {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 32px;
    align-items: flex-start;
}

.profile-identity .obviously-title {
    margin-bottom: 8px;
}

.profile-identity .obviously-caption {
    margin-bottom: 0;
}

.profile-member-status {
    margin: 12px 0 0;
    color: var(--accent-color);
    font-weight: 600;
}

.profile-identity-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.profile-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
    gap: 56px 72px;
    align-items: start;
}

.profile-actions .purchase-section {
    margin-top: 0;
    padding: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
}

.profile-actions .purchase-section + .purchase-section,
.profile-actions .profile-invoice {
    margin-top: 32px;
}

.profile-actions .purchase-section .obviously-title {
    margin-bottom: 12px;
}

.profile-actions .window-rate {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.profile-actions .purchase-section > .obviously-caption:last-child,
.profile-actions .purchase-section > .obviously-body:last-child {
    margin-bottom: 0;
}

.profile-specs {
    margin-top: 48px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
}

.profile-specs .obviously-title {
    margin-bottom: 16px;
}

.profile-specs ul {
    margin: 0;
    padding-left: 1.2rem;
}

.profile-specs li {
    margin-bottom: 10px;
    line-height: 1.55;
}

.profile-specs li:last-child {
    margin-bottom: 0;
}

.enter-form-col .form-container,
.profile-actions .form-container {
    max-width: none;
    width: 100%;
}

.enter-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: 40px;
    align-items: start;
}

.enter-aside .obviously-body,
.enter-aside .obviously-caption {
    margin-bottom: 16px;
}

@media (max-width: 900px) {
    .split-columns,
    .profile-workspace,
    .enter-layout {
        grid-template-columns: 1fr;
    }

    .profile-workspace {
        gap: 40px;
    }

    .faculty-field-row {
        grid-template-columns: 1fr;
    }
}

/* ===== TYPOGRAPHY SYSTEM ===== */
.obviously-display {
    font-family: "obviously-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 700, "wdth" 125;
    font-size: 5vmax;
    line-height: 0.9;
    text-transform: uppercase;
}

.obviously-headline {
    font-family: "obviously-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 600, "wdth" 115;
    font-size: 3.5vmax;
    line-height: 1;
}

.obviously-title {
    font-family: "obviously-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 570, "wdth" 135;
    font-size: 1.5vmax;
    line-height: 1.2;
    margin-bottom: 10px;
}

.obviously-body {
    font-family: "obviously-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 400, "wdth" 100;
    font-size: 1.15vmax;
    line-height: 1.5;
}

.obviously-caption {
    font-family: "obviously-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 300, "wdth" 100;
    font-size: 1.05vmax;
    line-height: 1.4;
    color: var(--white);
}

/* ===== LAYOUT SYSTEM ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

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

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.3s ease, padding 0.4s ease;
}

.main-nav:has(.logo-flux) {
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo.logo-flux img {
    height: 60px;
}

.logo[data-header-logo-swap] {
    position: relative;
    display: inline-block;
    height: 40px;
    transition: height 0.4s ease;
}

.logo[data-header-logo-swap].is-after-hero {
    height: 60px;
}

.logo[data-header-logo-swap] img {
    transition: opacity 0.4s ease;
}

.logo[data-header-logo-swap] .logo-default {
    position: relative;
    height: 40px;
    opacity: 1;
}

.logo[data-header-logo-swap] .logo-after-hero {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    opacity: 0;
    pointer-events: none;
}

.logo[data-header-logo-swap].is-after-hero .logo-default {
    opacity: 0;
    pointer-events: none;
}

.logo[data-header-logo-swap].is-after-hero .logo-after-hero {
    opacity: 1;
    pointer-events: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== DROPDOWN MENUS ===== */
.user-menu, .signin-menu, .awards-reception-menu, .previous-competitions-menu {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 10px;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
}

/* Desktop hover/focus states - only apply on larger screens */
@media (min-width: 769px) {
    .user-menu:hover .dropdown-menu,
    .user-menu:focus-within .dropdown-menu,
    .user-menu.is-open .dropdown-menu,
    .signin-menu:hover .dropdown-menu,
    .signin-menu:focus-within .dropdown-menu,
    .signin-menu.is-open .dropdown-menu,
    .awards-reception-menu:hover .dropdown-menu,
    .awards-reception-menu:focus-within .dropdown-menu,
    .awards-reception-menu.is-open .dropdown-menu,
    .previous-competitions-menu:hover .dropdown-menu,
    .previous-competitions-menu:focus-within .dropdown-menu,
    .previous-competitions-menu.is-open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-menu a {
    display: block;
    padding: 8px 0;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.dropdown-menu a:hover {
    color: var(--accent-color);
}

.dropdown-placeholder {
    display: block;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-style: italic;
}

/* ===== LOGIN FORM ===== */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
}

.form-group input {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.login-btn {
    background: var(--accent-color);
    color: var(--black);
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(186, 224, 54, 0.3);
}

.forgot-link {
    color: var(--accent-color);
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
    min-height: 600px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
    min-width: 100vw;
    min-height: 100vh;
    opacity: 0.25;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo img {
    max-width: 500px;
    width: 30vw;
    height: auto;
    margin-bottom: 20px;
}

.hero-text {
    color: var(--white);
    text-align: left;
}

.hero-text h1 {
    margin-bottom: 40px;
    line-height: 1.22;
    color: var(--white);
    font-size: 3.5vmax;
    font-variation-settings: "ital" 0, "wght" 440, "wdth" 95;
}

.hero-text p {
    margin-bottom: 50px;
    opacity: 0.9;
    color: var(--white);
    font-size: 2vmax;
    font-variation-settings: "ital" 0, "wght" 400, "wdth" 100;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--accent-color);
    color: var(--black);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1vmax;
    font-variation-settings: "ital" 0, "wght" 600, "wdth" 105;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(186, 224, 54, 0.4);
}

/* ===== CATEGORIES SECTION ===== */
.categories {
    background: var(--dark);
    padding: 120px 0 80px;
}

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

.icon {
    width: 4vmax;
    height: 4vmax;
    margin: 0 1rem;
    filter: brightness(0) invert(1);
}

.categories-header h2 {
    color: var(--white);
    margin: 0;
}

.accent {
    color: var(--accent-color);
    display: block;
    text-align: right;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.categories-grid-2026 {
    grid-template-columns: repeat(3, 1fr);
}

.categories-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 75%;
    margin: 0 auto;
}

.category-card {
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.category-card .obviously-caption {
    font-size: 0.9vmax;
    line-height: 1.6;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.category-image-placeholder {
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.category-card-social {
    display: grid;
    grid-template-columns: minmax(200px, 280px) 1fr;
    gap: 0;
    align-items: stretch;
    margin-top: 4px;
}

.category-card-social .category-image {
    height: 100%;
    min-height: 220px;
    aspect-ratio: auto;
}

.category-card-social .category-content {
    justify-content: center;
    padding: 32px 36px;
    gap: 0.8vmax;
}

.category-eyebrow {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0;
}

.category-content {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 1.4vmax;
}

.category-content h3 {
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.category-link {
    color: var(--accent-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* ===== SUBMIT SECTION ===== */
.submit-work {
    background: var(--accent-color);
    color: var(--black);
    padding: 120px 0 100px;
}

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

.submit-text h2 {
    margin-bottom: 40px;
    line-height: 0.8;
    text-transform: uppercase;
    color: var(--black);
}

.submit-text p {
    margin-bottom: 40px;
    color: var(--black);
}

.submit-image, .join-image {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.submit-image img, .join-image img {
    width: auto;
    height: 100%;
    object-fit: cover;
}

.join-image img {
    max-height: 80vh;
}

.right-align {
    text-align: right;
    display: block;
}

.narrow {
    width: 28vmax;
}

.offset {
    margin-left: 5vmax;
}
.highlight {
    background-color: var(--accent-color);
    color: var(--black);
    padding: 5px 10px;
    border-radius: 5px;
}

.left-align {
    text-align: left !important;
    display: block;
}
.center-align {
    text-align: center !important;
    display: block;
}

/* ===== ALL SECTIONS ===== */
.judges, .sponsors, .faq, .past-winners, .entry-fees, .flux-history {
    background: var(--dark);
    padding: 80px 0;
}

.judges-header, .sponsors-header, .past-winners-header, .entry-fees-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.judges-header h2, .sponsors-header h2, .past-winners-header h2, .entry-fees-header h2 {
    color: var(--white);
    margin: 0;
    text-transform: uppercase;
}

.faq h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
    text-transform: uppercase;
}

.judges-grid, .sponsors-grid, .winners-grid, .faq-grid {
    display: grid;
    gap: 8vw;
}

.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
    gap: 0;
    row-gap: 3rem;
}

.winners-grid {
    grid-template-columns: repeat(4, 1fr);
}

.faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
}

.sponsor-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 30%;
    min-width: 0;
    height: auto;
    padding: 0 clamp(1.5rem, 3.5vw, 3.25rem);
}

.sponsor-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.sponsor-logo img {
    width: auto;
    height: auto;
    max-width: min(80%, 18rem);
    max-height: 7rem;
    object-fit: contain;
}

.sponsor-logo::before {
    content: '';
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: -1px;
    width: 1px;
    background: var(--white);
    pointer-events: none;
}

/* ===== CARDS AND CONTENT ===== */
.winner-card, .fee-card {
    background: #2a2a2a;
    border-radius: 12px;
}

.faq-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    height: 100%;
    min-width: 0;
    gap: clamp(1.25rem, 3vh, 2.25rem);
    padding: 0 clamp(1.5rem, 3.5vw, 3.25rem);
}

.faq-item:first-child {
    padding-left: 0;
}

.faq-item:last-child {
    padding-right: 0;
}

.faq-item:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: var(--white);
    pointer-events: none;
}

.faq-item-stack {
    justify-content: flex-start;
    gap: clamp(2.5rem, 5vh, 4rem);
}

.faq-item-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(1.25rem, 3vh, 2.25rem);
    width: 100%;
}

.faq-item-copy {
    display: flex;
    flex-direction: column;
    gap: 0.85em;
    width: 100%;
    text-align: left;
}

.faq-item .icon {
    width: 4vmax;
    height: 4vmax;
    margin: 0;
    object-fit: contain;
    flex-shrink: 0;
}

.faq-item .kicker{
    font-size: 0.8vmax;
    font-variation-settings: "ital" 0, "wght" 200, "wdth" 95;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5vmax;
}

.faq-item h3, .judge-content h3, .winner-content h3, .fee-card h3 {
    color: var(--accent-color);
}

.faq-item p, .judge-content p, .winner-content p {
    color: var(--white);
}

.faq-item p {
    margin-bottom: 0;
}

/* ===== GREEN SECTIONS ===== */
.join-aiga {
    background: var(--accent-color);
    color: var(--black);
    padding: 120px 0 100px;
}

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

.join-text h2 {
    margin-bottom: 40px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--black);
}

.join-text p {
    margin-bottom: 40px;
    color: var(--black);
}

.join-content .obviously-title {
    text-align: left;
}

/* ===== MEMBERSHIP BENEFITS ===== */
.membership-benefits {
    background: var(--dark);
    padding: 60px 0 120px;
}

.membership-benefits h2 {
    color: var(--white);
    margin-bottom: 60px;
    text-transform: uppercase;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18vmin;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item h3 {
    color: var(--accent-color);
    margin-bottom: 0;
    border-bottom: 1px solid var(--white);
    padding-bottom: 12px;
}

.benefit-item p {
    color: var(--white);
    margin-bottom: 0;
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--darker);
    color: var(--white);
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left, .footer-right {
    flex: 1;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer-content p {
    color: var(--white);
    margin: 0;
}

.footer-content a {
    color: var(--white);
    text-decoration: underline;
}

.footer-content a:hover {
    color: var(--accent-color);
}

/* ===== SLIDER STYLES ===== */
.slider-container {
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    justify-content: center;
}

.winner-slide {
    flex: 0 0 300px;
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
}

.winner-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.winner-content {
    padding: 20px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.winner-content h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.2;
}

.winner-content p {
    color: var(--white);
    font-size: 12px;
    margin-bottom: 5px;
    line-height: 1.3;
}

/* ===== ENTRY FEES SPECIAL STYLING ===== */
.entry-fees-header {
    text-align: left;
    margin-bottom: 60px;
}

.entry-fees-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.fees-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.fee-card {
  background: #2a2a2a;
  border: 2px solid var(--white);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: visible;
  display: flex;
  gap: 8vmax;
}

.fee-card.featured {
  border-color: var(--accent-color);
}

.fee-card h3 {
  color: var(--white);
  margin-bottom: 1.5vmax;
  font-size: 0.9vmax;
  font-variation-settings: "ital" 0, "wght" 300, "wdth" 95;
}

.fee-card .price {
  font-size: 3vmax;
  font-weight: 700;
  margin-bottom: 20px;
}

.fee-card .cta-button {
  position: absolute;
  left: 50%;
  right: auto;
  top: auto;
  bottom: 0;
  margin: 0;
  width: max-content;
  max-width: calc(100% - 24px);
  white-space: nowrap;
  transform: translate(-50%, 50%);
}

.fee-card .cta-button:hover {
  transform: translate(-50%, calc(50% - 2px));
}

.scroll-learn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 20vmax;
  margin: 40px 0 0 auto;
  flex-direction: column;
}

.scroll-learn .arrow {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent-color);
}

.scroll-learn p {
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== PREVIOUS COMPETITIONS NAVIGATION ===== */
.previous-competitions {
    background: var(--dark);
    padding: 80px 0;
}

.previous-competitions h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.competitions-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.competition-link {
    display: inline-block;
    padding: 12px 24px;
    background: #2a2a2a;
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.competition-link:hover {
    background: var(--accent-color);
    color: var(--black);
    transform: translateY(-2px);
}

.competition-link.current {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--black);
}

/* ===== JUDGES LIST ===== */
.judges-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.flux-history-header {
    margin-bottom: 36px;
}

.flux-history-header .obviously-display {
    font-size: clamp(2.4rem, 5.5vmax, 5.5rem);
    line-height: 0.95;
    max-width: 14ch;
}

.flux-history-copy {
    max-width: 42rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.flux-history-copy .obviously-body {
    margin: 0;
    color: var(--white);
    font-size: 1.15rem;
    line-height: 1.7;
}

.judge-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw;
    align-items: start;
}

.judge-image-large {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.judge-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.judge-name {
    font-family: "obviously-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 700, "wdth" 125;
    font-size: 4vmax;
    color: var(--accent-color);
    margin: 0;
    line-height: 1em;
}

.judge-title {
    font-family: "obviously-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 500, "wdth" 115;
    font-size: 1.3vmax;
    color: var(--accent-color);
    margin: 0;
}

.judge-bio {
    font-family: "obviously-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 400, "wdth" 100;
    font-size: 1.1vmax;
    color: var(--white);
    line-height: 1.6;
}

.judge-bio p {
    margin: 0 0 0.9em;
}

.judge-bio p:last-child {
    margin-bottom: 0;
}

.read-more {
    font-family: "obviously-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 600, "wdth" 100;
    font-size: 1vmax;
    color: var(--accent-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== PAGE CONTENT STYLES ===== */
.page-content {
    padding-top: 100px;
    min-height: 100vh;
}

.page-header {
    background: var(--dark);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.page-header p {
    color: var(--white);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.page-body {
    background: var(--dark);
    padding: 80px 0;
}

.page-body .container {
    max-width: 800px;
}

.page-body h1, .page-body h2, .page-body h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.page-body p {
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.6;
}

.page-body ul, .page-body ol {
    color: var(--white);
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-body li {
    margin-bottom: 10px;
}

.page-body a {
    color: var(--accent-color);
    text-decoration: underline;
}

.page-body a:hover {
    text-decoration: none;
}

/* ===== AWARDS PAGE / WINNERS LISTING ===== */
.current-winners {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.winner-section {
    margin-bottom: 4rem;
}

/* Reuse generic winner card styles, specialize where needed */
.winner-card {
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.winner-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(186, 224, 54, 0.2);
}

.winner-card:hover {
    transform: translateY(-5px);
}

.winner-card .winner-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.winner-card .winner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.winner-content {
    padding: 20px;
}

.winner-content h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.category-label {
    color: var(--accent-color);
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
}

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

.best-in-show-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: start;
}

.category-winners-row {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    margin-bottom: 30px;
}

.finalists-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.winner-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.winner {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.winner.bestshow {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(186, 224, 54, 0.2);
}

.winner.bestcat {
    border-color: rgba(186, 224, 54, 0.6);
}

.winner.honorable {
    border-style: dashed;
}

.winner h3 {
    color: var(--accent-color);
    margin: 0;
    line-height: 1.15;
    font-size: 1.35rem;
}

.winner em {
    color: var(--text-muted);
    font-style: normal;
}

.winner .col-xs-12,
.winner .col-md-3,
.winner a.col-xs-12,
.winner a.col-md-3 {
    width: 100%;
    padding: 0;
    float: none;
    max-width: 480px;
    margin: 0 auto;
}

.winner-image-trigger {
    display: block;
    margin-bottom: 12px;
}

.winner-image-thumb {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    border-radius: 10px;
    background: #0f0f0f;
}

.winner-image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 30px;
}

.winner-image-modal.open {
    display: flex;
}

.winner-image-modal .modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.winner-image-modal img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

.winner-image-modal .close-modal {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--accent-color);
    color: #000;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

body.no-scroll {
    overflow: hidden;
}

.category-block {
    margin-bottom: 140px;
}

.category-winners-row {
    align-items: stretch;
    gap: 40px;
    margin-bottom: 36px;
}

.finalists-grid {
    gap: 36px;
}

@media (max-width: 768px) {
    .winners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .winners-cat-nav {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== FORM STYLES ===== */
.form-container {
    max-width: 600px;
    /* margin: 0 auto; */
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

input[type="submit"],
input[type="button"],
input[type="reset"],
button.form-submit,
button[type="submit"],
.btn,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border: none;
    border-radius: 999px;
    background: var(--accent-color);
    color: var(--black);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    text-decoration: none;
    min-width: 140px;
}

input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
button.form-submit:hover,
button[type="submit"]:hover,
.btn:hover,
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(186, 224, 54, 0.35);
}

.winner-heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.winner-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--white);
}

.winner-credit {
    line-height: 1.4;
}

.winner-media {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.winner-cta {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
}

.winner-link-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 6px;
}

.winner-link-url {
    font-size: 0.9rem;
    color: var(--text-muted);
    word-break: break-all;
}

.winner-link-url a {
    color: var(--accent-color);
    text-decoration: underline;
}

.winners-grid {
    gap: 3rem;
}

.category-block h1.obviously-display {
    margin-bottom: 32px;
}

input[type="submit"]:disabled,
input[type="button"]:disabled,
input[type="reset"]:disabled,
button.form-submit:disabled,
button[type="submit"]:disabled,
.btn:disabled,
.cta-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-submit {
    background: var(--accent-color);
    color: var(--black);
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(186, 224, 54, 0.3);
}

/* ===== ALERT STYLES ===== */
.form-error {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.form-success {
    color: var(--accent-color);
    background: rgba(186, 224, 54, 0.1);
    border: 1px solid var(--accent-color);
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.form-info {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.main-nav + .alert {
    margin-top: 100px;
}

.alert-success {
    color: var(--accent-color);
    background: rgba(186, 224, 54, 0.1);
    border-color: var(--accent-color);
}

.alert-error {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border-color: #ff6b6b;
}

.alert-info {
    background: rgba(0, 123, 255, 0.1);
    border-left: 4px solid #007bff;
    color: #007bff;
}

.winners-preview-banner {
    background: var(--accent-color);
    color: var(--black);
    border: none;
    padding: 16px 24px;
    margin: 0 0 24px;
    font-weight: 600;
    text-align: center;
}

.winners-cat-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 32px;
    text-align: left;
    margin: 16px auto 48px;
    max-width: 1100px;
    cursor: default;
}

.winners-cat-nav-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.winners-cat-nav-parent {
    color: var(--white);
    font-family: "obviously-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 600, "wdth" 100;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    width: auto;
}

.winners-cat-nav-children {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-left: 0.35em;
}

.winners-cat-nav-children .cat_nav {
    color: var(--accent-color);
    text-decoration: none;
    cursor: pointer;
    width: auto;
    font-size: 0.95rem;
    line-height: 1.35;
    padding-left: 0.15em;
}

.winners-cat-nav-marker {
    display: inline-block;
    margin-right: 0.4em;
    font-weight: 600;
}

.winners-cat-nav-parent:hover,
.winners-cat-nav-children .cat_nav:hover {
    text-decoration: underline;
}

    [id$="_section"],
    #catnav {
        scroll-margin-top: var(--flux-sticky-header-offset);
    }

/* ===== SPONSORS PAGE STYLES ===== */
.sponsors-intro {
    font-size: 1.1em;
    margin-bottom: 2rem;
    text-align: center;
}

.sponsor-item {
    text-align: center;
}

.sponsor-link {
    display: block;
    height: 120px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-indent: -9999px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.sponsor-link:hover {
    transform: scale(1.05);
}

.no-sponsors {
    text-align: center;
    font-style: italic;
    color: var(--text-muted);
    margin: 2rem 0;
}

.become-sponsor {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
}

.become-sponsor h2 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* ===== AWARDS PAGE STYLES ===== */
.venue-notice {
    font-style: italic;
    color: var(--text-muted);
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.awards-info {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.awards-coming {
    text-align: center;
    font-style: italic;
    color: var(--text-muted);
    margin: 2rem 0;
}

/* ===== PURCHASE PAGE STYLES ===== */
.purchase-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.purchase-title {
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.paypal-container {
    margin: 2rem auto;
    width: fit-content;
    min-width: 360px;
}

.purchase-options {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

/* ===== PASSWORD RESET PAGE STYLES ===== */
.reset-instructions {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

/* ===== NEWSLETTER SIGNUP STYLES ===== */
.newsletter-section {
    margin-top: 30px;
    text-align: center;
}

.newsletter-section h3 {
    color: #32CD32;
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: bold;
}

.newsletter-section p {
    color: white;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input-group > div {
    display: flex;
    gap: 10px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #333;
    border-radius: 4px;
    background: #f5f5f5;
    color: #333;
    font-size: 14px;
}

.newsletter-input-group button {
    padding: 8px 16px;
    background: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.newsletter-input-group button:hover {
    background: #555;
}

.newsletter-input-group button:disabled {
    background: #666;
    cursor: not-allowed;
}

.newsletter-message {
    margin-top: 10px;
    padding: 8px;
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-message.success {
    background: #32CD32;
    color: white;
    border: 1px solid #28a745;
}

.newsletter-message.error {
    background: #dc3545;
    color: white;
    border: 1px solid #c82333;
}

/* ===== NEWSLETTER SUCCESS OVERLAY ===== */
.newsletter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.newsletter-overlay.active {
    opacity: 1;
    visibility: visible;
}

.newsletter-overlay-content {
    background: #2a2a2a;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
    border: 2px solid #32CD32;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.newsletter-overlay.active .newsletter-overlay-content {
    transform: scale(1);
}

.newsletter-overlay h3 {
    color: #32CD32;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: bold;
}

.newsletter-overlay p {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1em;
    line-height: 1.5;
}

.newsletter-overlay-close {
    background: #32CD32;
    color: black;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-overlay-close:hover {
    background: #28a745;
    transform: translateY(-2px);
}

/* ===== PAST JUDGES (Judges page) ===== */
.past-judges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.past-judge-card {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.past-judge-card strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}

.past-judge-card p {
    margin-bottom: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body, html {
        overflow-x: hidden;
        initial-scale: 1;
    }
    
    .obviously-display {
        font-size: 4vmax;
    }
    
    .obviously-title {
        font-size: 2.5vmax;
    }
    
    .hero-content, .submit-content, .join-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-logo img {
        width: 100%;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .categories-grid, .categories-grid-bottom, .faq-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        gap: 3rem;
    }

    .faq-item,
    .faq-item:first-child,
    .faq-item:last-child {
        padding: 0;
    }

    .faq-item:not(:first-child)::before {
        content: none;
    }
    
    .categories-grid-bottom {
        max-width: 100%;
    }

    .category-card-social {
        grid-template-columns: 1fr;
    }

    .category-card-social .category-image {
        min-height: 0;
        aspect-ratio: 1;
    }
    
    .fees-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1001;
        width: 100vw;
        height: 100vh;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        font-size: 20px;
        padding: 15px 0;
        display: block;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .winner-slide {
        flex: 0 0 250px;
        min-width: 250px;
        max-width: 250px;
        width: 250px;
    }
    
    .slider-track {
        justify-content: flex-start;
        padding: 0 20px;
        gap: 20px;
    }
    
    .winner-content {
        height: auto;
        padding: 15px;
    }
    
    .winner-content h3 {
        font-size: 14px;
    }
    
    .winner-content p {
        font-size: 11px;
    }
    
    .competitions-nav {
        gap: 10px;
    }
    
    .competition-link {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .entry-fees-content, .judge-row {
        grid-template-columns: 1fr;
    }
    
    .fee-card h3 {
        font-size: 1.5vmax;
    }

    .fee-card .cta-button {
        font-size: 0.8rem;
        padding: 10px 18px;
        letter-spacing: 0.02em;
    }
    
    .scroll-learn {
        max-width: 25vmax;
    }
    
    /* Mobile dropdown adjustments */
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        background: transparent;
        border: none;
        padding: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu.active {
        opacity: 1;
        visibility: visible;
        padding: 20px 0;
        margin-top: 20px;
        max-height: 500px;
    }
    
    .user-menu, .signin-menu, .awards-reception-menu, .previous-competitions-menu {
        position: static;
    }
    
    .login-form {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .obviously-caption, .category-card .obviously-caption {
        font-size: 1.5vmax;
    }
    
    .obviously-body {
        font-size: 1.5vmax;
    }
    
    .sponsors-header {
        flex-direction: column;
    }
    
    .past-winners .container {
        padding: 0;
    }
    
    .past-winners-header {
        padding: 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .submit-image img, .join-image img {
        max-height: 50vh;
    }
    
    .sponsors-grid {
        flex-direction: column;
        overflow: visible;
        gap: 1.5rem;
    }

    .sponsor-logo {
        flex: 1 1 auto;
        width: 100%;
        padding: 0;
    }

    .sponsor-logo::before {
        content: none;
    }
    
    .sponsor-link {
        height: 80px;
    }
    
    .paypal-container {
        min-width: 280px;
        width: 100%;
    }
}

.purchase-container {
    padding: 0 1rem;
}

.become-sponsor {
    margin: 2rem 1rem;
    padding: 1.5rem;
}

.upload-entry-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.upload-entry-layout h2.obviously-title {
    margin-bottom: 18px;
}

.entry-specs {
    flex: 0 0 320px;
    max-width: 320px;
    position: sticky;
    top: 140px;
    align-self: flex-start;
}

.specs-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 34px 30px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

.specs-card h2 {
    margin-bottom: 18px;
    font-size: 1.35rem;
}

.specs-card ul {
    margin: 0;
    padding-left: 1.4rem;
    list-style: disc;
    font-size: 0.97rem;
    line-height: 1.6;
}

.specs-card li:not(:last-child) {
    margin-bottom: 0.55rem;
}

.entry-form-container {
    flex: 1 1 560px;
    min-width: 0;
}

.upload-entry-layout .entry-form-container.form-container {
    max-width: none;
    width: 100%;
}

.entry-form-container .profile-form {
    margin-top: 24px;
}

.uploaded-file {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.uploaded-file a {
    display: inline-flex;
    width: 100%;
}

.uploaded-file img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.how-it-works {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    list-style: none;
    margin: 0 0 48px;
    padding: 0;
    counter-reset: flux-steps;
}

.how-it-works li {
    counter-increment: flux-steps;
    position: relative;
    margin: 0;
    padding: 24px 22px 22px 68px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    min-height: 108px;
}

.how-it-works li::before {
    content: counter(flux-steps);
    position: absolute;
    left: 20px;
    top: 22px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--black);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.how-it-works strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.how-it-works span {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

.entry-start-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
    margin: 0 0 40px;
}

.entry-start-form .obviously-caption {
    margin: 0;
}

.entries-heading {
    margin: 0 0 16px;
}

.entry-cards {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.entry-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 16px 20px;
    margin: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
}

.entry-card.is-ready {
    border-color: rgba(186, 224, 54, 0.55);
}

.entry-card.is-submitted {
    opacity: 0.92;
}

.entry-card-thumb {
    display: block;
    width: 112px;
    height: 112px;
    border-radius: 12px;
    background: #1a1a1a center / cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.entry-card-thumb.is-empty {
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.04) 8px,
        rgba(255, 255, 255, 0.08) 8px,
        rgba(255, 255, 255, 0.08) 16px
    );
}

.entry-card-body {
    min-width: 0;
}

.entry-card-body .obviously-title {
    margin-bottom: 6px;
}

.entry-card-kicker {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.entry-card-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.entry-card-actions .cta-button,
.entry-card-actions .form-submit,
.entry-card-actions .entry-secondary {
    min-width: 0;
}

.entry-card-actions .cta-button {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.entry-card-actions .cta-button:hover {
    background: var(--accent-color);
    color: var(--black);
}

.entry-card-select {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--white);
    cursor: pointer;
    font-weight: 500;
}

.entry-card-select input {
    width: auto;
    margin: 0;
    accent-color: var(--accent-color);
}

.entry-secondary,
button.entry-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.28);
    min-width: 0;
    text-transform: none;
    font-weight: 600;
    letter-spacing: 0;
}

.entry-secondary:hover,
button.entry-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    transform: none;
}

.submit-panel {
    margin-top: 8px;
    padding: 28px;
    background: rgba(186, 224, 54, 0.08);
    border: 1px solid rgba(186, 224, 54, 0.35);
    border-radius: 16px;
}

.submit-panel .form-group {
    max-width: 360px;
}

.faculty-credits,
.deadline-details,
.optional-credits {
    margin-top: 0;
}

.faculty-balance {
    margin: 20px 0 0;
    padding: 16px 18px;
    background: rgba(186, 224, 54, 0.08);
    border: 1px solid rgba(186, 224, 54, 0.28);
    border-radius: 12px;
}

.faculty-block {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faculty-block .obviously-title {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.faculty-block .obviously-caption {
    margin-bottom: 16px;
}

.faculty-inline-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.faculty-inline-form input[type="number"] {
    width: 120px;
    max-width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
}

.faculty-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.faculty-field-row .form-group {
    margin-bottom: 0;
}

.deadline-details ul,
.credit-code-list {
    margin: 0;
    padding: 0;
}

.deadline-details,
.optional-credits {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 16px 18px;
}

.faculty-credits > summary,
.deadline-details > summary,
.optional-credits > summary,
.page-content details > summary {
    cursor: pointer;
    list-style: none;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 12px;
    user-select: none;
}

.faculty-credits > summary::-webkit-details-marker,
.deadline-details > summary::-webkit-details-marker,
.optional-credits > summary::-webkit-details-marker,
.page-content details > summary::-webkit-details-marker,
.faculty-credits > summary::marker,
.deadline-details > summary::marker,
.optional-credits > summary::marker,
.page-content details > summary::marker {
    display: none;
    content: none;
}

.faculty-credits > summary::before,
.deadline-details > summary::before,
.optional-credits > summary::before,
.page-content details > summary::before {
    content: '';
    flex: 0 0 0.55em;
    width: 0.55em;
    height: 0.55em;
    border-right: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    transform: rotate(-45deg);
    transition: transform 0.2s ease;
    margin-top: -0.15em;
}

.faculty-credits[open] > summary::before,
.deadline-details[open] > summary::before,
.optional-credits[open] > summary::before,
.page-content details[open] > summary::before {
    transform: rotate(45deg);
    margin-top: -0.3em;
}

.faculty-credits[open] > summary,
.deadline-details[open] > summary,
.optional-credits[open] > summary {
    margin-bottom: 16px;
}

.credit-code-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.credit-code-item {
    margin: 0;
    padding: 16px 18px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}

.credit-code-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 0;
}

.credit-code-meta strong {
    color: var(--white);
    letter-spacing: 0.04em;
}

.credit-code-meta span {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.4;
}

.credit-code-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.credit-code-actions input[type="email"] {
    flex: 1 1 100%;
    min-width: 0;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.profile-invoice {
    text-align: left;
}

.profile-invoice .cta-button {
    width: auto;
}

.form-section {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    padding: 28px;
    margin: 0 0 32px;
    background: rgba(255, 255, 255, 0.04);
    min-inline-size: 100%;
}

.form-section > legend,
.form-section > .obviously-title {
    float: none;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 0 20px;
}

.form-section > *:not(legend) {
    clear: both;
}

.profile-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
}

.profile-field-row-address {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
}

.profile-field-row + .form-group,
.form-group + .profile-field-row {
    margin-top: 20px;
}

.field-row-hint {
    margin: 10px 0 0;
    color: var(--text-muted);
}

.field-row-hint + .form-group {
    margin-top: 18px;
}

.form-section > .form-group:last-child,
.form-section > .profile-field-row:last-child {
    margin-bottom: 0;
}

.profile-field-row .form-group {
    margin-bottom: 0;
}

.profile-field-row .obviously-caption {
    margin: 8px 0 0;
}

.profile-edit-page .obviously-display {
    margin-bottom: 12px;
}

.profile-edit-kicker {
    text-align: center;
    margin: 0 0 40px;
}

.profile-edit-form {
    max-width: 880px;
    margin: 0 auto;
}

.profile-edit-form .form-section .obviously-title {
    margin-bottom: 20px;
}

.profile-edit-form .obviously-caption {
    color: var(--text-muted);
    margin-top: 8px;
    margin-bottom: 0;
}

.profile-readonly {
    margin: 0;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.profile-edit-actions {
    margin: 8px 0 24px;
}

.profile-edit-actions .form-submit {
    align-self: flex-start;
}

.upload-page-header {
    margin: 0 0 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.upload-page-header .obviously-display {
    margin-bottom: 10px;
}

.profile-upload-page .upload-status {
    margin-bottom: 0;
}

.profile-upload-page .entry-form-container .profile-form {
    margin-top: 0;
}

.image-slots-intro {
    margin: 0 0 20px;
}

.image-slots {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 8px;
}

.image-slot {
    margin-bottom: 0;
    padding: 16px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.image-slot .file-input {
    width: 100%;
}

.form-group input[type="checkbox"],
.form-group input[type="radio"] {
    width: auto;
    display: inline-block;
    margin-right: 8px;
    padding: 0;
    accent-color: var(--accent-color);
}

.radio-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 18px;
    font-weight: 500;
}

.radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin: 8px 0 12px;
}

.credit-choice {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0 8px;
}

.credit-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.22);
    cursor: pointer;
    font-weight: 500;
}

.credit-option:has(input:checked) {
    border-color: rgba(186, 224, 54, 0.55);
    background: rgba(186, 224, 54, 0.08);
}

.credit-option input {
    width: auto;
    margin: 4px 0 0;
    accent-color: var(--accent-color);
}

.credit-option strong {
    display: block;
    margin-bottom: 4px;
}

.credit-option .obviously-caption {
    margin: 0;
    display: block;
}

.credit-panel {
    margin-top: 20px;
    margin-bottom: 0;
}

.credit-panel[hidden] {
    display: none;
}

.save-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: sticky;
    bottom: 16px;
    padding: 18px 20px;
    margin: 12px 0 24px;
    background: rgba(0, 0, 0, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    z-index: 2;
}

.save-bar .form-submit,
.save-bar .cta-button {
    min-width: 0;
}

.save-bar .cta-button {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.save-bar .cta-button:hover {
    background: var(--accent-color);
    color: var(--black);
}

.upload-back {
    margin-bottom: 16px;
}

.upload-back a {
    text-decoration: none;
    font-weight: 600;
}

.upload-status {
    color: var(--text-muted);
    margin-bottom: 24px;
}

@media (max-width: 800px) {
    .how-it-works {
        grid-template-columns: 1fr;
    }

    .entry-card {
        grid-template-columns: 80px minmax(0, 1fr);
    }

    .entry-card-thumb {
        width: 80px;
        height: 80px;
    }

    .profile-field-row,
    .profile-field-row-address,
    .image-slots,
    .credit-choice {
        grid-template-columns: 1fr;
    }
}

.newsletter-section {
    margin-top: 0px;
    margin-bottom: 40px;
    order: -1;
}

@media (max-width: 992px) {
    .upload-entry-layout {
        flex-direction: column;
        gap: 32px;
    }

    .entry-specs {
        max-width: none;
        position: static;
    }
}
