* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1650 50%, #1a0a2e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

header {
    background: rgba(16, 6, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(199, 36, 177, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.logo-icon {
    font-size: 36px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo-text {
    background: linear-gradient(135deg, #c724b1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 8px;
}

nav a:hover, nav a.active {
    background: linear-gradient(135deg, #c724b1, #8b5cf6);
    color: #fff;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #c724b1, #8b5cf6);
    border-radius: 3px;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(16, 6, 30, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        transition: right 0.3s;
        border-left: 2px solid rgba(199, 36, 177, 0.3);
    }

    nav.active {
        right: 0;
    }

    nav a {
        width: 100%;
        padding: 15px;
        font-size: 18px;
    }

    .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(7px, -7px);
    }
}

.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(199, 36, 177, 0.1), rgba(139, 92, 246, 0.1));
    border-bottom: 1px solid rgba(199, 36, 177, 0.2);
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #c724b1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: #d0d0d0;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(199, 36, 177, 0.2);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(199, 36, 177, 0.4);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

.intro {
    padding: 80px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.intro-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(199, 36, 177, 0.2);
    transition: all 0.3s;
    text-align: center;
}

.intro-card:hover {
    transform: translateY(-10px);
    background: rgba(199, 36, 177, 0.1);
    border-color: rgba(199, 36, 177, 0.5);
}

.card-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.intro-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #fff;
}

.intro-card p {
    font-size: 16px;
    color: #c0c0c0;
}

.game-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.game-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #c0c0c0;
    margin-bottom: 50px;
}

.game-container {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 20px;
    border: 2px solid rgba(199, 36, 177, 0.3);
    margin-bottom: 20px;
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .game-frame {
        height: 500px;
    }
}

.game-note {
    text-align: center;
    font-size: 16px;
    color: #d0d0d0;
}

.notices {
    padding: 80px 0;
}

.notices h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #fff;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.notice-box {
    padding: 35px;
    border-radius: 16px;
    border: 2px solid;
}

.notice-box.warning {
    background: rgba(255, 152, 0, 0.1);
    border-color: rgba(255, 152, 0, 0.4);
}

.notice-box.info {
    background: rgba(33, 150, 243, 0.1);
    border-color: rgba(33, 150, 243, 0.4);
}

.notice-box.age {
    background: rgba(244, 67, 54, 0.1);
    border-color: rgba(244, 67, 54, 0.4);
}

.notice-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.notice-box p {
    font-size: 16px;
    color: #d0d0d0;
}

.features {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.features h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #fff;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-emoji {
    font-size: 50px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.feature-text p {
    font-size: 16px;
    color: #c0c0c0;
}

.cta {
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    background: linear-gradient(135deg, rgba(199, 36, 177, 0.2), rgba(139, 92, 246, 0.2));
    padding: 60px 40px;
    border-radius: 20px;
    border: 2px solid rgba(199, 36, 177, 0.4);
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content p {
    font-size: 20px;
    color: #d0d0d0;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #c724b1, #8b5cf6);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(199, 36, 177, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

footer {
    background: rgba(16, 6, 30, 0.95);
    padding: 60px 0 30px;
    border-top: 2px solid rgba(199, 36, 177, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    font-size: 15px;
    color: #c0c0c0;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #c724b1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(199, 36, 177, 0.2);
    color: #a0a0a0;
}

.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, #1a0a2e, #2d1650);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid rgba(199, 36, 177, 0.5);
}

.age-gate-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.age-gate-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.age-gate-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #d0d0d0;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.btn-yes, .btn-no {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-yes {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: #fff;
}

.btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.4);
}

.btn-no {
    background: linear-gradient(135deg, #f44336, #da190b);
    color: #fff;
}

.btn-no:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(244, 67, 54, 0.4);
}

@media (max-width: 768px) {
    .age-gate-content {
        padding: 30px;
        margin: 20px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .btn-yes, .btn-no {
        width: 100%;
    }
}

.game-info {
    text-align: center;
    margin-bottom: 40px;
}

.game-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #fff;
}

.game-info p {
    font-size: 18px;
    color: #c0c0c0;
    max-width: 800px;
    margin: 0 auto;
}

.game-instructions {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid rgba(199, 36, 177, 0.3);
    margin-top: 30px;
}

.game-instructions h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #fff;
}

.game-instructions ul {
    list-style: none;
}

.game-instructions li {
    font-size: 16px;
    color: #c0c0c0;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.game-instructions li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #c724b1;
    font-size: 20px;
}

.play-notice {
    padding: 60px 0;
}

.play-notice .notice-box {
    max-width: 900px;
    margin: 0 auto;
}

.terms-content, .privacy-content, .disclaimer-content {
    padding: 60px 0;
}

.terms-content h1, .privacy-content h1, .disclaimer-content h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.content-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(199, 36, 177, 0.3);
    margin-bottom: 30px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.content-section h3 {
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #fff;
}

.content-section p {
    font-size: 16px;
    color: #c0c0c0;
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.content-section li {
    font-size: 16px;
    color: #c0c0c0;
    margin-bottom: 10px;
    line-height: 1.8;
}

.content-section strong {
    color: #fff;
}

.last-updated {
    text-align: center;
    font-size: 14px;
    color: #a0a0a0;
    margin-top: 40px;
}
