* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: #f9fafb;
    color: #1f2937;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Merriweather', serif;
}

.layout-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
    color: white;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.3s;
}

.sidebar-header {
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-area h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.close-sidebar {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    display: none;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.nav-link {
    padding: 16px 30px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 4px solid transparent;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
    border-left-color: white;
}

.nav-link.active {
    background: rgba(255,255,255,0.15);
    border-left-color: white;
    font-weight: 600;
}

/* Main Wrapper */
.main-wrapper {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
}

/* Top Bar */
.top-bar {
    background: white;
    padding: 15px 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.open-sidebar {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #10b981;
    display: none;
}

.top-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    font-family: 'Merriweather', serif;
}

/* Content Area */
.content-area {
    flex: 1;
    padding: 50px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Intro Banner */
.intro-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(16,185,129,0.3);
}

.intro-banner h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.action-button {
    display: inline-block;
    background: white;
    color: #10b981;
    padding: 16px 45px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* About Platform */
.about-platform {
    margin-bottom: 50px;
}

.about-inner {
    background: white;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.about-inner h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #10b981;
}

.about-inner p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4b5563;
}

/* Core Principles */
.core-principles {
    margin-bottom: 50px;
}

.principles-heading {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #10b981;
}

.principles-grid {
    display: grid;
    gap: 30px;
}

.principle-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 5px solid #10b981;
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.principle-item h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.principle-item p {
    color: #6b7280;
    line-height: 1.8;
}

/* Game Showcase */
.game-showcase {
    margin-bottom: 50px;
}

.showcase-inner h3 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
    color: #10b981;
}

.showcase-desc {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 35px;
}

.game-display {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

/* Platform Benefits */
.platform-benefits {
    margin-bottom: 50px;
}

.benefits-heading {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #10b981;
}

.benefits-list {
    display: grid;
    gap: 25px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    border-left: 4px solid #059669;
}

.benefit-card h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1f2937;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.8;
}

/* Membership Info */
.membership-info {
    margin-bottom: 50px;
}

.membership-inner {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
}

.membership-inner h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #10b981;
}

.membership-inner > p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #374151;
    max-width: 900px;
    margin: 0 auto 40px;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-element {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-figure {
    font-size: 3rem;
    font-weight: 800;
    color: #059669;
}

.stat-text {
    font-size: 1rem;
    color: #6b7280;
    margin-top: 8px;
}

/* Closing Message */
.closing-message {
    background: white;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 50px;
}

.closing-message h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #10b981;
    text-align: center;
}

.closing-message p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4b5563;
    text-align: center;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 50px 50px 25px;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    gap: 40px;
    margin-bottom: 35px;
}

.footer-section h4 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: #10b981;
}

.footer-section p {
    line-height: 1.8;
    color: #d1d5db;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-menu a:hover {
    color: #10b981;
}

.footer-legal {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Verification Popup */
.verify-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.verify-popup.hidden {
    display: none;
}

.verify-content {
    background: white;
    padding: 50px 45px;
    border-radius: 20px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.verify-content h2 {
    color: #10b981;
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.verify-content p {
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.verify-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

.verify-btn {
    padding: 14px 35px;
    border: none;
    border-radius: 25px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.verify-btn.confirm {
    background: #10b981;
    color: white;
}

.verify-btn.confirm:hover {
    background: #059669;
    transform: translateY(-2px);
}

.verify-btn.decline {
    background: #ef4444;
    color: white;
}

.verify-btn.decline:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* Play Content */
.play-content .content-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #10b981;
}

.play-description {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 35px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.play-description p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.compatibility-info {
    background: #ecfdf5;
    padding: 20px;
    border-radius: 10px;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.player-guidance {
    background: white;
    padding: 35px;
    border-radius: 12px;
    margin-top: 35px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.player-guidance h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #10b981;
}

.player-guidance ul {
    list-style-position: inside;
    color: #6b7280;
    line-height: 2.2;
}

/* Legal Content */
.legal-content .content-heading {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #10b981;
}

.effective-date {
    text-align: center;
    color: #9ca3af;
    font-style: italic;
    margin-bottom: 45px;
}

.legal-article {
    background: white;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    border-left: 4px solid #10b981;
}

.legal-article h3 {
    font-size: 1.7rem;
    margin-bottom: 18px;
    color: #1f2937;
}

.legal-article p {
    color: #6b7280;
    line-height: 1.9;
    margin-bottom: 18px;
}

.legal-article ul {
    margin-left: 25px;
    color: #6b7280;
    line-height: 2.2;
}

.disclaimer-warning {
    background: #fef3c7;
    border-left-color: #f59e0b;
}

.disclaimer-warning h3 {
    color: #92400e;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .close-sidebar {
        display: block;
    }
    
    .main-wrapper {
        margin-left: 0;
    }
    
    .open-sidebar {
        display: block;
    }
    
    .content-area {
        padding: 30px 20px;
    }
    
    .intro-banner {
        padding: 50px 25px;
    }
    
    .intro-banner h2 {
        font-size: 2rem;
    }
    
    .about-inner, .membership-inner, .closing-message {
        padding: 30px 25px;
    }
    
    .game-iframe {
        height: 450px;
    }
    
    .site-footer {
        padding: 40px 20px 20px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .principles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .game-iframe {
        height: 700px;
    }
}
