* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom, #1a0b2e 0%, #2d1b4e 100%);
    color: #f3e8ff;
    line-height: 1.7;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.content-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

.content-wrapper.narrow {
    max-width: 1000px;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-modal.hidden {
    display: none;
}

.age-modal-box {
    background: linear-gradient(135deg, #2d1b4e 0%, #5b21b6 100%);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #fbbf24;
    box-shadow: 0 0 60px rgba(251, 191, 36, 0.4);
}

.age-icon {
    font-size: 72px;
    margin-bottom: 25px;
}

.age-modal-box h2 {
    font-size: 38px;
    color: #fbbf24;
    margin-bottom: 20px;
}

.age-modal-box p {
    font-size: 19px;
    margin-bottom: 15px;
    color: #e9d5ff;
}

.age-question {
    font-weight: 700;
    font-size: 21px !important;
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.age-buttons button {
    padding: 18px 45px;
    font-size: 19px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
}

.age-confirm {
    background: #fbbf24;
    color: #1a0b2e;
}

.age-confirm:hover {
    background: #f59e0b;
    transform: scale(1.05);
}

.age-deny {
    background: #dc2626;
    color: white;
}

.age-deny:hover {
    background: #b91c1c;
}

/* Navigation */
.main-navigation {
    background: rgba(26, 11, 46, 0.95);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #fbbf24;
    backdrop-filter: blur(15px);
}

.nav-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: #fbbf24;
    letter-spacing: 1px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle .bar {
    width: 32px;
    height: 4px;
    background: #fbbf24;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: #e9d5ff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #fbbf24;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #fbbf24;
}

.nav-menu a:hover::before {
    width: 100%;
}

/* Header */
.page-header {
    padding: 100px 0 80px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(91, 33, 182, 0.3) 0%, transparent 100%);
}

.header-content h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fbbf24;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 26px;
    color: #e9d5ff;
    font-style: italic;
}

/* Welcome Section */
.welcome-section {
    padding: 70px 0;
}

.welcome-section h2 {
    font-size: 46px;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 30px;
}

.intro-text {
    font-size: 20px;
    text-align: center;
    max-width: 950px;
    margin: 0 auto 50px;
    line-height: 1.9;
    color: #e9d5ff;
}

.key-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.point-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: rgba(91, 33, 182, 0.2);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #fbbf24;
    transition: all 0.3s ease;
}

.point-item:hover {
    background: rgba(91, 33, 182, 0.35);
    transform: translateX(10px);
}

.point-icon {
    font-size: 52px;
    flex-shrink: 0;
}

.point-content h3 {
    font-size: 26px;
    color: #fbbf24;
    margin-bottom: 12px;
}

.point-content p {
    font-size: 17px;
    color: #e9d5ff;
    line-height: 1.7;
}

/* Game Showcase */
.game-showcase {
    padding: 70px 0;
    background: rgba(45, 27, 78, 0.4);
}

.game-showcase h2 {
    font-size: 46px;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 25px;
}

.showcase-description {
    text-align: center;
    font-size: 19px;
    max-width: 900px;
    margin: 0 auto 45px;
    color: #e9d5ff;
    line-height: 1.8;
}

.game-frame {
    max-width: 1300px;
    margin: 0 auto 30px;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    border: 3px solid #7c3aed;
}

.game-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(91, 33, 182, 0.3);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #7c3aed;
}

.game-note p {
    font-size: 17px;
    color: #e9d5ff;
}

/* Benefits Section */
.benefits-section {
    padding: 70px 0;
}

.benefits-section h2 {
    font-size: 46px;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 60px;
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.benefit-card {
    background: rgba(91, 33, 182, 0.2);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #7c3aed;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #fbbf24;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.2);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.benefit-emoji {
    font-size: 42px;
}

.benefit-card h3 {
    font-size: 24px;
    color: #fbbf24;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #e9d5ff;
}

/* About Social Casino */
.about-social-casino {
    padding: 70px 0;
    background: rgba(45, 27, 78, 0.4);
}

.about-social-casino h2 {
    font-size: 42px;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 40px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #e9d5ff;
    margin-bottom: 25px;
}

/* Play Page */
.play-content {
    padding: 60px 0;
}

.play-section h1 {
    font-size: 52px;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 35px;
}

.play-introduction {
    max-width: 950px;
    margin: 0 auto 45px;
}

.play-introduction > p {
    font-size: 19px;
    text-align: center;
    margin-bottom: 35px;
    color: #e9d5ff;
    line-height: 1.8;
}

.gameplay-info {
    background: rgba(91, 33, 182, 0.3);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #7c3aed;
}

.gameplay-info h3 {
    font-size: 24px;
    color: #fbbf24;
    margin-bottom: 18px;
}

.gameplay-info ul {
    list-style-position: inside;
    color: #e9d5ff;
}

.gameplay-info li {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
    min-height: calc(100vh - 250px);
}

.legal-content h1 {
    font-size: 52px;
    color: #fbbf24;
    margin-bottom: 15px;
}

.document-date {
    font-size: 16px;
    color: #a78bfa;
    font-style: italic;
    margin-bottom: 45px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 30px;
    color: #fbbf24;
    margin-bottom: 18px;
    margin-top: 20px;
}

.legal-section p {
    font-size: 17px;
    line-height: 1.9;
    color: #e9d5ff;
    margin-bottom: 18px;
}

.critical-notice {
    background: rgba(251, 191, 36, 0.15);
    border: 3px solid #fbbf24;
    border-radius: 12px;
    padding: 30px;
    margin: 35px 0;
}

.critical-notice h2 {
    margin-top: 0;
    font-size: 32px;
}

/* Footer */
.site-footer {
    background: rgba(26, 11, 46, 0.95);
    padding: 60px 0 25px;
    border-top: 3px solid #fbbf24;
    margin-top: 70px;
}

.footer-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-column h4 {
    font-size: 24px;
    color: #fbbf24;
    margin-bottom: 18px;
}

.footer-column p {
    font-size: 16px;
    color: #e9d5ff;
    margin-bottom: 18px;
    line-height: 1.7;
}

.support-links,
.footer-nav {
    list-style: none;
}

.support-links li,
.footer-nav li {
    margin-bottom: 10px;
}

.support-links a,
.footer-nav a {
    color: #c4b5fd;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.support-links a:hover,
.footer-nav a:hover {
    color: #fbbf24;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid #5b21b6;
    color: #a78bfa;
    font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(26, 11, 46, 0.98);
        flex-direction: column;
        padding: 90px 35px 35px;
        transition: right 0.3s ease;
        border-left: 3px solid #fbbf24;
        align-items: flex-start;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        font-size: 22px;
        padding: 18px 0;
        display: block;
        border-bottom: 1px solid #5b21b6;
    }

    .header-content h1 {
        font-size: 42px;
    }

    .tagline {
        font-size: 20px;
    }

    .welcome-section h2,
    .game-showcase h2,
    .benefits-section h2 {
        font-size: 36px;
    }

    .key-points {
        gap: 25px;
    }

    .point-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
    }

    .play-section h1 {
        font-size: 38px;
    }

    .legal-content h1 {
        font-size: 38px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }
}
