* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to right, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
}

header {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1.3rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: lowercase;
    font-style: italic;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #ffffff;
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

main {
    width: 100%;
}

.hero {
    padding: 6rem 2rem 5rem;
    text-align: center;
    max-width: 1250px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.2rem;
    margin-bottom: 1.8rem;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.35rem;
    max-width: 820px;
    margin: 0 auto 2.8rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 1.4rem 3.5rem;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 60px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.features {
    padding: 5rem 2rem;
    max-width: 1250px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 40px;
}

.features h2 {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 4rem;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.8rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
}

.feature-card h3 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
}

.game-container {
    width: 100%;
    max-width: 1250px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.game-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.game-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.content-section {
    max-width: 1050px;
    margin: 3rem auto;
    padding: 4.5rem 2rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 35px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.content-section h1 {
    font-size: 3.3rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
}

.content-section h2 {
    font-size: 2.1rem;
    margin: 3rem 0 1.5rem;
    color: #ffffff;
    font-weight: 800;
}

.content-section p {
    margin-bottom: 1.6rem;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.6rem;
}

.content-section li {
    margin-bottom: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
}

footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding: 3.5rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    margin-top: 2rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(102, 126, 234, 0.96);
    backdrop-filter: blur(15px);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: rgba(255, 255, 255, 0.98);
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 520px;
    margin: 2rem;
}

.modal-content h2 {
    font-size: 2.7rem;
    margin-bottom: 1.5rem;
    color: #667eea;
    font-weight: 900;
    text-transform: uppercase;
}

.modal-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #333333;
    line-height: 1.7;
}

.modal-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.modal-button {
    padding: 1.2rem 3rem;
    font-size: 1.05rem;
    font-weight: 800;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.modal-button.accept {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.modal-button.accept:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.modal-button.decline {
    background: #e0e0e0;
    color: #333333;
}

.modal-button.decline:hover {
    background: #cccccc;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(102, 126, 234, 0.98);
        backdrop-filter: blur(20px);
        transition: right 0.3s ease;
        padding-top: 5rem;
        border-left: 2px solid rgba(255, 255, 255, 0.2);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        display: block;
        padding: 1.4rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .features h2 {
        font-size: 2.4rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .content-section h1 {
        font-size: 2.4rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.3rem;
    }

    .modal-content {
        padding: 2.5rem;
    }

    .modal-content h2 {
        font-size: 2.2rem;
    }

    .modal-buttons {
        flex-direction: column;
    }
}
