/* PlayZoro CSS - Vibrant Orange Theme */

:root {
    --primary-color: #ff8c00;
    --secondary-color: #ffa500;
    --accent-color: #ffb84d;
    --dark-bg: #1a1a2e;
    --darker-bg: #0f0f1e;
    --light-bg: #16213e;
    --text-color: #f5f5f5;
    --text-muted: #b8b8d1;
    --border-color: #2e3a59;
    --shadow-orange: rgba(255, 140, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

/* Navigation */
.top-nav {
    background: linear-gradient(135deg, var(--darker-bg), var(--light-bg));
    border-bottom: 3px solid var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    font-size: 2rem;
}

.brand-name {
    font-family: 'Righteous', cursive;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--shadow-orange);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 2px solid var(--primary-color);
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--darker-bg);
    background-color: var(--primary-color);
    box-shadow: 0 0 15px var(--shadow-orange);
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 2rem;
    text-align: center;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-heading {
    font-family: 'Righteous', cursive;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--darker-bg);
}

.hero-subheading {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--darker-bg);
    font-weight: 700;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--dark-bg);
    max-width: 800px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--light-bg), var(--dark-bg));
    padding: 3rem 2rem;
    border-bottom: 3px solid var(--primary-color);
}

.header-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.page-title {
    font-family: 'Righteous', cursive;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-description {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.main-container.legal {
    max-width: 900px;
}

/* Content Box */
.content-box {
    background-color: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 3rem;
}

.content-box.highlight {
    border-color: var(--primary-color);
    box-shadow: 0 5px 25px var(--shadow-orange);
}

.section-title {
    font-family: 'Righteous', cursive;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.section-title.centered {
    text-align: center;
}

/* Points Grid */
.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.point-box {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.point-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 25px var(--shadow-orange);
}

.point-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
}

.point-box h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* Game Section */
.game-container {
    background-color: var(--darker-bg);
    border-radius: 10px;
    overflow: hidden;
    margin: 2rem 0;
    border: 3px solid var(--primary-color);
}

.game-container.full {
    margin: 0;
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
}

.game-iframe.full {
    height: 750px;
}

.game-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.game-note-box {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(255, 165, 0, 0.1));
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 3px 15px rgba(255, 184, 77, 0.3);
}

.benefit-card h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* Instructions Grid */
.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.instruction-box {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.instruction-box h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Info List */
.info-list {
    list-style: none;
    margin-top: 1.5rem;
}

.info-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    font-size: 1.05rem;
}

.info-list li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Legal Pages */
.legal-title {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-date {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content section {
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-family: 'Righteous', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--darker-bg), var(--light-bg));
    border-top: 3px solid var(--primary-color);
    padding: 3rem 2rem 1.5rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Righteous', cursive;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-family: 'Righteous', cursive;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Age Modal */
.age-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(10px);
}

.age-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-modal-box {
    background: linear-gradient(135deg, var(--light-bg), var(--darker-bg));
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid var(--primary-color);
    max-width: 500px;
    margin: 0 20px;
    box-shadow: 0 10px 50px var(--shadow-orange);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-logo {
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--shadow-orange);
}

.modal-header h2 {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    color: var(--text-color);
}

.modal-body {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-body p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.modal-disclaimer {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

.btn-confirm,
.btn-decline {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.btn-confirm {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.btn-confirm:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 5px 20px var(--shadow-orange);
}

.btn-decline {
    background-color: #dc3545;
    color: white;
}

.btn-decline:hover {
    background-color: #c82333;
    transform: scale(1.05);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--light-bg);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        border-bottom: 3px solid var(--primary-color);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-subheading {
        font-size: 1.4rem;
    }

    .hero-text {
        font-size: 1.05rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .game-iframe,
    .game-iframe.full {
        height: 450px;
    }

    .points-grid,
    .benefits-grid,
    .instructions-grid {
        grid-template-columns: 1fr;
    }

    .modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.5rem;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .content-box {
        padding: 2rem;
    }

    .game-iframe,
    .game-iframe.full {
        height: 350px;
    }
}
