:root {
    --accent-color: #bae036;
    --dark: #000000;
    --darker: #000000;
    --white: #ffffff;
    --black: #000000;
    --text-muted: #999999;
}

* {
    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;
}
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;
}

/* ===== 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;
}

.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;
}

.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;
}

/* Desktop hover/focus states - only apply on larger screens */
@media (min-width: 769px) {
    .user-menu:hover .dropdown-menu,
    .user-menu:focus-within .dropdown-menu,
    .signin-menu:hover .dropdown-menu,
    .signin-menu:focus-within .dropdown-menu,
    .awards-reception-menu:hover .dropdown-menu,
    .awards-reception-menu:focus-within .dropdown-menu,
    .previous-competitions-menu:hover .dropdown-menu,
    .previous-competitions-menu:focus-within .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-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-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;
}

/* ===== ALL SECTIONS ===== */
.judges, .sponsors, .faq, .past-winners, .entry-fees {
    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 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    align-items: center;
}

.sponsor-logo img {
    max-width: 80%;
    height: auto;
    width: 100%;
}

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

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

.faq-item {
    text-align: center;
    position: relative;
}

.faq-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 10%;
    bottom: 10%;
    right: calc(8vw - 55%);
    width: 1px;
    background: var(--white);
}

.sponsor-logo {
    position: relative;
}

.sponsor-logo a {
    display: block;
    text-align: center;
}

.sponsor-logo:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 10%;
    bottom: 10%;
    right: calc(8vw - 55%);
    width: 1px;
    background: var(--white);
}

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

.faq-item {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 5vh;
}

.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);
}

/* ===== 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: 6vh;
}

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

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

/* ===== 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;
  bottom: calc(50% * -0.45);
  right: 20px;
  left: auto;
  transform: none;
}

.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;
}

.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;
}

.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: 2rem;
}

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

/* ===== 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);
}

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;
}

/* ===== 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;
}

.aiga-notice {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9em;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

/* ===== 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;
    }
    
    .categories-grid-bottom {
        max-width: 100%;
    }
    
    .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;
    }
    
    .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 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .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;
    align-items: center;
    gap: 8px;
}

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

.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;
    }
}
