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

:root {
    --primary-red: #dc2626;
    --secondary-red: #b91c1c;
    --accent-gold: #fbbf24;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background: #ffffff;
    --background-alt: #f9fafb;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --hover-red: #991b1b;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-red);
    font-weight: 700;
}

.logo a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-red);
}

.nav-menu a.active {
    color: var(--primary-red);
    font-weight: 600;
}

.btn-nav {
    background: var(--primary-red);
    color: white !important;
    padding: 8px 20px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.btn-nav:hover {
    background: var(--hover-red);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.hero-image {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn-primary {
    background: white;
    color: var(--primary-red);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: 2px solid white;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-red);
}

/* Sections */
.section {
    padding: 80px 20px;
}

.section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 48px;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 32px;
}

/* Draws Section */
.draws-section {
    background: var(--background-alt);
}

.draws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.draw-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.draw-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.draw-card.featured {
    border: 2px solid var(--accent-gold);
    position: relative;
}

.draw-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

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

.draw-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.draw-description {
    color: var(--text-light);
    margin-bottom: 24px;
    min-height: 100px;
}

.draw-details {
    background: var(--background-alt);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.detail-item {
    margin-bottom: 8px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item strong {
    color: var(--text-dark);
}

.btn-draw {
    width: 100%;
    background: var(--primary-red);
    color: white;
    padding: 14px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-draw:hover {
    background: var(--hover-red);
}

.btn-draw-alt {
    width: 100%;
    background: transparent;
    color: var(--primary-red);
    padding: 14px;
    border-radius: 8px;
    border: 2px solid var(--primary-red);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-draw-alt:hover {
    background: var(--primary-red);
    color: white;
}

/* How It Works */
.how-it-works {
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.step-card {
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
}

/* Why Choose */
.why-choose {
    background: var(--background-alt);
}

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

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

.feature-card:hover {
    transform: translateY(-4px);
}

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

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* Responsible Play */
.responsible-play {
    background: white;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin: 32px 0;
}

.policy-card {
    background: var(--background-alt);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
}

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

.policy-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.policy-card p {
    color: var(--text-light);
}

.policy-link {
    text-align: center;
    margin-top: 32px;
    font-size: 16px;
}

.policy-link a {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
}

.policy-link a:hover {
    text-decoration: underline;
}

/* Trust & Compliance */
.trust-compliance {
    background: var(--background-alt);
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.badge {
    background: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.compliance-info {
    max-width: 800px;
    margin: 48px auto 0;
}

.help-text {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--success-color);
}

.legal-text {
    background: white;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-light);
}

.warning-text {
    background: var(--primary-red);
    color: white;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--accent-gold);
}

.footer-section p {
    margin-bottom: 12px;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

.partner-logos a {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-logos a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.partner-logos img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 12px;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section h2 {
        font-size: 28px;
    }

    .draws-grid,
    .steps-grid,
    .features-grid,
    .policy-grid {
        grid-template-columns: 1fr;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .partner-logos {
        justify-content: center;
    }

    .partner-logos img {
        height: 40px;
        max-width: 120px;
    }
}

/* About Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
    font-weight: 700;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

.about-story {
    background: white;
}

.story-content {
    max-width: 800px;
    margin: 32px auto 0;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

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

/* Disclaimer Section */
.disclaimer-section {
    background: var(--background-alt);
}

.disclaimer-box {
    background: white;
    border: 3px solid var(--primary-red);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    max-width: 900px;
    margin: 32px auto 0;
}

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

.disclaimer-content h3 {
    font-size: 24px;
    color: var(--primary-red);
    margin-bottom: 16px;
}

.disclaimer-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Team Section */
.team-section {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    text-align: center;
    background: var(--background-alt);
    padding: 32px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 4px solid var(--primary-red);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-role {
    font-size: 16px;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Breadcrumb */
.breadcrumb-link {
    color: white;
    text-decoration: none;
    opacity: 0.9;
}

.breadcrumb-link:hover {
    text-decoration: underline;
    opacity: 1;
}

/* Contact Page Styles */
.contact-section {
    background: white;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    margin-top: 32px;
}

.contact-details h2,
.contact-form-container h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

/* Contact Details */
.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-red);
    text-decoration: underline;
}

/* Contact Form */
.contact-form-container {
    background: var(--background-alt);
    padding: 40px;
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-red);
}

.checkbox-label span {
    font-size: 15px;
    color: var(--text-light);
}

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

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Responsive Contact Page */
@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-container {
        padding: 32px 24px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }
}

/* Buy Tickets Page Styles */
.ticket-purchase-section {
    background: var(--background-alt);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.purchase-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: start;
}

.selection-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.purchase-step {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.purchase-step h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-number {
    color: var(--primary-red);
    font-weight: 700;
}

.draw-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.draw-select:focus {
    outline: none;
    border-color: var(--primary-red);
}

/* Number Picker */
.number-picker-container {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid var(--border-color);
}

.number-picker-container.hidden {
    display: none;
}

.number-picker-container h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.picker-instruction {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 15px;
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.number-btn {
    aspect-ratio: 1;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-btn:hover {
    border-color: var(--primary-red);
    transform: scale(1.05);
}

.number-btn.selected {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.number-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.picker-info {
    text-align: center;
    margin-bottom: 24px;
    padding: 12px;
    background: var(--background-alt);
    border-radius: 8px;
}

.picker-info p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.picker-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.picker-actions button {
    flex: 1;
    min-width: 150px;
}

/* Cart Column */
.cart-column {
    position: relative;
}

.cart-sticky {
    position: sticky;
    top: 100px;
}

.cart-items {
    margin-bottom: 24px;
    min-height: 100px;
}

.cart-empty {
    text-align: center;
    padding: 32px 16px;
    color: var(--text-light);
}

.cart-item {
    padding: 16px;
    background: var(--background-alt);
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cart-item-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.cart-item-numbers {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.cart-number {
    width: 28px;
    height: 28px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.cart-item-price {
    font-weight: 600;
    color: var(--primary-red);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 20px;
    padding: 4px 8px;
    transition: color 0.2s ease;
}

.cart-item-remove:hover {
    color: var(--primary-red);
}

.cart-summary {
    border-top: 2px solid var(--border-color);
    padding-top: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-dark);
}

.total-row {
    font-size: 20px;
    color: var(--text-dark);
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    margin-top: 12px;
}

/* Billing Form */
.billing-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-purchase {
    width: 100%;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 8px;
}

.btn-purchase:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-purchase:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Responsive Buy Tickets Page */
@media (max-width: 1024px) {
    .purchase-layout {
        grid-template-columns: 1fr;
    }

    .cart-sticky {
        position: static;
    }

    .number-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .purchase-step {
        padding: 24px 16px;
    }

    .number-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }

    .number-btn {
        font-size: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .picker-actions {
        flex-direction: column;
    }

    .picker-actions button {
        width: 100%;
    }
}

/* Auth Pages Styles (Login/Register) */
.auth-section {
    background: linear-gradient(135deg, var(--background-alt) 0%, white 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.auth-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.auth-box {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.auth-box h1 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--text-dark);
    text-align: center;
}

.auth-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.5;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: -12px;
}

.forgot-link {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: var(--secondary-red);
    text-decoration: underline;
}

.btn-auth {
    width: 100%;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 8px;
}

.auth-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.auth-footer p {
    color: var(--text-light);
    font-size: 15px;
}

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

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

/* Responsive Auth Pages */
@media (max-width: 640px) {
    .auth-box {
        padding: 32px 24px;
    }

    .auth-box h1 {
        font-size: 28px;
    }

    .auth-section {
        padding: 60px 20px;
    }
}

/* Policy Pages Styles (Cookies, Privacy, etc.) */
.policy-section {
    background: white;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 48px;
    padding: 24px;
    background: var(--background-alt);
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.policy-block {
    margin-bottom: 48px;
}

.policy-block h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.policy-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.policy-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.policy-list li:before {
    content: "•";
    position: absolute;
    left: 12px;
    color: var(--primary-red);
    font-size: 20px;
    font-weight: bold;
}

.cookie-type {
    margin: 24px 0;
    padding: 20px;
    background: var(--background-alt);
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.cookie-type h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.cookie-type p {
    margin-bottom: 0;
    color: var(--text-light);
}

.warning-note {
    padding: 16px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    color: #856404;
    font-weight: 500;
}

.privacy-purpose {
    margin: 24px 0;
    padding: 20px;
    background: var(--background-alt);
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.privacy-purpose h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.privacy-purpose p {
    margin-bottom: 0;
    color: var(--text-light);
}

.highlight-note {
    padding: 16px;
    background: #d4edda;
    border-left: 4px solid #28a745;
    border-radius: 4px;
    color: #155724;
    font-weight: 600;
    margin: 20px 0;
}

.browser-links {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.browser-links li {
    background: var(--background-alt);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.browser-links li:hover {
    background: #e8e8e8;
}

.browser-links a {
    display: block;
    padding: 12px 16px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.browser-links a:hover {
    color: var(--secondary-red);
}

.policy-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

.policy-footer p {
    color: var(--text-light);
    font-style: italic;
}

/* Responsible Play Specific Styles */
.responsible-section {
    margin: 24px 0;
}

.responsible-section h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.responsible-tip {
    margin: 20px 0;
    padding: 16px 20px;
    background: var(--background-alt);
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.responsible-tip h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.responsible-tip p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 15px;
}

.tool-card {
    margin: 20px 0;
    padding: 20px;
    background: var(--background-alt);
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.tool-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.tool-card p {
    margin-bottom: 0;
    color: var(--text-light);
}

.access-note {
    margin-top: 24px;
    padding: 16px;
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    border-radius: 4px;
    color: #0d47a1;
    font-weight: 500;
}

.help-resources {
    margin: 24px 0;
}

.resource-card {
    margin: 20px 0;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.resource-card p {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.resource-card p strong {
    font-size: 20px;
    color: var(--primary-red);
}

.resource-card a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.resource-card a:hover {
    text-decoration: underline;
}

.resource-info {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.support-message {
    margin-top: 32px;
    padding: 20px;
    background: #d4edda;
    border-left: 4px solid #28a745;
    border-radius: 4px;
    color: #155724;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

/* Responsive Policy Pages */
@media (max-width: 768px) {
    .policy-intro {
        font-size: 16px;
        padding: 20px;
    }

    .policy-block h2 {
        font-size: 24px;
    }

    .browser-links {
        grid-template-columns: 1fr;
    }

    .responsible-tip {
        padding: 14px 16px;
    }

    .tool-card {
        padding: 16px;
    }

    .resource-card {
        padding: 20px;
    }
}
