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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a0033 0%, #2d0052 50%, #1a0033 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #240046 0%, #3c096c 100%);
    padding: 2rem 1.5rem;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 214, 10, 0.3);
}

.logo {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(255, 214, 10, 0.3));
}

.site-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd60a;
    text-shadow: 0 2px 8px rgba(255, 214, 10, 0.5);
}

.hamburger {
    display: none;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    flex-direction: column;
    gap: 6px;
    background: #7b2cbf;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #ffd60a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    margin-bottom: 0.5rem;
}

.nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    color: #e0e0e0;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(255, 214, 10, 0.1);
    color: #ffd60a;
    transform: translateX(8px);
}

.nav-links a.active {
    background: linear-gradient(90deg, #7b2cbf 0%, #9d4edd 100%);
    color: #ffd60a;
    font-weight: 600;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 2rem;
}

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

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #3c096c 0%, #7b2cbf 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(255, 214, 10, 0.3);
    border: 2px solid #ffd60a;
}

.age-gate-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #ffd60a;
    margin-bottom: 1.5rem;
}

.age-gate-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ffd60a;
    color: #240046;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: scale(1.05);
}

.btn-secondary {
    background: #dc2f55;
    color: #fff;
}

.btn-secondary:hover {
    background: #ff3366;
    transform: scale(1.05);
}

.hero-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.2) 0%, rgba(157, 78, 221, 0.2) 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 214, 10, 0.2);
}

.hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd60a;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(255, 214, 10, 0.4);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #c7b8e0;
}

.page-header {
    text-align: center;
    padding: 2rem;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd60a;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #c7b8e0;
}

.intro-section {
    margin-bottom: 4rem;
}

.intro-card {
    background: linear-gradient(135deg, rgba(60, 9, 108, 0.4) 0%, rgba(123, 44, 191, 0.4) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 214, 10, 0.2);
}

.intro-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.intro-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #ffd60a;
    margin-bottom: 1rem;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.notice-card {
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid;
}

.notice-card.warning {
    background: rgba(220, 47, 85, 0.1);
    border-color: #dc2f55;
}

.notice-card.info {
    background: rgba(10, 189, 227, 0.1);
    border-color: #0abde3;
}

.notice-card.age {
    background: rgba(255, 119, 34, 0.1);
    border-color: #ff7722;
}

.notice-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffd60a;
}

.game-section {
    margin: 4rem 0;
    text-align: center;
}

.game-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #ffd60a;
    margin-bottom: 2rem;
}

.game-container,
.game-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #1a0033;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 214, 10, 0.3);
}

.game-container iframe,
.game-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.game-note {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #c7b8e0;
}

.features-section {
    margin: 4rem 0;
}

.features-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #ffd60a;
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: linear-gradient(135deg, rgba(60, 9, 108, 0.3) 0%, rgba(123, 44, 191, 0.3) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 214, 10, 0.1);
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 214, 10, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #ffd60a;
    margin-bottom: 1rem;
}

.community-section {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.2) 0%, rgba(157, 78, 221, 0.2) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
    border: 1px solid rgba(255, 214, 10, 0.2);
}

.community-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #ffd60a;
    margin-bottom: 1.5rem;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd60a;
}

.stat-label {
    font-size: 1rem;
    color: #c7b8e0;
}

.play-intro {
    margin-bottom: 3rem;
}

.play-info-card {
    background: linear-gradient(135deg, rgba(60, 9, 108, 0.4) 0%, rgba(123, 44, 191, 0.4) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 214, 10, 0.2);
}

.play-info-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #ffd60a;
    margin-bottom: 1rem;
}

.game-play-section {
    margin: 3rem 0;
}

.game-instructions {
    margin: 4rem 0;
}

.game-instructions h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #ffd60a;
    text-align: center;
    margin-bottom: 2rem;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.instruction-card {
    background: linear-gradient(135deg, rgba(60, 9, 108, 0.3) 0%, rgba(123, 44, 191, 0.3) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 214, 10, 0.1);
}

.instruction-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #ffd60a;
    margin-bottom: 1rem;
}

.play-reminder {
    margin: 3rem 0;
}

.reminder-box {
    background: rgba(220, 47, 85, 0.15);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #dc2f55;
}

.reminder-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #ffd60a;
    margin-bottom: 1rem;
}

.reminder-box ul {
    list-style: none;
    padding-left: 1rem;
}

.reminder-box li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    background: linear-gradient(135deg, rgba(60, 9, 108, 0.2) 0%, rgba(123, 44, 191, 0.2) 100%);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 214, 10, 0.1);
}

.legal-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: #ffd60a;
    margin-bottom: 1rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.highlight-section {
    border: 2px solid #ffd60a;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.3) 0%, rgba(157, 78, 221, 0.3) 100%);
}

.resource-list {
    list-style: none;
    padding-left: 1rem;
}

.resource-list li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.resource-list a {
    color: #ffd60a;
    text-decoration: none;
}

.resource-list a:hover {
    text-decoration: underline;
}

.footer {
    background: #10002b;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
    border-top: 2px solid rgba(255, 214, 10, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #ffd60a;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #c7b8e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd60a;
}

.responsible-links {
    list-style: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 214, 10, 0.2);
    color: #c7b8e0;
}

@media (max-width: 968px) {
    .sidebar {
        transform: translateX(-100%);
        width: 280px;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }

    .main-content {
        margin-left: 0;
        padding: 5rem 1.5rem 1.5rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .age-gate-content {
        margin: 1rem;
        padding: 2rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .game-container iframe,
    .game-wrapper iframe {
        height: 400px;
    }

    .community-stats {
        gap: 2rem;
    }
}
