* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: #f5f7fa;
    color: #1e272e;
    min-height: 100vh;
    line-height: 1.8;
}

header {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e8eaed;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 300;
    color: #1e272e;
    text-decoration: none;
    letter-spacing: 8px;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
}

nav a {
    color: #636e72;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

nav a:hover {
    color: #1e272e;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #1e272e;
    transition: all 0.3s ease;
}

main {
    width: 100%;
}

.hero {
    padding: 8rem 2.5rem;
    text-align: center;
    background: linear-gradient(180deg, white 0%, #f5f7fa 100%);
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 2rem;
    color: #1e272e;
    font-weight: 200;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #636e72;
    font-weight: 300;
    line-height: 1.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: #1e272e;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 3px;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-button:hover {
    background: #2d3436;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 39, 46, 0.2);
}

.features {
    padding: 7rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 5rem;
    color: #1e272e;
    font-weight: 200;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #1e272e;
    font-weight: 400;
    letter-spacing: 1px;
}

.feature-card p {
    color: #636e72;
    font-size: 1rem;
    line-height: 1.9;
    font-weight: 300;
}

.game-container {
    width: 100%;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2.5rem;
}

.game-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #e8eaed;
}

.game-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2.5rem;
}

.content-section h1 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    color: #1e272e;
    font-weight: 200;
    letter-spacing: 2px;
}

.content-section h2 {
    font-size: 1.8rem;
    margin: 3.5rem 0 1.5rem;
    color: #1e272e;
    font-weight: 300;
    letter-spacing: 1px;
}

.content-section p {
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
    color: #636e72;
    line-height: 1.9;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.8rem;
}

.content-section li {
    margin-bottom: 1rem;
    color: #636e72;
    font-size: 1rem;
}

footer {
    background: white;
    border-top: 1px solid #e8eaed;
    padding: 4rem 2.5rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #636e72;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: #1e272e;
}

.footer-text {
    color: #b2bec3;
    font-size: 0.85rem;
    margin-top: 2rem;
    font-weight: 300;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 39, 46, 0.96);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 4rem;
    border-radius: 5px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 480px;
    margin: 2rem;
}

.modal-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    color: #1e272e;
    font-weight: 300;
    letter-spacing: 2px;
}

.modal-content p {
    font-size: 1.05rem;
    margin-bottom: 2.8rem;
    color: #636e72;
    line-height: 1.8;
    font-weight: 300;
}

.modal-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.modal-button {
    padding: 0.9rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.modal-button.accept {
    background: #1e272e;
    color: white;
}

.modal-button.accept:hover {
    background: #2d3436;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 39, 46, 0.2);
}

.modal-button.decline {
    background: #dfe6e9;
    color: #636e72;
}

.modal-button.decline:hover {
    background: #b2bec3;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: white;
        transition: right 0.3s ease;
        padding-top: 5rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        display: block;
        padding: 1.5rem 2.5rem;
        border-bottom: 1px solid #e8eaed;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .features h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .content-section h1 {
        font-size: 2.2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .modal-content {
        padding: 2.5rem;
    }

    .modal-content h2 {
        font-size: 1.9rem;
    }

    .modal-buttons {
        flex-direction: column;
    }
}
