/* Root Color Variables */
:root {
    --primary-color: #36C3AA;
    /* New teal color */
    --primary-dark: #2A9D8A;
    /* Darker red from footer */
    --accent-color: #FF6B35;
    /* Complementary orange accent */
    --text-dark: #000000;
    --text-light: #FFFFFF;
    --text-gray: #666666;
    --container-max-width: 1200px;
    --header-height: 80px;
    --header-height-scrolled: 60px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    height: var(--header-height-scrolled);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    height: 80px;
}

.logo img {
    height: 80px;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 60px;
}

header.scrolled .logo {
    height: 60px;
}


/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 4px;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    transform: translateY(-100%);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px 0;
}

.mobile-menu li {
    text-align: center;
    margin: 10px 0;
}

.mobile-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 20px;
    display: block;
    transition: var(--transition);
}

.mobile-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Main Content */
main {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    padding: 40px 0 0;
    margin-top: 60px;
}

.footer-content {
    padding-bottom: 20px;
}

.disclaimer {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    background-color: var(--primary-dark);
    padding: 15px 0;
    text-align: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(249, 168, 168, 0.9), rgba(160, 62, 62, 0.8));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(255, 153, 0, 0.3) 0%,
            rgba(249, 168, 168, 0.2) 30%,
            rgba(160, 62, 62, 0.1) 60%,
            transparent 100%);
    transform: skewX(-15deg);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: white;
    border-radius: 30px 30px 0 0;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
    background-color: #e68900;
}

/* Second Block - Accent Color Block */
.accent-block {
    background-color: white;
    padding: 80px 0;
    margin: 0;
}

.accent-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--primary-color);
    padding: 60px 40px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(54, 195, 170, 0.2);
}

.accent-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.accent-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Third Block - Games Section */
.games-section {
    position: relative;
    background: linear-gradient(135deg, rgba(249, 168, 168, 0.9), rgba(160, 62, 62, 0.8));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    overflow: hidden;
}

.games-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: white;
    border-radius: 30px 30px 0 0;
    z-index: 3;
}

.games-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.games-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.game-card {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.25);
}

.game-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.game-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.game-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.game-btn:hover {
    transform: translateY(-2px);
    background-color: #e68900;
}

/* Fourth Block - Testimonials */
.testimonials-section {
    background-color: white;
    padding: 80px 0;
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: white;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 168, 168, 0.3);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(249, 168, 168, 0.9), rgba(160, 62, 62, 0.8));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: white;
    padding: 60px 40px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-form {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
    float: right;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
    background-color: #e68900;
}

/* Policy Pages Hero */
.policy-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(249, 168, 168, 0.9), rgba(160, 62, 62, 0.8));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    overflow: hidden;
    text-align: center;
    color: white;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(255, 153, 0, 0.3) 0%,
            rgba(249, 168, 168, 0.2) 30%,
            rgba(160, 62, 62, 0.1) 60%,
            transparent 100%);
    transform: skewX(-15deg);
    z-index: 1;
}

.policy-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: white;
    border-radius: 30px 30px 0 0;
    z-index: 3;
}

.policy-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.policy-hero-subtitle {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.policy-hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.policy-hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Policy Content */
.policy-content {
    background-color: white;
    padding: 80px 0;
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.1rem;
}

.policy-text h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    font-weight: bold;
}

.policy-text h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
    font-weight: bold;
}

.policy-text p {
    margin-bottom: 20px;
}

.policy-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-text li {
    margin-bottom: 10px;
}

.policy-text strong {
    color: var(--primary-color);
    font-weight: bold;
}

/* Game Pages */
.game-page {
    background-color: white;
    min-height: 100vh;
    padding: 120px 0;
}

.game-header {
    text-align: center;
    margin-bottom: 40px;
}

.game-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.game-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
}

.game-placeholder {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.game-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.game-placeholder p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.game-placeholder .play-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.game-placeholder .play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
    background-color: #e68900;
}

/* Fifth Block - CTA */
.cta-section {
    background-color: var(--primary-color);
    padding: 80px 0;
    margin: 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
    background-color: #e68900;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }


    .container {
        padding: 0 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .disclaimer {
        font-size: 13px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .accent-title,
    .games-title,
    .testimonials-title,
    .cta-title {
        font-size: 2rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px 30px;
        font-size: 1rem;
        float: none;
        width: 100%;
    }

    .policy-hero-title {
        font-size: 2.2rem;
    }

    .policy-hero-description {
        font-size: 1rem;
    }

    .policy-text {
        font-size: 1rem;
        padding: 0 20px;
    }

    .policy-text h2 {
        font-size: 1.5rem;
    }

    .policy-text h3 {
        font-size: 1.2rem;
    }

    .game-title {
        font-size: 2rem;
    }

    .game-subtitle {
        font-size: 1rem;
    }

    .game-iframe,
    .game-placeholder {
        height: 500px;
    }

    .game-placeholder h3 {
        font-size: 1.3rem;
    }

    .game-placeholder p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 70px;
        --header-height-scrolled: 50px;
    }

    .logo {
        gap: 10px;
    }

    .logo img {
        height: 40px;
    }

    header.scrolled .logo img {
        height: 30px;
    }

}