/* Canuck Playhouse - Main Stylesheet */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables */
:root {
    /* Colors */
    --color-snow-white: #FFFAFA;
    --color-near-black: #111111;
    --color-canadian-red: #D80621;
    --color-link-blue: #0056b3;
    --color-platinum: #E5E4E2;
    
    /* Typography */
    --font-family-primary: 'Noto Sans', sans-serif;
    
    /* Layout */
    --max-width-container: 1200px;
    --border-radius-card: 16px;
    --padding-card: 40px;
    --padding-header: 15px 20px;
    
    /* Shadows */
    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-header: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-button-hover: 0 6px 12px rgba(0, 0, 0, 0.2);
    --shadow-button-active: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-button-inner: inset 0 1px 1px rgba(255, 255, 255, 0.4), inset 0 -1px 1px rgba(0, 0, 0, 0.1);
    
    /* Gradients */
    --gradient-red-button: linear-gradient(to bottom, #E82C3D, #D80621);
    --gradient-red-button-active: linear-gradient(to top, #E82C3D, #D80621);
    --gradient-yellow-button: linear-gradient(to bottom, #FFD700, #FFBF00);
}

/* Global Anchor Link Fix */
html {
    scroll-padding-top: 160px;
    scroll-behavior: smooth;
}

/* Body and Global Typography */
body {
    background-color: var(--color-snow-white);
    font-family: var(--font-family-primary);
    color: var(--color-near-black);
    line-height: 1.6;
}

/* Text Alignment Rules */
p {
    text-align: justify;
    margin-bottom: 1rem;
    line-height: 1.6;
}

p:last-child {
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
    margin-bottom: 1rem;
}

/* Links */
a {
    color: var(--color-link-blue);
    font-weight: bold;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

a:hover {
    text-decoration: underline;
}

/* Core Layout Structure - Floating Card System */
.section-container {
    max-width: var(--max-width-container);
    margin: 60px auto 40px auto;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-card);
    padding: 2rem;
}

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

.header__container {
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: var(--padding-header);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo img {
    height: 110px;
    width: auto;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.header__nav-link {
    color: var(--color-near-black);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.header__nav-link:hover {
    color: var(--color-canadian-red);
}

/* Polished Pill Buttons */
.btn-pill {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: bold;
    color: var(--color-snow-white);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-button-inner);
}

.btn-pill--red {
    background: var(--gradient-red-button);
}

.btn-pill--yellow {
    background: var(--gradient-yellow-button);
    color: var(--color-near-black);
}

.btn-pill:hover {
    box-shadow: var(--shadow-button-hover);
    transform: translateY(-2px);
}

.btn-pill:active {
    transform: translateY(0);
    box-shadow: var(--shadow-button-active);
}

.btn-pill--red:active {
    background: var(--gradient-red-button-active);
}

/* Mobile Navigation */
.header__hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.header__hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-near-black);
    margin: 3px 0;
    transition: 0.3s;
}

/* Footer Styles */
.footer {
    background-color: var(--color-canadian-red);
    color: var(--color-snow-white);
    padding: 20px 0;
    margin-top: 40px;
}

.footer__container {
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 0;
}

.footer__menu {
    text-align: center;
    margin-bottom: 15px;
}

.footer__menu-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.footer__menu-link {
    color: var(--color-snow-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer__menu-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer__compliance {
    text-align: center;
    margin-bottom: 15px;
    padding: 8px;
    border: 3px solid white;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.footer__copyright {
    font-size: 10px;
    color: var(--color-platinum);
    line-height: 0.75rem;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

/* Compliance Section Component */
.compliance-section {
    max-width: var(--max-width-container);
    margin: 40px auto;
    border: 3px solid var(--color-canadian-red);
    border-radius: var(--border-radius-card);
    overflow: hidden;
}

.compliance-section__header {
    background-color: var(--color-canadian-red);
    color: var(--color-snow-white);
    padding: 1rem;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.compliance-section__header h3 {
    margin: 0;
    text-align: center;
}

.compliance-section__content {
    background-color: var(--color-snow-white);
    padding: 1rem;
}

.compliance-section__text {
    text-align: justify;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.compliance-section__logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.compliance-section__logo img {
    max-height: 64px;
    width: auto;
    transition: opacity 0.3s ease;
}

.compliance-section__logo:hover img {
    opacity: 0.8;
}

/* Hero Section Styles */
.hero {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero--homepage {
    background-image: url('../images/site-backgrounds/Hero_background_image_1600x900.webp');
}

.hero--about {
    background-image: url('../images/site-backgrounds/Hero_background_image_1600x900_2.webp');
}

.hero--policy {
    background-color: var(--color-canadian-red);
    height: 300px;
}

.hero__content {
    max-width: 832px;
    background-color: rgba(229, 228, 226, 0.85);
    padding: 2rem;
    border-radius: var(--border-radius-card);
    text-align: center;
}

.hero__content--policy {
    max-width: 800px;
    background: none;
    color: var(--color-platinum);
    text-align: left;
}

.hero__content p {
    font-size: 14px;
    text-align: justify;
    color: var(--color-near-black);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.hero__content--policy p {
    color: var(--color-platinum);
    text-align: justify;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero__content--policy p:last-child {
    margin-bottom: 0;
}

/* Center the "Last Updated" element specifically on policy pages */
.hero__content--policy p:has(strong:contains("Last Updated")) {
    text-align: center;
}

/* Fallback for browsers that don't support :has() - target second paragraph */
.hero__content--policy p:nth-child(2) {
    text-align: center;
}

/* Grid Systems */
.grid {
    display: grid;
    gap: 2rem;
}

.grid--3-col {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid--4-col {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid--3x2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid--3x3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card__title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--color-near-black);
}

.feature-card__description {
    font-size: 0.95rem;
    color: var(--color-near-black);
}

/* Game Cards */
.game-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.game-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card__content {
    padding: 1rem;
    text-align: center;
}

.game-card__title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: var(--color-near-black);
}

.game-card__button {
    font-size: 0.875rem;
    padding: 8px 16px;
}

/* Enhanced Leaderboard Styles */
.stats-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stats-table th,
.stats-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.stats-table th {
    background-color: var(--color-canadian-red);
    color: var(--color-snow-white);
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Column width adjustments */
.stats-table th:nth-child(1),
.stats-table td:nth-child(1) {
    width: 25%;
}

.stats-table th:nth-child(2),
.stats-table td:nth-child(2) {
    width: 40%;
}

.stats-table th:nth-child(3),
.stats-table td:nth-child(3) {
    width: 35%;
}

/* Enhanced Leaderboard Rows */
.leaderboard-enhanced .leaderboard-row {
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.leaderboard-enhanced .leaderboard-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.leaderboard-enhanced .leaderboard-row:nth-child(even) {
    background-color: #f9f9f9;
}

/* Top 3 Enhanced Styling */
.leaderboard-row--gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
    font-weight: bold;
    font-size: 1.1rem;
}

.leaderboard-row--gold:hover {
    background: linear-gradient(135deg, #FFE55C 0%, #FFB84D 100%);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.leaderboard-row--silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
    color: #333;
    font-weight: bold;
    font-size: 1.05rem;
}

.leaderboard-row--silver:hover {
    background: linear-gradient(135deg, #D3D3D3 0%, #B8B8B8 100%);
    box-shadow: 0 6px 20px rgba(192, 192, 192, 0.4);
}

.leaderboard-row--bronze {
    background: linear-gradient(135deg, #CD7F32 0%, #B8860B 100%);
    color: #333;
    font-weight: bold;
    font-size: 1.05rem;
}

.leaderboard-row--bronze:hover {
    background: linear-gradient(135deg, #DAA520 0%, #CD853F 100%);
    box-shadow: 0 6px 20px rgba(205, 127, 50, 0.4);
}

/* Trophy Icons */
.trophy-icon {
    font-size: 1.2rem;
    margin-right: 8px;
    display: inline-block;
    animation: trophy-glow 2s ease-in-out infinite alternate;
}

@keyframes trophy-glow {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Cell Styling */
.rank-cell {
    font-weight: bold;
    text-align: center;
    width: 25%;
}

.user-cell {
    font-weight: 600;
    color: #333;
    text-align: center;
    width: 40%;
}

.points-cell {
    font-weight: bold;
    text-align: center;
    font-family: 'Courier New', monospace;
    color: #2c5530;
    width: 35%;
}

/* Top 3 specific cell styling */
.leaderboard-row--gold .user-cell,
.leaderboard-row--silver .user-cell,
.leaderboard-row--bronze .user-cell {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.leaderboard-row--gold .points-cell,
.leaderboard-row--silver .points-cell,
.leaderboard-row--bronze .points-cell {
    color: #1a4a1e;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Hover effects for regular rows */
.leaderboard-enhanced .leaderboard-row:not(.leaderboard-row--gold):not(.leaderboard-row--silver):not(.leaderboard-row--bronze):hover {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-left: 4px solid var(--color-canadian-red);
}

/* Animation for table appearance */
.leaderboard-enhanced {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-table th,
    .stats-table td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
    
    .trophy-icon {
        font-size: 1rem;
        margin-right: 4px;
    }
    
    .rank-cell {
        width: 25%;
    }
    
    .user-cell {
        width: 40%;
    }
    
    .points-cell {
        width: 35%;
    }
}

/* Contact Section - Single Floating Card */
.contact-floating-card {
    max-width: 1200px;
    margin: 60px auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Part 1: Introductory Text (Top) */
.contact-intro {
    padding: 3rem;
    text-align: center;
}

.contact-intro h2 {
    margin-bottom: 2rem;
    color: var(--color-near-black);
}

.contact-intro p {
    text-align: justify;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-intro p:last-child {
    margin-bottom: 0;
}

/* Part 2: Contact Form Block (Bottom) */
.contact-form-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* Left Column: Image */
.contact-form-block__image {
    height: 600px;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.contact-form-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Column: Form */
.contact-form-block__form {
    height: 600px;
    background-color: #6CB4EE;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.contact-form-block__form h3 {
    margin-bottom: 1.5rem;
    color: #FFFAFA;
    text-align: center;
    font-size: 22px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-form-block {
        grid-template-columns: 1fr;
    }
    
    .contact-form-block__image,
    .contact-form-block__form {
        height: 400px;
    }
    
    .contact-intro {
        padding: 2rem;
    }
}



@media (max-width: 768px) {
    .header__nav {
        display: none;
    }
    
    .header__hamburger {
        display: flex;
    }
    
    .footer__menu-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .grid--3-col,
    .grid--4-col,
    .grid--3x2,
    .grid--3x3 {
        grid-template-columns: 1fr;
    }
    
    .section-container {
        margin: 40px 20px 40px 20px;
        padding: 20px;
    }
    
    .hero__content {
        max-width: 90%;
        margin: 0 20px;
    }
    
    .compliance-section {
        margin: 40px 20px;
    }
}

@media (max-width: 480px) {
    .header__container {
        padding: 10px 15px;
    }
    
    .header__logo img {
        height: 80px;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero--policy {
        height: 200px;
    }
    
    .section-container {
        padding: 15px;
    }
}



/* Modal Styles - Complete Rebuild According to Specification */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal--active {
    display: flex;
}

.modal__container {
    width: 480px;
    max-width: 480px;
    min-width: 480px;
    height: 560px;
    background-color: #111111;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    z-index: 2001;
    position: relative;
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #FFFAFA;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Zone 1: Modal Header */
.modal__header {
    margin-bottom: 1.5rem;
}

.modal__title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFAFA;
    text-align: left;
    margin: 0;
}

/* Zone 2: Tab Toggle Buttons */
.modal__tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal__tab {
    flex: 1;
    padding: 12px 24px;
    border: 1px solid #FFBF00;
    border-radius: 9999px;
    background-color: transparent;
    color: #E5E4E2;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}

.modal__tab--active {
    background-color: #FFBF00;
    color: #FFFAFA;
    font-weight: 700;
}

/* Zone 3: Modal Body (Form Fields) */
.modal__body {
    flex: 1;
    margin-bottom: 1.5rem;
}

.modal__tab-content {
    display: none;
}

.modal__tab-content--active {
    display: block;
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form__group label {
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #FFFAFA;
}

.form__group input {
    width: 100%;
    height: 44px;
    background-color: #FFFFFF;
    color: #111111;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 14px;
    font-weight: 600;
    box-sizing: border-box;
}

.form__group input:focus {
    outline: none;
}

/* Zone 4: Modal Footer (Submit Button & Messages) */
.modal__footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal__submit {
    width: 100%;
    height: 48px;
    background-color: #D80621;
    color: #FFFAFA;
    font-weight: 700;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.2);
    transition: all 200ms ease-in-out;
}

.modal__submit:hover {
    background-color: #B8051C;
}

/* Error State (Sign In Tab Only) */
.modal__submit--error {
    background-color: #D80621;
    border-color: #D80621;
    color: #111111;
}

/* Success State (Sign Up Tab Only) */
.modal__submit--success {
    background-color: #00FF00;
    border-color: #00FF00;
    color: #111111;
}

/* Message Container */
.modal__message {
    display: none;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    padding: 0.5rem;
}

.modal__message--error {
    display: block;
    background-color: rgba(17, 17, 17, 0.85);
    border: 1px solid #D80621;
    color: #D80621;
}

.modal__message--success {
    display: block;
    background-color: rgba(17, 17, 17, 0.85);
    border: 1px solid #00FF00;
    color: #00FF00;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-snow-white);
        box-shadow: var(--shadow-header);
        flex-direction: column;
        padding: 1rem;
        transition: top 0.3s ease;
        z-index: 999;
    }
    
    .header__nav--mobile-open {
        top: 100%;
        transform: translateY(-100%);
    }
    
    .header__nav-list {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .header__hamburger--active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .header__hamburger--active span:nth-child(2) {
        opacity: 0;
    }
    
    .header__hamburger--active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}



/* Age Verification Modal Styles */
.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.97);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.age-modal-container {
    max-width: 520px;
    width: 100%;
    background-color: #111111;
    opacity: 0.96;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.age-modal-header {
    background-color: #D80621;
    padding: 1rem 0;
    text-align: center;
}

.age-modal-header h2 {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
}

.age-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    align-items: center;
}

.age-modal-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-icon-circle {
    width: 120px;
    height: 120px;
    border: 4px solid #D80621;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-icon-text {
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
}

.age-modal-text {
    padding: 1.5rem;
}

.age-modal-text p {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
    color: #FFFFFF;
    margin: 0;
}

.age-modal-buttons {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    padding-top: 0;
}

.age-btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.age-btn-yes {
    background-color: #00FF00;
    color: #111111;
}

.age-btn-yes:hover {
    background-color: #00CC00;
}

.age-btn-no {
    background-color: #D80621;
    color: #FFFFFF;
}

.age-btn-no:hover {
    background-color: #B8051C;
}

/* Access Denied State */
.age-modal-denied {
    max-width: 520px;
    width: 100%;
    background-color: #D80621;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.age-denied-title {
    font-size: 24px;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0 0 1rem 0;
}

.age-denied-text {
    font-size: 14px;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .age-modal-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .age-modal-buttons {
        flex-direction: column;
    }
    
    .age-modal-text {
        padding: 1rem;
    }
    
    .age-icon-circle {
        width: 100px;
        height: 100px;
    }
    
    .age-icon-text {
        font-size: 20px;
    }
}

