* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Age Verification */
.age-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-overlay.visible {
    display: flex;
}

.age-panel {
    background: white;
    padding: 50px 60px;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.age-panel h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #ff9800;
    font-weight: 900;
}

.age-panel p {
    font-size: 1.15em;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.age-actions {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    justify-content: center;
}

.age-actions button {
    padding: 16px 40px;
    font-size: 1.15em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.btn-verify {
    background: #ff9800;
    color: white;
}

.btn-verify:hover {
    background: #f57c00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

.btn-exit {
    background: #f5f5f5;
    color: #666;
}

.btn-exit:hover {
    background: #e0e0e0;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-size: 1.8em;
    font-weight: 900;
    color: #ff9800;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-hamburger .bar {
    width: 30px;
    height: 3px;
    background: #ff9800;
    border-radius: 3px;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: color 0.3s ease;
    padding: 8px 0;
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    color: #ff9800;
    border-bottom-color: #ff9800;
}

/* Main Header */
.main-header {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    padding: 120px 0;
    text-align: center;
    color: white;
}

.header-content h1 {
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.header-tagline {
    font-size: 1.5em;
    margin-bottom: 40px;
    opacity: 0.95;
}

.header-pills {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pill {
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-cta {
    display: inline-block;
    background: white;
    color: #ff9800;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Intro Block */
.intro-block {
    padding: 80px 0;
    background: #f9f9f9;
}

.intro-block h2 {
    font-size: 2.8em;
    margin-bottom: 30px;
    color: #ff9800;
    font-weight: 800;
    text-align: center;
}

.intro-lead {
    font-size: 1.2em;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Alert Section */
.alert-section {
    padding: 80px 0;
    background: white;
}

.alert-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.alert-card {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.alert-card:hover {
    transform: translateY(-8px);
}

.card-amber {
    background: linear-gradient(135deg, #ffa726 0%, #ff9800 100%);
}

.card-green {
    background: linear-gradient(135deg, #66bb6a 0%, #43a047 100%);
}

.card-red {
    background: linear-gradient(135deg, #ef5350 0%, #e53935 100%);
}

.alert-emoji {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.alert-card h3 {
    font-size: 1.7em;
    margin-bottom: 15px;
    font-weight: 700;
}

.alert-card p {
    font-size: 1.1em;
    line-height: 1.8;
    opacity: 0.95;
}

/* Featured Game */
.featured-game {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #ff9800;
    font-weight: 800;
}

.section-header p {
    font-size: 1.3em;
    color: #666;
}

.game-display {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.game-player {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 15px;
}

.game-callout {
    text-align: center;
    margin-top: 30px;
}

.game-callout p {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: #555;
    font-weight: 600;
}

.btn-secondary {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 15px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15em;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f57c00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

/* Why Clyvra */
.why-clyvra {
    padding: 80px 0;
    background: white;
}

.why-clyvra h2 {
    font-size: 2.8em;
    margin-bottom: 60px;
    color: #ff9800;
    font-weight: 800;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-box {
    background: #f9f9f9;
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid #ff9800;
    transition: all 0.3s ease;
}

.benefit-box:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.benefit-number {
    font-size: 2.5em;
    font-weight: 900;
    color: #ff9800;
    margin-bottom: 15px;
}

.benefit-box h4 {
    font-size: 1.5em;
    margin-bottom: 12px;
    color: #333;
    font-weight: 700;
}

.benefit-box p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #666;
}

/* How It Works */
.how-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.how-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.how-text h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #ff9800;
    font-weight: 800;
}

.how-desc {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
}

.how-list {
    list-style: none;
    counter-reset: how-counter;
}

.how-list li {
    counter-increment: how-counter;
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    padding-left: 40px;
    position: relative;
}

.how-list li::before {
    content: counter(how-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #ff9800;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.how-list li strong {
    color: #ff9800;
}

.how-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.visual-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.visual-card h3 {
    font-size: 2em;
    margin-bottom: 10px;
}

.visual-card p {
    font-size: 1.05em;
    color: #666;
    font-weight: 600;
}

/* Community Section */
.community-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
}

.community-banner {
    text-align: center;
    color: white;
    padding: 60px 40px;
}

.community-banner h2 {
    font-size: 3em;
    margin-bottom: 25px;
    font-weight: 900;
}

.community-banner > p {
    font-size: 1.3em;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Play Page Specific */
.play-header {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.play-header h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: 900;
}

.play-tagline {
    font-size: 1.4em;
    opacity: 0.95;
}

.game-info-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ff9800;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-box h4 {
    font-size: 1.3em;
    margin-bottom: 12px;
    color: #ff9800;
    font-weight: 700;
}

.info-box p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #666;
}

.play-game-section {
    padding: 40px 0 60px;
    background: white;
}

.game-area {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.game-player-full {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
}

.game-alert {
    text-align: center;
    background: linear-gradient(135deg, #ffb74d 0%, #ffa726 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    font-size: 1.15em;
    font-weight: 600;
}

.gameplay-tips {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.gameplay-tips h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #ff9800;
    font-weight: 800;
    text-align: center;
}

.tips-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.tip-item {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tip-emoji {
    font-size: 3em;
    margin-bottom: 20px;
}

.tip-item h4 {
    font-size: 1.4em;
    margin-bottom: 12px;
    color: #ff9800;
    font-weight: 700;
}

.tip-item p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #666;
}

.enjoy-section {
    padding: 60px 0;
    background: white;
}

.enjoy-banner {
    text-align: center;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 60px 40px;
    border-radius: 20px;
}

.enjoy-banner h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ff9800;
    font-weight: 800;
}

.enjoy-banner p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Legal Pages */
.legal-header {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.legal-header h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: 900;
}

.legal-date {
    font-size: 1.2em;
    opacity: 0.95;
}

.legal-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.legal-doc {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-doc h2 {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #ff9800;
    font-weight: 700;
}

.legal-doc h2:first-child {
    margin-top: 0;
}

.legal-doc p {
    font-size: 1.1em;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #555;
}

.legal-doc ul {
    margin: 20px 0 20px 40px;
}

.legal-doc li {
    margin-bottom: 12px;
    font-size: 1.05em;
    line-height: 1.8;
    color: #666;
}

.legal-doc li strong {
    color: #ff9800;
}

.legal-summary {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid #ff9800;
    margin-top: 40px;
}

.legal-summary h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #ff9800;
    font-weight: 700;
}

.legal-summary ul {
    margin: 15px 0 0 25px;
}

.legal-summary li {
    margin-bottom: 12px;
    font-size: 1.1em;
    color: #555;
    font-weight: 600;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #424242 0%, #212121 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: #ff9800;
    font-weight: 700;
}

.footer-col p {
    line-height: 1.8;
    color: #bdbdbd;
    font-size: 1.05em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05em;
}

.footer-links a:hover {
    color: #ff9800;
}

.footer-bar {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9e9e9e;
    font-size: 0.95em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        background: white;
        flex-direction: column;
        padding: 100px 40px 40px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        padding: 20px 0;
        font-size: 1.3em;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .header-content h1 {
        font-size: 2.5em;
    }
    
    .header-tagline {
        font-size: 1.2em;
    }
    
    .how-content {
        grid-template-columns: 1fr;
    }
    
    .how-visual {
        grid-template-columns: 1fr;
    }
    
    .game-player {
        height: 400px;
    }
    
    .game-player-full {
        height: 500px;
    }
    
    .legal-doc {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .age-panel {
        padding: 30px;
        margin: 20px;
    }
    
    .age-actions {
        flex-direction: column;
    }
    
    .header-content h1 {
        font-size: 2em;
    }
    
    .game-player {
        height: 300px;
    }
    
    .game-player-full {
        height: 400px;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
    }
}
