/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Root Variables */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --background-color: #f8f9fa;
    --text-color: #2c3e50;
    --border-radius: 8px;
    --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
html {
    height: 100%;
    font-size: 16px;
}

body {
    min-height: 100%;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Layout */
.clicker-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    min-height: 100vh;
    box-shadow: var(--box-shadow);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    box-shadow: var(--box-shadow);
}

/* Banner */
.banner {
    background: linear-gradient(135deg, #FF0000, #800080);
    color: white;
    text-align: center;
    padding: 1rem 0;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner h1 {
    font-family: 'Droid Serif', serif;
    font-weight: 700;
    font-style: italic;
    font-size: 5.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    margin: 0;
    padding: 0;
    line-height: 0.9;
    transform: scale(1.1);
}

/* Navigation */
.nav-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.36rem;
    background-color: #FFD700;
    border-bottom: 2px solid #DAA520;
    white-space: nowrap;
    overflow-x: auto;
}

.nav-bar a {
    color: #000;
    text-decoration: none;
    padding: 0.3rem 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
    transition: none;
    border-radius: 0;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}

.nav-bar a:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 2px;
    background-color: #DAA520;
}

.nav-bar a:hover {
    background-color: #DAA520;
    color: white;
}

.nav-bar a:hover::after {
    background-color: white;
}

.mobile-text {
    display: none;
}

/* Game Container */
.game-container {
    max-width: 800px;
    margin: 0.5rem auto;
    padding: 0;
    background-color: white;
}

/* User Setup */
.user-setup {
    display: flex;
    gap: 0.75rem;
    margin: 20px auto 0 auto;
    padding: 0.2rem;
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
}

#username {
    flex: 1;
    padding: 0.6rem 0.8rem;
    border: 2px solid #DAA520;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    transition: none;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}

#username::placeholder {
    color: #999;
    font-style: italic;
    font-weight: 700;
}

#username:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
    background-color: #fff;
}

#username:hover {
    border-color: #FFD700;
}

.button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0 auto;
    position: relative;
    width: 90%;
    max-width: 500px;
}

.click-btn {
    position: relative;
    width: 100%;
    height: 120px;
    background: #FFD700;
    border: 3px solid #FFD700;
    padding: 20px 0;
    cursor: pointer;
    transition: none !important;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    will-change: transform;
    transform: translateZ(0);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.click-btn:active {
    transform: scale(0.98);
}

.glock-text {
    font-family: 'Droid Serif', serif;
    font-weight: 700;
    font-style: italic;
    font-size: 5rem;
}

.mute-btn {
    padding: 0.4rem;
    font-size: 1.1rem;
    background: #f8f9fa;
    color: #333;
    border: 2px solid #DAA520;
    border-radius: 50%;
    cursor: pointer;
    transition: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
}

.mute-btn:hover {
    background: #FFD700;
    color: #000;
    transform: scale(1.1);
}

/* Click Area */
.click-area {
    margin-top: -0.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    padding: 0 1rem;
    background-color: white;
}

.selected-character {
    display: inline-block;
    width: 76%;
    max-width: 76%;
    height: auto;
    min-height: 228px;
    max-height: 45.6vh;
    margin: 20px auto 5px auto;
    background-color: white;
    border: none;
    position: relative;
    overflow: visible;
}

.selected-character img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
    background-color: white;
    transition: transform 0.1s ease;
    display: block;
}

.selected-character img:hover {
    transform: scale(1.05);
}

.click-count {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    z-index: 10;
    white-space: nowrap;
}

.total-clicks {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    z-index: 10;
    white-space: nowrap;
}

/* Leaderboards */
.leaderboards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
    align-items: center;
}

.leaderboard-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 1rem 0;
    align-items: stretch;
}

.leaderboard-section {
    flex: 1 1 320px;
    max-width: 500px;
    min-width: 320px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 1rem;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.leaderboard-section h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.leaderboard {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
}

.leaderboard:first-child {
    order: 2;
}

.leaderboard:last-child {
    order: 1;
}

.leaderboard h2 {
    font-size: 1.1rem;
}

.leaderboard-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid #FFD700;
    background: white;
    transition: all 0.2s ease;
}

.leaderboard-item:hover {
    background: #fff8dc;
    border-bottom-color: #DAA520;
}

.leaderboard-item .rank {
    font-weight: bold;
    color: #666;
    width: 3rem;
}

.leaderboard-item .username {
    flex: 1;
    margin: 0 0.3rem 0 0.3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 20ch;
    word-break: break-all;
}

.leaderboard-item .clicks {
    font-weight: bold;
    color: #000;
    min-width: 4rem;
    text-align: right;
}

.leaderboard-timestamp {
    text-align: center;
    color: #888;
    font-size: 0.8rem;
    margin-top: 1rem;
}

.error-message {
    color: #ff4444;
    text-align: center;
    padding: 1rem;
}

.reset-info {
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.7;
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#user-leaderboard, #weekly-leaderboard {
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

#user-leaderboard.loading, #weekly-leaderboard.loading {
    opacity: 0.5;
}

/* Ensure both leaderboards always take up the same space */
#weekly-leaderboard-section,
#minute-leaderboard-section {
    flex: 1 1 320px;
    max-width: 500px;
    min-width: 320px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .click-count.round-mode,
    .click-count.urgent-mode {
        transform: scale(0.8) !important; /* 20% smaller overall */
        transform-origin: top left !important;
    }
    
    .total-clicks.round-mode {
        transform: scale(0.8) !important; /* 20% smaller overall */
        transform-origin: top right !important;
    }
    
    .banner h1 {
        font-size: 4rem;
        transform: scale(1);
    }
    
    .click-btn {
        padding: 1.5rem 3rem;
        font-size: 4rem;
    }
    
    .selected-character {
        width: 85%;
        max-width: 350px;
        min-height: 250px;
        max-height: 50vh;
    }

    .selected-character img {
        width: 100%;
        height: 100%;
    }

    .button-container {
        width: 85%;
        max-width: 350px;
    }

    .click-count:not(.round-mode):not(.urgent-mode),
    .total-clicks:not(.round-mode) {
        font-size: 0.9rem;
        padding: 5px 8px;
        top: 8px;
    }

    .click-count:not(.round-mode):not(.urgent-mode) {
        left: 8px;
    }

    .total-clicks:not(.round-mode) {
        right: 8px;
    }

    .nav-bar {
        padding: 0.3rem;
        gap: 0.5rem;
        height: 35px;
        overflow: hidden;
    }

    .nav-bar a {
        padding: 0.25rem 0.6rem;
        font-size: 0.9rem;
        height: auto;
    }

    .mute-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        margin-left: 0.3rem;
    }

    .game-container {
        margin: 0.4rem auto;
    }

    .leaderboards {
        gap: 1rem;
    }
    
    .leaderboard {
        min-width: 200px;
    }

    .glock-text {
        font-size: 4.5rem;
    }
}

@media (max-width: 480px) {
    .click-count.round-mode,
    .click-count.urgent-mode {
        transform: scale(0.8) !important; /* 20% smaller overall */
        transform-origin: top left !important;
    }
    
    .total-clicks.round-mode {
        transform: scale(0.8) !important; /* 20% smaller overall */
        transform-origin: top right !important;
    }
    
    .banner {
        height: 70px;
        padding: 0.7rem 0;
    }

    .banner h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .user-setup {
        padding: 0.05rem;
        margin-bottom: 0;
    }

    .mute-btn {
        width: auto;
        height: auto;
        font-size: 0.8rem;
        margin-left: 0.2rem;
        padding: 0;
        background: none;
        border: none;
        border-radius: 0;
        color: #000;
    }

    #username {
        padding: 0.3rem 0.5rem;
        font-size: 0.9rem;
        border-width: 1px;
    }

    .click-btn {
        position: relative;
        width: 100%;
        height: 100%;
        background: #FFD700;
        border: 3px solid #FFD700;
        padding: 0;
        cursor: pointer;
        transition: none !important;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        will-change: transform;
        transform: translateZ(0);
        border-radius: 8px;
        font-size: 3rem;
    }

    .glock-text {
        font-family: 'Droid Serif', serif;
        font-weight: 700;
        font-style: italic;
        font-size: 3rem;
    }

    .click-count:not(.round-mode):not(.urgent-mode),
    .total-clicks:not(.round-mode) {
        font-size: 0.8rem;
        padding: 4px 6px;
        top: 6px;
    }

    .click-count:not(.round-mode):not(.urgent-mode) {
        left: 6px;
    }

    .total-clicks:not(.round-mode) {
        right: 6px;
    }

    .button-container {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px auto 0 auto;
        position: relative;
        width: 80%;
        max-width: 280px;
    }

    .selected-character {
        width: 100%;
        max-width: 100%;
        min-height: 200px;
        max-height: 40vh;
        margin: 20px 0 30px 0;
    }

    .selected-character img {
        width: 100%;
        height: 100%;
    }

    .game-container {
        margin: 0.3rem auto;
    }

    .click-area {
        margin-top: -0.4rem;
        padding: 0 0.3rem;
        margin-bottom: 1rem;
    }

    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: inline;
    }

    .leaderboards {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .leaderboard-container {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        margin: 1rem 0;
    }
    
    .leaderboard-section {
        width: 100%;
        max-width: 100%;
        margin: 0;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 10px;
        padding: 1rem;
    }
    
    .leaderboard {
        width: 100%;
        max-width: 100%;
    }

    .leaderboard:first-child {
        order: 2;
    }

    .leaderboard:last-child {
        order: 1;
    }

    .leaderboard h2 {
        font-size: 1.1rem;
    }

    #user-leaderboard li {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .clicker-container .header .nav-bar {
        padding: 0.07rem 1rem;
        gap: 0;
        justify-content: space-between;
        border-bottom: 1px solid #DAA520;
        min-height: auto;
        align-items: center;
        height: 25px;
        overflow: hidden;
    }

    .clicker-container .header .nav-bar a {
        padding: 0.035rem 0.16rem;
        font-size: 1.05rem;
        height: auto !important;
        line-height: 1.1;
        align-self: center;
        max-height: none;
        min-height: auto;
    }

    .nav-bar a:not(:last-child)::after {
        display: none;
    }

    .leaderboard-item {
        padding: 0.5rem 1rem;
    }
    
    .leaderboard-item .rank {
        width: 25px;
    }
    
    .leaderboard-item .username {
        margin: 0 0.5rem;
        width: 30ch;
    }
}

/* Small mobile devices */
@media (max-width: 360px) {
    .click-count.round-mode,
    .click-count.urgent-mode {
        transform: scale(0.8) !important; /* 20% smaller overall */
        transform-origin: top left !important;
    }
    
    .total-clicks.round-mode {
        transform: scale(0.8) !important; /* 20% smaller overall */
        transform-origin: top right !important;
    }
    
    .banner {
        height: 60px;
        padding: 0.5rem 0;
    }

    .banner h1 {
        font-size: 2rem;
    }

    .clicker-container .header .nav-bar {
        padding: 0.2rem;
        gap: 0.3rem;
        height: 30px;
        overflow: hidden;
        font-size: 0.7rem;
    }

    .clicker-container .header .nav-bar a {
        padding: 0.2rem 0.4rem;
        font-size: 0.7rem;
        height: auto;
        min-width: auto;
        border-radius: 3px;
    }

    .mute-btn {
        width: auto;
        height: auto;
        font-size: 0.7rem;
        margin-left: 0.1rem;
        padding: 0;
        background: none;
        border: none;
        border-radius: 0;
        color: #000;
    }

    .selected-character {
        width: 90%;
        max-width: 300px;
        min-height: 200px;
        max-height: 40vh;
    }

    .selected-character img {
        width: 100%;
        height: 100%;
    }

    .button-container {
        width: 90%;
        max-width: 300px;
    }

    .click-btn {
        position: relative;
        width: 100%;
        height: 100%;
        background: #FFD700;
        border: 2px solid #FFD700;
        padding: 0;
        cursor: pointer;
        transition: none !important;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        will-change: transform;
        transform: translateZ(0);
        border-radius: 6px;
        font-size: 2.5rem;
    }

    .glock-text {
        font-family: 'Droid Serif', serif;
        font-weight: 700;
        font-style: italic;
        font-size: 2.5rem;
    }

    .click-count:not(.round-mode):not(.urgent-mode),
    .total-clicks:not(.round-mode) {
        font-size: 0.7rem;
        padding: 3px 5px;
        top: 5px;
    }

    .click-count:not(.round-mode):not(.urgent-mode) {
        left: 5px;
    }

    .total-clicks:not(.round-mode) {
        right: 5px;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .selected-character {
        height: 200px;
        min-height: 200px;
        padding-bottom: 0;
        max-height: none;
    }
}

/* Ensure touch targets are large enough */
@media (hover: none) {
    .click-btn,
    .mute-btn,
    .nav-bar a {
        min-height: 44px;
        min-width: 44px;
    }
}

.leaderboard-status {
    text-align: center;
    margin: 1rem 0;
    font-weight: bold;
}

.warning-message {
    text-align: center;
    color: var(--accent-color);
    margin: 1rem 0;
    padding: 0.5rem;
    border-radius: var(--border-radius);
}

.loading {
    color: var(--text-color);
    text-align: center;
    font-style: italic;
}

/* Copyright Notice */
.copyright {
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    border-top: 1px solid #eee;
    background-color: #f8f9fa;
}

.copyright p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.one-minute-mode button {
    margin-bottom: 4px;
    height: 40px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Round Mode Enhancements */
.click-count.round-mode,
.click-count.urgent-mode {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 10px !important;
    background: rgba(128, 128, 128, 0.5) !important;
    border: 3px solid #666 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
    color: white !important;
    text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, 2px -2px 0px #000, -2px 2px 0px #000 !important;
    z-index: 10 !important;
    white-space: nowrap !important;
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
}

.total-clicks.round-mode {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 10px !important;
    background: rgba(128, 128, 128, 0.5) !important;
    border: 3px solid #666 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
    color: white !important;
    text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, 2px -2px 0px #000, -2px 2px 0px #000 !important;
    z-index: 10 !important;
    white-space: nowrap !important;
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
}

/* Urgent Mode Styles */
.click-count.urgent-mode {
    background: rgba(255, 0, 0, 0.5) !important;
    border-color: #FF0000 !important;
    animation: urgentPulse 0.5s ease-in-out infinite alternate;
}

.urgent-timer {
    color: white !important;
    font-weight: 900 !important;
    text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, 2px -2px 0px #000, -2px 2px 0px #000, 0 0 10px rgba(255, 255, 255, 0.8) !important;
    animation: urgentGlow 0.3s ease-in-out infinite alternate;
}

/* Urgent Animations */
@keyframes urgentPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
    }
    100% {
        transform: scale(1.02);
        box-shadow: 0 6px 12px rgba(255, 0, 0, 0.5);
    }
}

@keyframes urgentGlow {
    0% {
        text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, 2px -2px 0px #000, -2px 2px 0px #000, 0 0 10px rgba(255, 255, 255, 0.8);
    }
    100% {
        text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, 2px -2px 0px #000, -2px 2px 0px #000, 0 0 20px rgba(255, 255, 255, 1);
    }
}

/* Mobile Responsive for Round Mode */
@media (max-width: 768px) {
    .click-count.round-mode,
    .total-clicks.round-mode {
        font-size: 2rem !important;
        padding: 12px;
        margin: 8px 0;
    }
}

@media (max-width: 480px) {
    .click-count.round-mode,
    .total-clicks.round-mode {
        font-size: 1.8rem !important;
        padding: 10px;
        margin: 6px 0;
    }
}

@media (max-width: 360px) {
    .click-count.round-mode,
    .total-clicks.round-mode {
        font-size: 1.6rem !important;
        padding: 8px;
        margin: 5px 0;
    }
}

/* Round Over Mode Styles */
.click-count.round-over-mode {
    background: transparent !important;
    border: none !important;
    color: white !important;
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-shadow: 3px 3px 0px #000, -3px -3px 0px #000, 3px -3px 0px #000, -3px 3px 0px #000, 0 0 10px rgba(0, 0, 0, 0.8) !important;
    z-index: 10 !important;
    white-space: nowrap !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: auto !important;
    max-width: 90% !important;
}

/* Round Over Overlay */
.round-over-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    text-shadow: 3px 3px 0px #000, -3px -3px 0px #000, 3px -3px 0px #000, -3px 3px 0px #000, 0 0 10px rgba(0, 0, 0, 0.8);
    z-index: 15;
    white-space: nowrap;
    max-width: 90%;
    width: auto;
    pointer-events: none;
    overflow: hidden;
}

/* Mobile responsive for Round Over message */
@media (max-width: 768px) {
    .round-over-overlay {
        font-size: 1.3rem !important; /* 35% smaller than 2rem */
    }
}

@media (max-width: 480px) {
    .round-over-overlay {
        font-size: 1.3rem !important; /* 35% smaller than 2rem */
    }
}

@media (max-width: 360px) {
    .round-over-overlay {
        font-size: 1.3rem !important; /* 35% smaller than 2rem */
    }
}

/* COOK OFF Effect */
.cook-off-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FF8C00;
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Droid Serif', serif;
    text-align: center;
    z-index: 1000;
    animation: cookOffPulse 1s ease-in-out infinite;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

@keyframes cookOffPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}

/* Mobile responsive for COOK OFF */
@media (max-width: 768px) {
    .cook-off-overlay {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .cook-off-overlay {
        font-size: 2rem;
    }
}

@media (max-width: 360px) {
    .cook-off-overlay {
        font-size: 1.5rem;
    }
} 