* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    padding-top: 60px; /* Add padding for fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

.top-bar {
    width: 100%;
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    padding: 8px 35px 8px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    margin-right: 30px;
}

.study-link, .mobile-study-link {
    background-color: #ea6a4b;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.study-link:hover, .mobile-study-link:hover {
    background-color: #d4553c;
    transform: translateY(-1px);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    margin-right: 15px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #ea6a4b;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 120px;
}

.mobile-menu.active {
    display: block;
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.domain-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.2em;
    font-weight: 700;
    color: #2552a3;
    text-decoration: none;
    padding: 6px 20px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.domain-name:hover {
    color: #1e4285;
    text-decoration: none;
}

.logo-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.domain-name:hover {
    background-color: #e9ecef;
    border-color: #2552a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#game-container {
    background-color: #f8f9fa;
    padding: 20px;
    margin-top: 0px;
    text-align: center;
    max-width: min(800px, 95vw);
    width: 100%;
    overflow-x: hidden;
}

#game-container h1 {
    margin-bottom: 20px;
}
#game-container h1 {
    color: #1e4285;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: bold;
}

#game-container p.tagline {
    margin-bottom: 50px;
    font-size: 1.3em;
    color: #ea6a4b;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

#game-container p {
    font-size: 1.05em;
    letter-spacing: 0.2px;
}

#game-container h3 {
    color: #2552a3;
}

#game-area {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

#grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: min(330px, 90vw);
    margin: 0 auto;
}

.key-hint {
    font-size: 16px;
    color: #666;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 8px;
}

.grid-cell {
    width: 100px;
    height: 100px;
    background-color: #ffb703;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: default;
    color: #2552a3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.grid-cell.active {
    background-color: #ea6a4b;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Visual mode color styles */
.grid-cell.visual-mode {
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), inset 0 0 0 2px rgba(255, 255, 255, 0.3);
}

#response-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 30px;
}

#response-buttons button {
    width: min(330px, 90vw);
}

.response-btn {
    background-color: #ea6a4b;
    color: white;
    padding: 15px 10px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


.response-btn:active:not(:disabled) {
    transform: scale(0.98);
}

.response-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

button {
    padding: 10px 20px;
    margin: 0;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#start-btn, #pause-btn, #reset-btn {
    width: 100%;
    padding: 10px 0;
}

#start-btn {
    background-color: #1e4285;
    color: white;
}

#start-btn:hover:not(:disabled) {
    background-color: #163068;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

#pause-btn {
    background-color: #1e4285;
    color: white;
}

#pause-btn:hover:not(:disabled) {
    background-color: #163068;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

#reset-btn {
    background-color: #1e4285;
    color: white;
}

#reset-btn:hover {
    background-color: #163068;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.mute-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 4px 8px;
    transition: opacity 0.3s ease;
    margin-right: 25px;
    box-shadow: none;
}

.mute-btn:hover {
    opacity: 0.8;
}

.mute-btn.unmuted {
    opacity: 1;
}

.mute-btn:not(.unmuted) {
    opacity: 0.6;
}

#scores-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.score-item {
    font-size: 18px;
    color: #333;
}

#trial {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0 30px;
    font-size: 18px;
    color: #333;
}

#score-value, #position-score-value, #letter-score-value, #level-value, #trial-value {
    font-weight: bold;
    color: #ea6a4b;
}

#level {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 60px 0 40px 0;
}

#mode-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 40px 0 15px;
    font-size: 18px;
    width: min(330px, 90vw);
    margin-left: auto;
    margin-right: auto;
}

#mode-selector label {
    color: #333;
    font-weight: bold;
}

#speed-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 25px 0 15px;
    font-size: 18px;
    width: min(330px, 90vw);
    margin-left: auto;
    margin-right: auto;
}

#speed-selector label {
    color: #333;
    font-weight: bold;
}

#speed-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

#speed-slider {
    width: 100%;
    height: 6px;
    background: #ddd;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

#speed-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2552a3;
    cursor: pointer;
    transition: background 0.3s ease;
}

#speed-slider::-webkit-slider-thumb:hover {
    background: #1e4285;
}

#speed-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2552a3;
    cursor: pointer;
    border: none;
}

#speed-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.8em;
    color: #666;
}

#speed-value {
    font-weight: bold;
    color: #2552a3;
    font-size: 0.9em;
}

#supplement-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px 0 50px;
    font-size: 18px;
}

#supplement-selector label {
    color: #333;
    font-weight: bold;
}

#supplement-dropdowns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

#game-mode, .supplement-select {
    padding: 8px 15px;
    font-size: 16px;
    border: 2px solid #2552a3;
    border-radius: 5px;
    background-color: white;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    width: min(330px, 90vw);
}

#game-mode:hover, .supplement-select:hover {
    border-color: #1e4285;
    background-color: #f5f5f5;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

#game-mode:focus, .supplement-select:focus {
    outline: none;
    border-color: #1e4285;
    box-shadow: 0 0 0 2px rgba(30, 66, 133, 0.2);
}

.level-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0 2px;
    font-size: 20px;
    line-height: 1;
    background-color: #2552a3;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.level-btn:hover:not(:disabled) {
    background-color: #1e4285;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.instructions {
    margin-top: 30px;
    padding: 30px;
    background-color: #dde3ef;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.instructions h3 {
    color: #1e4285;
    font-size: 1.3em;
}

.instructions p {
    margin: 10px 0;
    color: #333;
    font-size: 1.1em;
}

.instructions kbd {
    background-color: #92a8d1;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 2px 6px;
    font-family: monospace;
    font-size: 14px;
}

/* Promotional Section */
.promotional-section {
    max-width: min(800px, 95vw);
    width: 100%;
    margin: 20px 0 40px;
    padding: 10px;
    background-color: #f8f9fa;
    text-align: center;
    overflow-x: hidden;
}

.promotional-section h2 {
    color: #1e4285;
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: bold;
}

.promotional-section .tagline {
    font-size: 1.3em;
    color: #ea6a4b;
    margin-bottom: 10px;
    font-weight: 500;
}

.promotional-section .welcome {
    font-size: 1.1em;
    color: #2552a3;
    margin-bottom: 30px;
    font-style: italic;
}

.promotional-section .description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
    text-align: left;
}

.promotional-section h3 {
    color: #1e4285;
    font-size: 1.8em;
    margin: 30px 0 20px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 15px;
    background-color: #faedcd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature .emoji {
    font-size: 1.5em;
    margin-right: 15px;
    margin-top: 2px;
}

.feature strong {
    color: #2552a3;
    display: block;
    margin-bottom: 15px;
    margin-right: 15px;
}

.cta-section {
    margin-top: 40px;
    padding: 30px;
    border-radius: 15px;
    color: 333;
}

.cta-section h3 {
    color: 333;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 25px;
}

.play-now-btn {
    background-color: #ea6a4b;
    color: white;
    font-size: 1.3em;
    font-weight: bold;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 106, 75, 0.3);
}

.play-now-btn:hover {
    background-color: #d4553c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 106, 75, 0.4);
}

.cta-buttons {
    margin-top: 30px;
    text-align: center;
}

.leaderboard-btn {
    background-color: #2552a3;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 82, 163, 0.3);
    margin: 10px;
}

.leaderboard-btn:hover {
    background-color: #1e4285;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 82, 163, 0.4);
    text-decoration: none;
}

/* Supplements Section */
.supplements-section {
    max-width: 100vw;
    width: 100%;
    /* margin: 0px 0; */
    padding: 20px min(20px, 5vw);
    background-color: #f8f9fa;
    text-align: center;
    margin-bottom: 30px;
    overflow-x: hidden;
}

.supplements-section h2 {
    color: #1e4285;
    font-size: 2.2em;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.supplements-intro {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.supplements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
    margin-left: 10%;
    margin-right: 10%;
}

.supplement-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.supplement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.supplement-card h3 {
    color: #2552a3;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.supplement-card p {
    color: #666;
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 15px;
}

.supplement-link {
    color: #ea6a4b;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: color 0.3s ease;
}

.supplement-link:hover {
    color: #d4553c;
    text-decoration: underline;
}

.supplements-disclaimer {
    font-size: 0.9em;
    color: #999;
    font-style: italic;
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Research Section */
.research-section {
    max-width: 800px;
    width: 100%;
    padding: 40px 20px;
    background-color: #f8f9fa;
    text-align: center;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

/* Research Section within Product Pages - inherit natural width like other sections */
.product-page .research-section {
    max-width: none;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    padding: 30px;  /* Match the inline styles in product pages */
}

/* Override for research items in product pages that have inline styles */
.product-page .research-item {
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.6;
}

/* Affiliate Link Section */
.affiliate-section {
    background-color: #f0f8ff;
    border: 2px solid #2552a3;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
}

.affiliate-section h2 {
    color: #1e4285;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.affiliate-section p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.affiliate-button {
    display: inline-block;
    background-color: #2552a3;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.affiliate-button:hover {
    background-color: #1e4285;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.affiliate-disclaimer {
    font-size: 0.85em;
    color: #999;
    font-style: italic;
    margin-top: 15px;
}

.research-section h2 {
    color: #1e4285;
    font-size: 2.2em;
}

/* Leaderboard Country and Workplace Styles */
.country-flag {
    font-size: 1.2em;
    margin-right: 8px;
    vertical-align: middle;
}

.username-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.workplace-info {
    color: #666;
    font-size: 0.9em;
    font-style: italic;
}

.leaderboard-table th.country-column {
    width: 8%;
    text-align: center;
}

.leaderboard-table th.workplace-column {
    width: 25%;
}

.leaderboard-table td.country-cell {
    text-align: center;
    font-size: 1.3em;
}

/* Filter buttons for location-based filtering */
.location-filters {
    margin-top: 15px;
}

.location-filter-btn {
    background-color: #f0f8ff;
    color: #2552a3;
    padding: 6px 15px;
    border: 1px solid #2552a3;
    border-radius: 15px;
    margin: 0 3px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.location-filter-btn.active {
    background-color: #2552a3;
    color: white;
}

.location-filter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.research-intro {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.research-references {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: left;
}

.reference-item {
    background-color: f8f9fa;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    
}

.reference-item h3 {
    color: #1e4285;
    font-size: 1.3em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.reference-link {
    color: #1e4285;
    text-decoration: none;
    transition: color 0.3s ease;
}

.reference-link:hover {
    color: #2552a3;
    text-decoration: underline;
}

.reference-authors {
    color: #2552a3;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1em;
}

.reference-journal {
    color: #666;
    font-style: italic;
    margin-bottom: 10px;
    font-size: 0.95em;
}

.reference-summary {
    color: #333;
    line-height: 1.5;
    margin: 0;
    font-size: 1em;
}

.research-note {
    background-color: #f8f9fa ;
    padding: 20px;
    border-radius: 8px;
    max-width: 800px;
    margin: 30px auto 0;
    color: #856404;
    font-size: 1em;
    line-height: 1.5;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    body {
        padding: 10px;
    }
    
    #game-container {
        padding: 20px;
    }
    
    #game-container h1 {
        font-size: 1.8em;
        margin-bottom: 10px;
    }
    
    #game-container p.tagline {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
    
    #game-area {
        flex-direction: column;
        gap: 20px;
    }
    
    .key-hint {
        font-size: 14px;
    }
    
    #grid-container {
        width: 270px;
        gap: 8px;
        margin: 0 auto;
    }
    
    .grid-cell {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
    
    #response-buttons {
        gap: 8px;
        margin-top: 25px;
    }
    
    .response-btn {
        font-size: 16px;
        padding: 18px 12px;
    }
    
    #controls {
        gap: 8px;
    }
    
    button {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    #scores-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .score-item {
        font-size: 16px;
    }
    
    #level, #trial {
        font-size: 16px;
    }
    
    #mode-selector, #supplement-selector, #speed-selector {
        font-size: 16px;
        width: 270px;
        margin-left: auto;
        margin-right: auto;
    }
    
    #supplement-dropdowns {
        flex-direction: column;
        gap: 8px;
    }
    
    #game-mode, .supplement-select {
        font-size: 14px;
        padding: 6px 10px;
        width: 270px;
    }
    
    .level-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .instructions {
        padding: 15px;
    }
    
    .instructions h3 {
        font-size: 1.2em;
    }
    
    .instructions p {
        font-size: 1em;
    }
    
    .promotional-section {
        margin: 20px 0;
        padding: 20px;
    }
    
    .promotional-section h2 {
        font-size: 2em;
    }
    
    .promotional-section .tagline {
        font-size: 1.1em;
    }
    
    .promotional-section .welcome {
        font-size: 1em;
    }
    
    .promotional-section .description {
        font-size: 1em;
    }
    
    .promotional-section h3 {
        font-size: 1.5em;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature {
        padding: 15px;
    }
    
    .feature strong {
        margin-bottom: 12px;
    }
    
    .cta-section {
        padding: 20px;
    }
    
    .cta-section p {
        font-size: 1.1em;
    }
    
    .play-now-btn {
        font-size: 1.2em;
        padding: 12px 30px;
    }
    
    .supplements-section {
        padding: 30px 15px;
    }
    
    .supplements-section h2 {
        font-size: 1.8em;
    }
    
    .supplements-intro {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
    
    .supplements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .supplement-card {
        padding: 20px;
    }
    
    .supplement-card h3 {
        font-size: 1.3em;
    }
    
    .supplements-disclaimer {
        font-size: 0.85em;
    }
    
    /* Mobile Navigation */
    .desktop-nav {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .top-bar {
        padding: 8px 35px 8px 20px;
    }
    
    
    /* Extra padding for dashboard on mobile */
    body {
        padding-top: 70px;
        padding-left: 5px;
        padding-right: 5px;
    }
    
    #game-container {
        padding: 15px 10px;
        max-width: 100vw;
    }
    
    .promotional-section, .supplements-section {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100vw;
    }
}