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

:root {
    --primary-purple: #7C3AED;
    --light-purple: #A78BFA;
    --dark-purple: #5B21B6;
    --purple-50: #FAF5FF;
    --purple-100: #F3E8FF;
    --purple-200: #E9D5FF;
    --purple-300: #D8B4FE;
    --purple-600: #9333EA;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --gold: #F59E0B;
    --silver: #9CA3AF;
    --bronze: #CD7F32;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

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

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.main-nav a:hover {
    opacity: 0.8;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-purple);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.age-notice {
    background: var(--dark-purple);
    color: var(--white);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-banner {
    background: linear-gradient(135deg, var(--purple-100) 0%, var(--purple-200) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--dark-purple);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--purple-600) 100%);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.disclaimer-text {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-style: italic;
}

.wheel-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.fortune-wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 8px solid var(--gold);
    overflow: hidden;
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.wheel-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    transform-origin: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
}

.wheel-segment span {
    position: absolute;
    top: 25%;
    right: 20%;
}

.segment-1 {
    background: var(--primary-purple);
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
    transform: rotate(0deg);
}

.segment-2 {
    background: var(--light-purple);
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
    transform: rotate(45deg);
}

.segment-3 {
    background: var(--gold);
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
    transform: rotate(90deg);
}

.segment-4 {
    background: var(--primary-purple);
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
    transform: rotate(135deg);
}

.segment-5 {
    background: var(--light-purple);
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
    transform: rotate(180deg);
}

.segment-6 {
    background: var(--primary-purple);
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
    transform: rotate(225deg);
}

.segment-7 {
    background: var(--gold);
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
    transform: rotate(270deg);
}

.segment-8 {
    background: var(--light-purple);
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
    transform: rotate(315deg);
}

.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 40px solid var(--dark-purple);
    z-index: 10;
}

.welcome-section,
.loyalty-program,
.comparison-section,
.why-play-section,
.news-section {
    padding: 4rem 0;
}

.welcome-section {
    background: var(--white);
}

.welcome-section h2,
.loyalty-program h2,
.comparison-section h2,
.why-play-section h2,
.news-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-purple);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--purple-50);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--purple-200);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
    border-color: var(--primary-purple);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--dark-purple);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--gray-700);
    line-height: 1.6;
}

.loyalty-program {
    background: linear-gradient(135deg, var(--purple-50) 0%, var(--white) 100%);
}

.loyalty-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.tier-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--purple-200);
    transition: all 0.3s;
}

.tier-card:hover,
.tier-card.featured {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.2);
    border-color: var(--primary-purple);
}

.tier-card.featured {
    border-width: 3px;
}

.tier-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.tier-badge.bronze {
    background: var(--bronze);
}

.tier-badge.silver {
    background: var(--silver);
}

.tier-badge.gold {
    background: var(--gold);
}

.tier-badge.platinum {
    background: linear-gradient(135deg, #E5E4E2 0%, #BCC6CC 100%);
    color: var(--gray-800);
}

.tier-card h3 {
    color: var(--dark-purple);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.tier-benefits {
    list-style: none;
}

.tier-benefits li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.tier-benefits li:last-child {
    border-bottom: none;
}

.loyalty-note,
.comparison-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-style: italic;
}

.comparison-section {
    background: var(--gray-50);
}

.comparison-table {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--dark-purple);
    color: var(--white);
    font-weight: 700;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-header .comparison-cell {
    font-size: 1.125rem;
}

.comparison-row .comparison-cell:first-child {
    justify-content: flex-start;
    font-weight: 600;
    color: var(--gray-800);
}

.highlight-cell {
    background: var(--purple-50);
    color: var(--primary-purple);
    font-weight: 700;
}

.why-play-section {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--purple-50) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--purple-200);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
    border-color: var(--primary-purple);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--dark-purple);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-card p {
    color: var(--gray-700);
    line-height: 1.6;
}

.news-section {
    background: linear-gradient(135deg, var(--purple-50) 0%, var(--white) 100%);
}

.news-carousel {
    position: relative;
    margin-top: 3rem;
}

.news-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    overflow: hidden;
}

.news-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.2);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: var(--primary-purple);
    font-size: 0.875rem;
    font-weight: 600;
}

.news-card h3 {
    color: var(--dark-purple);
    margin: 0.5rem 0 1rem;
    font-size: 1.25rem;
}

.news-card p {
    color: var(--gray-700);
    line-height: 1.6;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--dark-purple);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

.age-restriction-banner {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
    padding: 3rem 0;
}

.restriction-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.restriction-icon {
    font-size: 4rem;
}

.restriction-text {
    flex: 1;
    color: var(--white);
}

.restriction-text h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.restriction-text p {
    font-size: 1rem;
    line-height: 1.6;
}

.site-footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-column p {
    color: var(--gray-300);
    line-height: 1.6;
    font-size: 0.875rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--light-purple);
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.footer-disclaimer h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-disclaimer p {
    color: var(--gray-300);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-disclaimer strong {
    color: var(--white);
}

.help-resources {
    list-style: none;
    margin-top: 1rem;
}

.help-resources li {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.help-resources li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--light-purple);
}

.help-resources a {
    color: var(--light-purple);
    text-decoration: none;
}

.help-resources a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-links-bottom {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-links-bottom a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-links-bottom a:hover {
    color: var(--light-purple);
}

.legal-page {
    padding: 3rem 0;
    background: var(--gray-50);
    min-height: calc(100vh - 200px);
}

.legal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    color: var(--dark-purple);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.update-date {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.legal-notice {
    background: var(--purple-50);
    border-left: 4px solid var(--primary-purple);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.legal-notice p {
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.legal-notice ul {
    margin-top: 1rem;
}

.legal-notice li {
    margin-bottom: 0.5rem;
}

.legal-notice strong {
    color: var(--dark-purple);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--dark-purple);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--purple-200);
}

.legal-section h3 {
    color: var(--primary-purple);
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: none;
    margin: 1rem 0;
}

.legal-section ul li {
    color: var(--gray-700);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.legal-section ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 1.25rem;
}

.legal-section a {
    color: var(--primary-purple);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.page-intro {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.help-resources.resource-card,
.resource-card {
    background: var(--purple-50);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--purple-200);
    margin-bottom: 1.5rem;
}

.resource-card h3 {
    color: var(--dark-purple);
    margin-bottom: 0.75rem;
}

.resource-card p {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.help-text {
    margin-top: 1rem;
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .wheel-container {
        width: 300px;
        height: 300px;
    }

    .welcome-features,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .loyalty-tiers {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .welcome-features,
    .benefits-grid,
    .loyalty-tiers,
    .news-track {
        grid-template-columns: 1fr;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 2fr 1fr;
    }

    .comparison-cell:last-child {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .legal-content {
        padding: 1.5rem;
    }

    .carousel-btn {
        display: none;
    }

    .restriction-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Important Disclaimer Banner */
.important-disclaimer-banner {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-bottom: 3px solid #F59E0B;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.disclaimer-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.disclaimer-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #92400E;
}

.disclaimer-content strong {
    color: #78350F;
}

/* Purchases Disclosure */
.purchases-disclosure {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border: 2px solid #3B82F6;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.purchases-disclosure h4 {
    color: #1E40AF;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.purchases-disclosure p {
    color: #1E3A8A;
    line-height: 1.6;
    margin: 0;
}

/* Features Highlight Section (replacement for comparison) */
.features-highlight-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--purple-50) 0%, var(--purple-100) 100%);
}

.features-highlight-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.unique-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 3rem;
}

.feature-highlight {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
}

.feature-highlight .feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-highlight h3 {
    color: var(--primary-purple);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.feature-highlight p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Age Gate Modal */
#age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate-modal {
    background: white;
    border-radius: 16px;
    padding: 48px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.4s ease-out;
}

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

.age-gate-content h2 {
    color: #DC2626;
    margin-bottom: 24px;
    font-size: 2rem;
}

.age-gate-content p {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 16px;
}

.age-disclaimer {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-style: italic;
    padding: 12px;
    background: var(--gray-50);
    border-radius: 8px;
}

.age-gate-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.age-gate-buttons button {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.age-gate-buttons .btn-primary {
    background: var(--primary-purple);
    color: white;
}

.age-gate-buttons .btn-primary:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.age-gate-buttons .btn-secondary {
    background: var(--gray-200);
    color: var(--gray-700);
}

.age-gate-buttons .btn-secondary:hover {
    background: var(--gray-300);
}

.age-gate-disclaimer {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 16px;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .important-disclaimer-banner {
        position: relative;
    }

    .disclaimer-content {
        flex-direction: column;
        text-align: center;
    }

    .disclaimer-content p {
        font-size: 13px;
    }

    .age-gate-modal {
        padding: 32px 24px;
        margin: 20px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .unique-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Sign Up Page Styles */
.signup-page {
    background: linear-gradient(135deg, var(--purple-50) 0%, var(--purple-100) 100%);
    min-height: 100vh;
    padding: 4rem 0;
}

.signup-container {
    max-width: 800px;
    margin: 0 auto;
}

.signup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.signup-header h1 {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.signup-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.signup-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 1.5rem;
}

.signup-form-container {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.signup-form {
    max-width: 100%;
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section h2 {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--purple-200);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
    color: var(--gray-700);
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--primary-purple);
    text-decoration: underline;
}

.form-disclaimers {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 2px solid #F59E0B;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.disclaimer-box {
    margin: 0;
    color: #92400E;
    line-height: 1.8;
}

.disclaimer-box strong {
    color: #78350F;
    font-size: 1.125rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.signup-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.signup-footer a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
}

.signup-footer a:hover {
    text-decoration: underline;
}

.responsible-gaming-notice {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border: 2px solid #3B82F6;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.responsible-gaming-notice h3 {
    color: #1E40AF;
    margin-bottom: 1rem;
}

.responsible-gaming-notice p {
    color: #1E3A8A;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.responsible-gaming-notice a {
    color: #1E40AF;
    font-weight: 600;
    text-decoration: underline;
}

/* Responsive Signup Page */
@media (max-width: 768px) {
    .signup-page {
        padding: 2rem 0;
    }

    .signup-header h1 {
        font-size: 2rem;
    }

    .signup-benefits {
        flex-direction: column;
        gap: 1rem;
    }

    .benefit-item {
        justify-content: center;
    }

    .signup-form-container {
        padding: 2rem 1.5rem;
    }

    .form-section h2 {
        font-size: 1.25rem;
    }
}

/* Game Page Styles */
.game-page {
    background: linear-gradient(135deg, var(--purple-50) 0%, var(--purple-100) 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.game-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.game-header {
    text-align: center;
    margin-bottom: 2rem;
}

.game-header h1 {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.game-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.game-info-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: var(--gray-700);
}

.info-icon {
    font-size: 1.5rem;
}

.game-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.game-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.3s;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay p {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

.game-disclaimers {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.disclaimer-card {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 2px solid #F59E0B;
    border-radius: 12px;
    padding: 2rem;
}

.disclaimer-card h3 {
    color: #78350F;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.disclaimer-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disclaimer-card li {
    color: #92400E;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.disclaimer-card li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #F59E0B;
    font-weight: bold;
}

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

.btn-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border: 2px solid var(--primary-purple);
    border-radius: 8px;
    color: var(--primary-purple);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-control:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-control span {
    font-size: 1.25rem;
}

.responsible-gaming-reminder {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border: 2px solid #3B82F6;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.responsible-gaming-reminder h3 {
    color: #1E40AF;
    margin-bottom: 1rem;
}

.responsible-gaming-reminder p {
    color: #1E3A8A;
    line-height: 1.6;
    margin: 0;
}

.responsible-gaming-reminder a {
    color: #1E40AF;
    font-weight: 600;
    text-decoration: underline;
}

/* Fullscreen mode adjustments */
.game-iframe-wrapper:fullscreen {
    padding-bottom: 0;
}

.game-iframe-wrapper:fullscreen .game-iframe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.game-iframe-wrapper:fullscreen .loading-overlay {
    position: fixed;
}

/* Responsive Game Page */
@media (max-width: 1024px) {
    .game-disclaimers {
        grid-template-columns: 1fr;
    }

    .game-info-bar {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .game-page {
        padding: 1rem 0;
    }

    .game-header h1 {
        font-size: 1.75rem;
    }

    .game-info-bar {
        flex-direction: column;
        gap: 0.75rem;
    }

    .info-item {
        justify-content: center;
        width: 100%;
    }

    .game-iframe-wrapper {
        padding-bottom: 75%; /* Taller for mobile */
    }

    .disclaimer-card,
    .responsible-gaming-reminder {
        padding: 1.5rem;
    }

    .btn-control {
        padding: 0.875rem;
    }
}