* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg, #ff6b9d 0%, #c06c84 50%, #6c5b7b 100%);
    color: #2d3436;
    min-height: 100vh;
    line-height: 1.7;
}

header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #2d3436;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

nav a:hover {
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
    color: white;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
}

main {
    width: 100%;
}

.hero {
    padding: 6rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 0 0 50px 50px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    max-width: 750px;
    margin: 0 auto 3rem;
    color: white;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: white;
    color: #c06c84;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: 40px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    background: #2d3436;
    color: white;
}

.features {
    padding: 6rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 4rem;
    color: white;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.feature-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #c06c84;
    font-weight: 700;
}

.feature-card p {
    color: #636e72;
    font-size: 1.05rem;
    line-height: 1.8;
}

.game-container {
    width: 100%;
    max-width: 1300px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.game-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 4px solid white;
}

.game-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.content-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 40px;
    margin-top: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.content-section h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #c06c84;
    font-weight: 800;
}

.content-section h2 {
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
    color: #6c5b7b;
    font-weight: 700;
}

.content-section p {
    margin-bottom: 1.5rem;
    font-size: 1.08rem;
    color: #2d3436;
    line-height: 1.8;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 1rem;
    color: #2d3436;
    font-size: 1.05rem;
}

footer {
    background: rgba(255, 255, 255, 0.98);
    padding: 3.5rem 2rem 2rem;
    margin-top: 5rem;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #c06c84;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: #ff6b9d;
    transform: translateY(-2px);
}

.footer-text {
    color: #636e72;
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 52, 54, 0.92);
    backdrop-filter: blur(15px);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 3.5rem;
    border-radius: 35px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 550px;
    margin: 2rem;
}

.modal-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #c06c84;
    font-weight: 800;
}

.modal-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #2d3436;
    line-height: 1.7;
}

.modal-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-button {
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-button.accept {
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.modal-button.accept:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.modal-button.decline {
    background: #dfe6e9;
    color: #2d3436;
}

.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 25px rgba(0, 0, 0, 0.2);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        display: block;
        padding: 1.3rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid #dfe6e9;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .features h2 {
        font-size: 2.3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .content-section h1 {
        font-size: 2.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-content {
        padding: 2.5rem;
    }

    .modal-content h2 {
        font-size: 2.2rem;
    }

    .modal-buttons {
        flex-direction: column;
    }
}
