/* SpinGoose Social Casino - Bright & Playful Design */

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

:root {
    --primary-orange: #ff9500;
    --secondary-blue: #007aff;
    --accent-green: #34c759;
    --accent-pink: #ff2d55;
    --light-bg: #f5f5f7;
    --white: #ffffff;
    --dark-text: #1d1d1f;
    --gray-text: #6e6e73;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.age-modal-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.age-modal-content h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: var(--primary-orange);
    font-weight: 800;
}

.age-modal-content p {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--gray-text);
}

.age-disclaimer {
    font-size: 0.95em !important;
    color: var(--secondary-blue);
    font-weight: 600;
}

.age-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.btn-confirm,
.btn-deny {
    padding: 15px 35px;
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: linear-gradient(135deg, var(--primary-orange), #ffb340);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.4);
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.5);
}

.btn-deny {
    background: #e5e5ea;
    color: var(--gray-text);
}

.btn-deny:hover {
    background: #d1d1d6;
}

/* Top Header Navigation */
.top-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-area svg {
    filter: drop-shadow(0 2px 8px rgba(255, 149, 0, 0.3));
}

.logo-area h1 {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--primary-orange);
    letter-spacing: -0.5px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
    display: flex;
    gap: 5px;
}

.main-nav a {
    padding: 10px 20px;
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: rgba(255, 149, 0, 0.1);
    color: var(--primary-orange);
}

.main-nav a.active {
    background: var(--primary-orange);
    color: white;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ffb340 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-heading {
    font-size: 3.5em;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-text {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.float-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.float-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.float-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -30px;
}

.float-circle:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
}

/* Page Title */
.page-title {
    background: linear-gradient(135deg, var(--secondary-blue), #4da6ff);
    padding: 70px 20px;
    text-align: center;
    color: white;
}

.page-title h2 {
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-title p {
    font-size: 1.2em;
    opacity: 0.95;
}

/* Content Wrapper */
.content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Intro Area */
.intro-area {
    padding: 80px 20px;
    background: white;
}

.intro-area h3 {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 30px;
}

.intro-area p {
    font-size: 1.15em;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 20px;
}

/* Notices Area */
.notices-area {
    padding: 80px 20px;
    background: var(--light-bg);
}

.notices-area h3 {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--secondary-blue);
    text-align: center;
    margin-bottom: 50px;
}

.notice-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.notice-box {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.notice-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.blue-box {
    border-top: 5px solid var(--secondary-blue);
}

.green-box {
    border-top: 5px solid var(--accent-green);
}

.orange-box {
    border-top: 5px solid var(--primary-orange);
}

.notice-emoji {
    font-size: 3em;
    margin-bottom: 20px;
}

.notice-box h4 {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.notice-box p {
    color: var(--gray-text);
    line-height: 1.7;
}

/* Game Showcase */
.game-showcase,
.play-content {
    padding: 80px 20px;
    background: white;
}

.game-showcase h3 {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 25px;
}

.game-description {
    text-align: center;
    font-size: 1.15em;
    color: var(--gray-text);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.game-frame {
    max-width: 900px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background: #000;
}

.game-frame iframe {
    width: 100%;
    height: 600px;
    display: block;
    border: none;
}

.game-tip {
    text-align: center;
    color: var(--accent-green);
    font-weight: 600;
    font-size: 1.05em;
    margin-top: 25px;
}

/* Features Highlight */
.features-highlight {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ea 100%);
}

.features-highlight h3 {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--secondary-blue);
    text-align: center;
    margin-bottom: 50px;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 18px;
}

.feature-card h5 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-text);
}

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

/* Community Area */
.community-area {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.community-area h3 {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 25px;
}

.community-area p {
    font-size: 1.15em;
    color: var(--gray-text);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
}

.community-highlights {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-value {
    font-size: 3.5em;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 5px;
}

.highlight-label {
    font-size: 1.1em;
    color: var(--gray-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Play Content */
.play-intro-box {
    background: linear-gradient(135deg, #f5f5f7, #e8e8ea);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.play-intro-box h3 {
    font-size: 2.2em;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 20px;
    text-align: center;
}

.play-intro-box p {
    font-size: 1.1em;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.how-to-play {
    margin-top: 30px;
}

.how-to-play h4 {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 25px;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.instruction-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.3em;
    line-height: 40px;
    text-align: center;
    margin-bottom: 15px;
}

.instruction-item p {
    color: var(--gray-text);
    line-height: 1.7;
    margin: 0;
}

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

.post-game-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.info-card {
    background: linear-gradient(135deg, #f5f5f7, #e8e8ea);
    padding: 30px;
    border-radius: 15px;
}

.info-card h4 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.info-card p {
    color: var(--gray-text);
    line-height: 1.7;
    margin: 0;
}

/* Legal Pages */
.legal-page {
    padding: 60px 20px;
    background: white;
}

.legal-container {
    max-width: 900px;
}

.legal-container h3 {
    font-size: 2em;
    font-weight: 700;
    color: var(--primary-orange);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-container h4 {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--secondary-blue);
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-container p {
    font-size: 1.05em;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-container ul {
    margin: 18px 0 18px 30px;
    line-height: 1.8;
}

.legal-container li {
    margin-bottom: 10px;
    color: var(--gray-text);
}

.terms-summary,
.privacy-summary {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.1), rgba(255, 179, 64, 0.1));
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-orange);
    margin-top: 40px;
}

.disclaimer-alert,
.disclaimer-summary {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(77, 166, 255, 0.1));
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-blue);
    margin: 30px 0;
}

.disclaimer-alert h3,
.disclaimer-summary h3 {
    margin-top: 0;
}

.disclaimer-footer {
    margin-top: 40px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--dark-text);
}

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

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

.footer-col h4 {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-orange);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.resource-links li {
    margin-bottom: 12px;
}

.resource-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-links a:hover {
    color: var(--primary-orange);
}

.copyright {
    margin-top: 20px;
    font-size: 0.95em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .main-nav.active {
        transform: translateY(0);
    }

    .main-nav a {
        padding: 15px;
        text-align: center;
    }

    .hero-heading {
        font-size: 2.2em;
    }

    .hero-text {
        font-size: 1.1em;
    }

    .page-title h2 {
        font-size: 2em;
    }

    .intro-area h3,
    .notices-area h3,
    .game-showcase h3,
    .features-highlight h3,
    .community-area h3 {
        font-size: 2em;
    }

    .game-frame iframe {
        height: 400px;
    }

    .highlight-value {
        font-size: 2.5em;
    }

    .notice-boxes,
    .feature-cards,
    .instruction-grid {
        grid-template-columns: 1fr;
    }

    .community-highlights {
        gap: 30px;
    }

    .age-modal-content {
        padding: 35px 25px;
    }

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

@media (max-width: 480px) {
    .hero-heading {
        font-size: 1.8em;
    }

    .game-frame iframe {
        height: 300px;
    }

    .logo-area h1 {
        font-size: 1.4em;
    }
}
