* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    background: #fef5ff;
    color: #374151;
    line-height: 1.7;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Check Overlay */
.age-check-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-check-overlay.show {
    display: flex;
}

.age-check-box {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    color: white;
    box-shadow: 0 25px 60px rgba(236, 72, 153, 0.4);
}

.check-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.age-check-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.age-check-box p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    opacity: 0.95;
}

.check-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

.check-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Ubuntu', sans-serif;
}

.yes-btn {
    background: white;
    color: #ec4899;
}

.yes-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.no-btn {
    background: rgba(0, 0, 0, 0.3);
    color: white;
}

.no-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

/* Top Navigation */
.top-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ec4899;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 26px;
    height: 3px;
    background: #374151;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ec4899;
}

/* Main Header */
.main-header {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    padding: 90px 20px;
    text-align: center;
    color: white;
}

.main-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.header-tagline {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.header-pills {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.pill {
    background: rgba(255, 255, 255, 0.25);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Alerts Section */
.alerts-section {
    padding: 80px 20px;
    background: white;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 50px;
}

.alerts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.alert-box {
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s;
}

.alert-box:hover {
    transform: translateY(-8px);
}

.alert-pink {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.alert-purple {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.alert-blue {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.alert-symbol {
    font-size: 3rem;
    margin-bottom: 20px;
}

.alert-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.alert-box p {
    color: #4b5563;
    line-height: 1.8;
}

/* Featured Section */
.featured-section {
    padding: 80px 20px;
    background: #fef5ff;
}

.section-text {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 40px;
}

.featured-game-box {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.15);
}

.featured-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 15px;
}

/* Perks Section */
.perks-section {
    padding: 80px 20px;
    background: white;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.perk-item {
    background: #fef5ff;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.perk-item:hover {
    border-color: #ec4899;
    transform: translateY(-5px);
}

.perk-emoji {
    font-size: 3rem;
    margin-bottom: 20px;
}

.perk-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.perk-item p {
    color: #6b7280;
    line-height: 1.8;
}

/* Story Section */
.story-section {
    padding: 80px 20px;
    background: #fef5ff;
}

.story-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
}

.story-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 25px;
}

.story-left p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.story-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.story-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Action Section */
.action-section {
    padding: 80px 20px;
    background: white;
}

.action-card {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    padding: 70px 40px;
    border-radius: 25px;
    text-align: center;
    color: white;
}

.action-card h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.action-card > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.action-btn {
    display: inline-block;
    background: white;
    color: #ec4899;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.action-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.action-disclaimer {
    margin-top: 25px;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Play Page */
.page-header {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    padding: 70px 20px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.tips-section {
    padding: 70px 20px;
    background: white;
}

.tips-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tip-box {
    background: #fef5ff;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tip-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.tip-box p {
    color: #6b7280;
    line-height: 1.7;
}

.gaming-section {
    padding: 70px 20px;
    background: #fef5ff;
}

.gaming-frame {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.15);
}

.game-embed {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 15px;
}

.play-alert {
    padding: 70px 20px;
    background: white;
}

.alert-message {
    background: #fef3c7;
    padding: 40px;
    border-radius: 18px;
    border-left: 6px solid #f59e0b;
    text-align: center;
}

.alert-message h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 20px;
}

.alert-message p {
    font-size: 1.15rem;
    color: #78350f;
    line-height: 1.8;
}

/* Legal Pages */
.doc-date {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.document-section {
    padding: 70px 20px;
    background: white;
}

.document-content {
    max-width: 900px;
    margin: 0 auto;
}

.document-content h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #ec4899;
    margin-top: 45px;
    margin-bottom: 20px;
}

.document-content h2:first-child {
    margin-top: 0;
}

.document-content p {
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Footer */
.site-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 70px 20px 25px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.3rem;
    color: #ec4899;
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ec4899;
}

.footer-base {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 63px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        padding: 15px 20px;
        border-bottom: 1px solid #f3f4f6;
    }

    .main-header h1 {
        font-size: 2.2rem;
    }

    .header-tagline {
        font-size: 1.1rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .story-layout {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .action-card h2 {
        font-size: 2rem;
    }

    .featured-iframe,
    .game-embed {
        height: 400px;
    }

    .header-pills {
        flex-direction: column;
        align-items: center;
    }
}
