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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, #fff5e6 0%, #ffe4cc 100%);
    color: #2d2d2d;
}

.page-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Navigation */
.top-nav {
    background: #ff6b35;
    box-shadow: 0 3px 15px rgba(255, 107, 53, 0.3);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 888;
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 26px;
    font-weight: 800;
    color: white;
}

.logo-emoji {
    font-size: 32px;
}

.logo-title {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-item.active-nav {
    background: white;
    color: #ff6b35;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-hamburger span {
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.intro-hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
}

.intro-hero h1 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 22px;
    margin-bottom: 35px;
    font-weight: 500;
}

.primary-cta {
    display: inline-block;
    background: white;
    color: #ff6b35;
    padding: 18px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 19px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.primary-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Disclaimers Section */
.disclaimers-section {
    padding: 75px 0;
    background: white;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    color: #ff6b35;
    margin-bottom: 45px;
    text-transform: uppercase;
}

.disclaimer-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.disclaimer-block {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s;
}

.disclaimer-block:hover {
    transform: translateY(-6px);
}

.block-emoji {
    font-size: 50px;
    display: block;
    margin-bottom: 18px;
}

.disclaimer-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.disclaimer-block p {
    font-size: 16px;
    line-height: 1.7;
}

/* Live Game Section */
.live-game-section {
    padding: 75px 0;
    background: #fff5e6;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: #666;
    margin-bottom: 40px;
}

.game-box {
    max-width: 950px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    border: 4px solid #ff6b35;
}

.embedded-game {
    width: 100%;
    height: 620px;
    border: none;
    display: block;
}

/* Features Highlight */
.features-highlight {
    padding: 75px 0;
    background: white;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.feature-box {
    text-align: center;
    padding: 35px;
    background: #fff5e6;
    border-radius: 15px;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.feature-box:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.feature-emoji {
    font-size: 50px;
    display: block;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 22px;
    color: #ff6b35;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-box p {
    color: #666;
    line-height: 1.7;
}

/* About Social Casino */
.about-social-casino {
    padding: 75px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 800;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.visual-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.visual-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* Play Page */
.play-intro-section {
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
}

.play-intro-section h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 18px;
}

.play-tagline {
    font-size: 20px;
    font-weight: 500;
}

.gameplay-area {
    padding: 65px 0;
    background: white;
}

.instructions-panel {
    background: #fff5e6;
    padding: 35px;
    border-radius: 15px;
    border-left: 6px solid #ff6b35;
    margin-bottom: 35px;
}

.instructions-panel h2 {
    font-size: 30px;
    color: #ff6b35;
    margin-bottom: 18px;
    font-weight: 700;
}

.instructions-panel p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.instruction-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.instruction-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px;
    border-radius: 10px;
}

.instruction-emoji {
    font-size: 26px;
    flex-shrink: 0;
}

.instruction-text {
    color: #2d2d2d;
    font-weight: 500;
}

.game-container-full {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    border: 4px solid #ff6b35;
}

.full-game-embed {
    width: 100%;
    height: 730px;
    border: none;
    display: block;
}

/* Legal Pages */
.legal-container {
    padding: 75px 0;
    background: white;
}

.legal-container h1 {
    font-size: 46px;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 800;
    text-transform: uppercase;
}

.terms-content {
    max-width: 920px;
    margin: 0 auto;
    background: #fff5e6;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.date-updated {
    font-style: italic;
    color: #999;
    margin-bottom: 30px;
}

.terms-content h2 {
    font-size: 27px;
    color: #ff6b35;
    margin: 30px 0 16px 0;
    font-weight: 700;
}

.terms-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Footer */
.main-footer {
    background: #2d2d2d;
    color: #e0e0e0;
    padding: 55px 0 25px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 40px;
    margin-bottom: 35px;
}

.footer-block h4 {
    color: #ff6b35;
    font-size: 21px;
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-block p {
    line-height: 1.7;
    color: #b0b0b0;
}

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

.footer-block ul li {
    margin-bottom: 10px;
}

.footer-block ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block ul li a:hover {
    color: #ff6b35;
}

.footer-bottom-text {
    border-top: 1px solid #555;
    padding-top: 22px;
    text-align: center;
    color: #888;
}

/* Age Verification Modal */
.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal-overlay.hidden {
    display: none;
}

.age-modal-box {
    background: white;
    padding: 55px;
    border-radius: 25px;
    text-align: center;
    max-width: 520px;
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.5);
    border: 5px solid #ff6b35;
}

.age-emoji {
    font-size: 68px;
    display: block;
    margin-bottom: 22px;
}

.age-modal-box h2 {
    font-size: 34px;
    color: #ff6b35;
    margin-bottom: 22px;
    font-weight: 800;
}

.age-modal-box p {
    font-size: 17px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.age-modal-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-modal-actions button {
    padding: 16px 42px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-accept {
    background: #ff6b35;
    color: white;
}

.btn-accept:hover {
    background: #ff5722;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-reject {
    background: #ccc;
    color: #666;
}

.btn-reject:hover {
    background: #bbb;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 74px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 74px);
        background: #ff6b35;
        flex-direction: column;
        padding: 30px;
        gap: 18px;
        transition: left 0.3s;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        font-size: 17px;
        padding: 13px 22px;
        display: block;
    }

    .intro-hero h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .disclaimer-blocks {
        grid-template-columns: 1fr;
    }

    .features-layout {
        grid-template-columns: 1fr;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .embedded-game {
        height: 440px;
    }

    .full-game-embed {
        height: 520px;
    }

    .age-modal-box {
        margin: 20px;
        padding: 38px 25px;
    }

    .age-modal-actions {
        flex-direction: column;
    }

    .terms-content {
        padding: 28px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
