* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: linear-gradient(135deg, #f5f0fa 0%, #faf5f0 100%);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Age Verification */
.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 31, 162, 0.95) 0%, rgba(81, 45, 168, 0.95) 100%);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verification.active {
    display: flex;
}

.age-box {
    background: white;
    padding: 50px 60px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid #ffd700;
}

.age-emblem {
    font-size: 4em;
    margin-bottom: 20px;
}

.age-box h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #7b1fa2;
    font-weight: 700;
}

.age-box p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.age-controls {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    justify-content: center;
}

.age-controls button {
    padding: 15px 40px;
    font-size: 1.1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.btn-approve {
    background: linear-gradient(135deg, #7b1fa2 0%, #512da8 100%);
    color: white;
    border: 2px solid #ffd700;
}

.btn-approve:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(123, 31, 162, 0.4);
}

.btn-deny {
    background: #e0e0e0;
    color: #666;
}

.btn-deny:hover {
    background: #d0d0d0;
}

/* Navigation */
.top-navigation {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ffd700;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #7b1fa2;
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    font-weight: 900;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: #7b1fa2;
    border-radius: 3px;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: #7b1fa2;
    border-bottom-color: #ffd700;
}

/* Grand Header */
.grand-header {
    background: linear-gradient(135deg, #7b1fa2 0%, #512da8 100%);
    padding: 120px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.grand-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.grand-content {
    position: relative;
    z-index: 1;
}

.grand-content h1 {
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.5em;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.header-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.badge.gold {
    background: rgba(255, 215, 0, 0.25);
    border: 2px solid #ffd700;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: white;
}

.section-heading {
    font-size: 3em;
    margin-bottom: 30px;
    color: #7b1fa2;
    font-weight: 700;
    text-align: center;
}

.welcome-text {
    font-size: 1.15em;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Declarations Section */
.declarations-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f0fa 0%, #faf5f0 100%);
}

.declarations-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.declaration-card {
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.declaration-card:hover {
    transform: translateY(-8px);
}

.declaration-card.purple {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: white;
}

.declaration-card.gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #2c2c2c;
}

.card-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.declaration-card h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: 700;
}

.declaration-card p {
    font-size: 1.05em;
    line-height: 1.8;
}

/* Showcase Section */
.showcase-section {
    padding: 80px 0;
    background: white;
}

.section-subheading {
    text-align: center;
    font-size: 1.3em;
    color: #666;
    margin-bottom: 50px;
}

.showcase-box {
    max-width: 1000px;
    margin: 0 auto;
}

.game-display {
    background: linear-gradient(135deg, #f5f0fa 0%, #faf5f0 100%);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    border: 3px solid #ffd700;
}

.game-embed {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
}

.showcase-info {
    text-align: center;
}

.showcase-info p {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #555;
}

.btn-elegant {
    display: inline-block;
    background: linear-gradient(135deg, #7b1fa2 0%, #512da8 100%);
    color: white;
    padding: 15px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15em;
    transition: all 0.3s ease;
    border: 2px solid #ffd700;
}

.btn-elegant:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(123, 31, 162, 0.4);
}

/* Excellence Section */
.excellence-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f0fa 0%, #faf5f0 100%);
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.excellence-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #ffd700;
}

.excellence-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.item-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.excellence-item h4 {
    font-size: 1.4em;
    margin-bottom: 12px;
    color: #7b1fa2;
    font-weight: 600;
}

.excellence-item p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #666;
}

/* Journey Section */
.journey-section {
    padding: 80px 0;
    background: white;
}

.journey-path {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-step {
    flex: 1;
    text-align: center;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7b1fa2 0%, #512da8 100%);
    color: white;
    border: 4px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(123, 31, 162, 0.3);
}

.journey-step h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #7b1fa2;
    font-weight: 600;
}

.journey-step p {
    font-size: 1.05em;
    color: #666;
}

.journey-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7b1fa2 0%, #ffd700 100%);
    margin: 0 -10px 40px;
}

/* Prestige Section */
.prestige-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #7b1fa2 0%, #512da8 100%);
    color: white;
}

.prestige-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.prestige-box h2 {
    font-size: 3em;
    margin-bottom: 25px;
    font-weight: 800;
}

.prestige-text {
    font-size: 1.25em;
    margin-bottom: 50px;
    opacity: 0.95;
    line-height: 1.9;
}

.prestige-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.metric-value {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 10px;
    color: #ffd700;
}

.metric-label {
    font-size: 1.2em;
    font-weight: 600;
}

/* Play Page */
.page-banner {
    background: linear-gradient(135deg, #7b1fa2 0%, #512da8 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.page-banner h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: 900;
}

.banner-text {
    font-size: 1.3em;
    opacity: 0.95;
}

.game-guidance {
    padding: 60px 0;
    background: white;
}

.guidance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.guidance-box {
    background: linear-gradient(135deg, #f5f0fa 0%, #faf5f0 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border-top: 3px solid #ffd700;
}

.guidance-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.guidance-box h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #7b1fa2;
    font-weight: 600;
}

.guidance-box p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #666;
}

.gaming-section {
    padding: 40px 0 60px;
    background: linear-gradient(135deg, #f5f0fa 0%, #faf5f0 100%);
}

.gaming-frame {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border: 3px solid #ffd700;
}

.full-game {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 12px;
}

.gaming-reminder {
    text-align: center;
    background: #fff3cd;
    color: #856404;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ffd700;
    font-size: 1.15em;
    font-weight: 600;
}

.enhancement-section {
    padding: 60px 0;
    background: white;
}

.enhancement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.enhancement {
    background: linear-gradient(135deg, #f5f0fa 0%, #faf5f0 100%);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    border-top: 3px solid #ffd700;
}

.enhancement h4 {
    font-size: 1.4em;
    margin-bottom: 12px;
    color: #7b1fa2;
    font-weight: 600;
}

.enhancement p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #666;
}

/* Legal Pages */
.legal-section {
    padding: 80px 0;
    background: white;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f5f0fa 0%, #faf5f0 100%);
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #ffd700;
}

.legal-wrapper h2 {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #7b1fa2;
    font-weight: 600;
}

.legal-wrapper h2:first-child {
    margin-top: 0;
}

.legal-wrapper p {
    font-size: 1.1em;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #555;
}

.legal-wrapper ul {
    margin: 20px 0 20px 40px;
}

.legal-wrapper li {
    margin-bottom: 12px;
    font-size: 1.05em;
    line-height: 1.8;
    color: #666;
}

.legal-wrapper li strong {
    color: #7b1fa2;
}

.legal-highlight {
    background: white;
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid #ffd700;
    margin-top: 40px;
}

.legal-highlight h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #7b1fa2;
    font-weight: 600;
}

.legal-highlight ul {
    margin: 15px 0 0 25px;
}

.legal-highlight li {
    margin-bottom: 12px;
    font-size: 1.1em;
    color: #555;
    font-weight: 600;
}

/* Footer */
.grand-footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 0 30px;
    border-top: 4px solid #ffd700;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-segment h4 {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: #ffd700;
    font-weight: 700;
}

.footer-segment p {
    line-height: 1.8;
    color: #bbb;
    font-size: 1.05em;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05em;
}

.footer-menu a:hover {
    color: #ffd700;
}

.footer-seal {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.95em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }
    
    .nav-links {
        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-links.show {
        right: 0;
    }
    
    .nav-links a {
        padding: 20px 0;
        font-size: 1.3em;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .grand-content h1 {
        font-size: 2.5em;
    }
    
    .tagline {
        font-size: 1.2em;
    }
    
    .journey-path {
        flex-direction: column;
    }
    
    .journey-connector {
        width: 3px;
        height: 40px;
        margin: -10px auto;
    }
    
    .game-embed {
        height: 400px;
    }
    
    .full-game {
        height: 500px;
    }
    
    .legal-wrapper {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .age-box {
        padding: 30px;
        margin: 20px;
    }
    
    .age-controls {
        flex-direction: column;
    }
    
    .grand-content h1 {
        font-size: 2em;
    }
    
    .game-embed {
        height: 300px;
    }
    
    .full-game {
        height: 400px;
    }
    
    .prestige-metrics {
        grid-template-columns: 1fr;
    }
}
