@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;800;900&family=Rubik:wght@400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    background: linear-gradient(180deg, #FFF7ED 0%, #FFEDD5 50%, #FED7AA 100%);
    color: #78350F;
    min-height: 100vh;
    line-height: 1.75;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 30px;
}

header {
    background: white;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.15);
    padding: 1.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Nunito', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 55px;
    height: 55px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #78350F;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
}

nav a:hover {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 35px;
    height: 4px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 4px;
    transition: all 0.3s ease;
}

main {
    padding: 3rem 0;
}

.hero {
    background: white;
    padding: 5rem 3rem;
    border-radius: 35px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.2);
}

h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 5rem;
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 900;
}

h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 3rem;
    color: #F97316;
    margin: 3rem 0 1.5rem;
    font-weight: 800;
}

h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    color: #EA580C;
    margin: 1.5rem 0 1rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.6rem;
    color: #C2410C;
    font-weight: 500;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.notice-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15);
}

.notice-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 0 15px 50px rgba(249, 115, 22, 0.3);
}

.notice-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.game-container {
    background: white;
    border-radius: 35px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.2);
}

.game-frame {
    width: 100%;
    height: 720px;
    border: none;
    border-radius: 25px;
}

.content-section {
    background: white;
    padding: 3rem;
    margin: 2.5rem 0;
    border-radius: 30px;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.feature-box {
    background: linear-gradient(135deg, #FFEDD5 0%, #FED7AA 100%);
    padding: 2.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.feature-box:hover {
    border-color: #F97316;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

footer {
    background: white;
    padding: 3rem 0;
    margin-top: 4rem;
    box-shadow: 0 -4px 20px rgba(249, 115, 22, 0.15);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.responsible-links a {
    color: white;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.responsible-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

.copyright {
    text-align: center;
    color: #C2410C;
    font-weight: 600;
    font-size: 1.05rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 3.5rem;
    border-radius: 35px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.4);
    border: 4px solid #F97316;
}

.modal-content h2 {
    margin-top: 0;
}

.modal-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn {
    padding: 1.3rem 3rem;
    border: none;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-yes {
    background: linear-gradient(135deg, #10B981, #34D399);
    color: white;
}

.btn-yes:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
}

.btn-no {
    background: linear-gradient(135deg, #EF4444, #F87171);
    color: white;
}

.btn-no:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.4);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: white;
        transition: right 0.4s ease;
        padding: 5rem 2rem;
        box-shadow: -5px 0 20px rgba(249, 115, 22, 0.2);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .game-frame {
        height: 500px;
    }

    .notice-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}
