@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Roboto:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(45deg, #1a0000 0%, #3d0000 25%, #5c1414 50%, #3d0000 75%, #1a0000 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #fff;
    min-height: 100vh;
    line-height: 1.7;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header {
    background: linear-gradient(135deg, #8b0000 0%, #ff4500 100%);
    padding: 1.5rem 2rem;
    box-shadow: 0 6px 25px rgba(255, 69, 0, 0.5);
    border-bottom: 3px solid #ff6347;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Righteous', cursive;
    font-size: 2.2rem;
    color: #ffeb3b;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 235, 59, 0.6);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    border: 2px solid transparent;
}

nav a:hover {
    color: #ffeb3b;
    border-color: #ffeb3b;
    background: rgba(255, 235, 59, 0.1);
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #ffeb3b;
    transition: all 0.3s ease;
    border-radius: 2px;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.3) 0%, rgba(139, 0, 0, 0.3) 100%);
    border-radius: 25px;
    margin-bottom: 3rem;
    border: 3px solid #ff6347;
    box-shadow: 0 10px 40px rgba(255, 69, 0, 0.4), inset 0 0 50px rgba(255, 235, 59, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '🦂';
    position: absolute;
    font-size: 15rem;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-section h1 {
    font-family: 'Righteous', cursive;
    font-size: 3.8rem;
    margin-bottom: 1rem;
    color: #ffeb3b;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 69, 0, 0.8);
    position: relative;
}

.hero-section p {
    font-size: 1.4rem;
    font-weight: 300;
    color: #ffd700;
    position: relative;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-card {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(61, 0, 0, 0.8) 100%);
    border-radius: 18px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 99, 71, 0.5);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 69, 0, 0.5);
    border-color: #ff6347;
}

.content-card h2 {
    font-family: 'Righteous', cursive;
    color: #ffeb3b;
    margin-bottom: 1.2rem;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.content-card p {
    margin-bottom: 1rem;
    color: #ffd1a3;
    font-size: 1.05rem;
}

.full-width {
    grid-column: 1 / -1;
}

.notice-box {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.4) 0%, rgba(255, 140, 0, 0.4) 100%);
    border: 3px solid #ff6347;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(255, 69, 0, 0.3);
}

.notice-box h3 {
    font-family: 'Righteous', cursive;
    color: #ffeb3b;
    margin-bottom: 1rem;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.notice-box ul {
    margin-left: 2rem;
}

.notice-box li {
    margin-bottom: 0.8rem;
    color: #fff;
}

.game-container {
    text-align: center;
    margin: 3rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.5) 0%, rgba(61, 0, 0, 0.7) 100%);
    border-radius: 20px;
    border: 3px solid #ff6347;
    box-shadow: 0 10px 50px rgba(255, 69, 0, 0.5);
}

.game-container h2 {
    font-family: 'Righteous', cursive;
    color: #ffeb3b;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.game-container p {
    color: #ffd700;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.game-container iframe {
    max-width: 100%;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}

footer {
    background: linear-gradient(135deg, #8b0000 0%, #5c0000 100%);
    padding: 2.5rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 3px solid #ff6347;
    box-shadow: 0 -6px 25px rgba(255, 69, 0, 0.3);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #ffeb3b;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.footer-links a:hover {
    color: #ff6347;
    transform: translateY(-3px);
    text-shadow: 0 0 15px rgba(255, 235, 59, 0.8);
}

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, #8b0000 0%, #3d0000 100%);
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    border: 4px solid #ff6347;
    box-shadow: 0 0 80px rgba(255, 69, 0, 0.8);
}

.age-modal-content h2 {
    font-family: 'Righteous', cursive;
    color: #ffeb3b;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.age-modal-content p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #ffd1a3;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1.3rem 3.5rem;
    font-size: 1.2rem;
    border: 3px solid #ff6347;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Righteous', cursive;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.age-btn.yes {
    background: linear-gradient(135deg, #ff6347 0%, #ff4500 100%);
    color: #fff;
}

.age-btn.yes:hover {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(255, 99, 71, 0.8);
}

.age-btn.no {
    background: linear-gradient(135deg, #555 0%, #333 100%);
    color: #fff;
}

.age-btn.no:hover {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(85, 85, 85, 0.8);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        background: linear-gradient(135deg, #8b0000 0%, #5c0000 100%);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        border-left: 3px solid #ff6347;
    }

    nav ul.active {
        right: 0;
    }

    .grid-layout {
        grid-template-columns: 1fr;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 2.5rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}
