@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
    color: #222222;
    line-height: 1.7;
    min-height: 100vh;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #ffffff;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    color: #ff6b35;
    text-decoration: none;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-badge {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ff6b35, #ff8c61);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transform: rotate(-5deg);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: #555555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

nav ul li a:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #ff6b35;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff6b35, #ff8c61, #ffa07a);
    padding: 5rem 0;
    text-align: center;
    color: #ffffff;
}

.hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section:nth-child(even) {
    background: #ffffff;
}

.content-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #ff6b35;
    text-align: center;
    letter-spacing: 3px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #ff6b35;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.info-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ff6b35;
    letter-spacing: 2px;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666666;
}

/* Notice Box */
.notice-banner {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-left: 6px solid #ff6b35;
    border-radius: 10px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.15);
}

.notice-banner h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ff6b35;
    letter-spacing: 2px;
}

.notice-banner ul {
    list-style: none;
    font-size: 1.1rem;
    line-height: 2;
}

.notice-banner ul li {
    margin: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.notice-banner ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Game Container */
.game-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.game-container iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Bebas Neue', cursive;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999999;
    font-size: 0.9rem;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-modal-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-top: 6px solid #ff6b35;
}

.age-modal-content h2 {
    font-family: 'Bebas Neue', cursive;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.age-modal-content p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.age-btn.yes {
    background: #ff6b35;
    color: #ffffff;
}

.age-btn.yes:hover {
    background: #ff8c61;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.age-btn.no {
    background: #e0e0e0;
    color: #555555;
}

.age-btn.no:hover {
    background: #cccccc;
}

.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 85px;
        left: -100%;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        left: 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .logo {
        font-size: 2rem;
    }

    .logo-badge {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .content-section h2 {
        font-size: 2.5rem;
    }

    .game-container iframe {
        height: 500px;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }
}
