/* SpinOtter - Playful Social Casino Styling */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-orange: #ff6b35;
    --color-orange-light: #ff8c5f;
    --color-teal: #00d9ff;
    --color-teal-dark: #00a8cc;
    --color-blue: #0077b6;
    --color-bg: #f8f9fa;
    --color-white: #ffffff;
    --color-text: #2d3748;
    --color-text-light: #4a5568;
    --color-border: #e2e8f0;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--color-text);
}

/* Age Verification Gate */
.age-gate {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-gate.active {
    display: flex;
}

.age-gate-box {
    background: linear-gradient(135deg, var(--color-orange), var(--color-teal));
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    max-width: 500px;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-gate-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.age-gate-box p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.age-requirement {
    font-weight: 600;
    font-size: 1.3rem;
    margin: 1.5rem 0;
}

.age-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 1rem;
    justify-content: center;
}

.btn-confirm, .btn-deny {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-confirm {
    background: white;
    color: var(--color-orange);
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-deny {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-deny:hover {
    background: rgba(255, 255, 255, 0.3);
}

.age-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Header */
.top-header {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-orange);
}

.brand-icon {
    font-size: 2.2rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-orange);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.top-nav {
    display: flex;
    gap: 1.5rem;
}

.top-nav a {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.top-nav a:hover,
.top-nav a.nav-active {
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
    color: white;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--color-orange), var(--color-teal));
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-text {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Page Container */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 20px;
}

/* Welcome Box */
.welcome-box {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.welcome-box h2 {
    font-size: 2.5rem;
    color: var(--color-orange);
    margin-bottom: 1.5rem;
}

.welcome-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.orange-card {
    border-top: 5px solid var(--color-orange);
}

.teal-card {
    border-top: 5px solid var(--color-teal);
}

.blue-card {
    border-top: 5px solid var(--color-blue);
}

.card-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-orange);
}

.info-card p {
    color: var(--color-text-light);
}

/* Game Showcase */
.game-showcase {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.game-showcase h2 {
    font-size: 2.5rem;
    color: var(--color-teal-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.game-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.game-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.game-embed {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
}

/* Why Choose Section */
.why-choose {
    margin-bottom: 3rem;
}

.why-choose h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--color-orange);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.reason-item {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reason-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-teal-dark);
}

.reason-item p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.values-section h2 {
    font-size: 2.5rem;
    color: var(--color-orange);
    margin-bottom: 1.5rem;
}

.values-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.values-list {
    list-style: none;
    margin: 1.5rem 0;
}

.values-list li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

/* Responsible Box */
.responsible-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 217, 255, 0.1));
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--color-teal);
}

.responsible-box h2 {
    font-size: 2rem;
    color: var(--color-teal-dark);
    margin-bottom: 1.5rem;
}

.responsible-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.tip-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.responsible-note {
    margin-top: 2rem;
    font-style: italic;
    color: var(--color-text-light);
}

/* Play Page Specific */
.play-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.play-intro h1 {
    font-size: 3rem;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

.play-intro p {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

.full-game-section {
    margin-bottom: 3rem;
}

.game-wrapper-large {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.game-embed-large {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-instructions {
    margin-bottom: 3rem;
}

.game-instructions h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--color-teal-dark);
    margin-bottom: 2rem;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.instruction-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.instruction-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.instruction-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-orange);
}

.instruction-card p {
    color: var(--color-text-light);
}

.play-reminders {
    margin-bottom: 3rem;
}

.play-reminders h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--color-orange);
    margin-bottom: 2rem;
}

.reminder-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.reminder-card {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reminder-emoji {
    font-size: 2rem;
}

.reminder-card p {
    margin: 0;
    color: var(--color-text-light);
}

/* Legal Pages */
.legal-page {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.legal-page h1 {
    font-size: 3rem;
    color: var(--color-orange);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-block {
    margin-bottom: 2.5rem;
}

.legal-block h2 {
    font-size: 2rem;
    color: var(--color-teal-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-block h3 {
    font-size: 1.5rem;
    color: var(--color-orange);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-block p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.legal-block ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-block li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.legal-block a {
    color: var(--color-teal-dark);
    text-decoration: none;
    font-weight: 600;
}

.legal-block a:hover {
    color: var(--color-orange);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--color-orange), var(--color-teal));
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-col p {
    margin-bottom: 1rem;
}

.help-links {
    list-style: none;
}

.help-links li {
    margin-bottom: 0.5rem;
}

.help-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.help-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .top-nav {
        position: fixed;
        top: 70px;
        right: -100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        height: calc(100vh - 70px);
        min-width: 250px;
    }

    .top-nav.active {
        right: 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .welcome-box h2,
    .game-showcase h2,
    .why-choose h2,
    .values-section h2,
    .play-intro h1 {
        font-size: 2rem;
    }

    .game-embed,
    .game-embed-large {
        height: 450px;
    }

    .age-gate-box {
        padding: 2rem;
    }

    .age-actions {
        flex-direction: column;
    }

    .info-cards,
    .reasons-grid,
    .instruction-grid,
    .reminder-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .game-embed,
    .game-embed-large {
        height: 350px;
    }
}
