* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0e27;
    color: #e0e0e0;
    line-height: 1.6;
}

.page-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1a1f3a 0%, #0f1123 100%);
    padding: 2rem 0;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    border-right: 3px solid #14b8a6;
    overflow-y: auto;
    z-index: 1000;
    transition: left 0.3s ease;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.logo-icon {
    font-size: 2.5rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #14b8a6;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.nav-item:hover {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
    border-left-color: #14b8a6;
}

.nav-item.active {
    background: rgba(20, 184, 166, 0.15);
    color: #14b8a6;
    border-left-color: #fb923c;
}

.nav-icon {
    font-size: 1.5rem;
}

.nav-text {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Main Content Area */
.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 2rem;
    width: calc(100% - 280px);
}

.mobile-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    background: #14b8a6;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    display: block;
}

/* Content Header */
.content-header {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(251, 146, 60, 0.1) 100%);
    border-radius: 15px;
    border-left: 5px solid #fb923c;
}

.content-header h1 {
    font-size: 2.5rem;
    color: #14b8a6;
    margin-bottom: 0.5rem;
}

.header-subtitle {
    font-size: 1.2rem;
    color: #c0c0c0;
}

/* Welcome Section */
.welcome-section {
    margin-bottom: 3rem;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.welcome-text h2 {
    font-size: 2rem;
    color: #fb923c;
    margin-bottom: 1.5rem;
}

.welcome-text p {
    margin-bottom: 1rem;
    color: #c0c0c0;
    font-size: 1.05rem;
}

.welcome-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.visual-card {
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #14b8a6;
}

.visual-card h3 {
    color: #14b8a6;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.visual-card p {
    color: #a0a0a0;
}

/* Key Points Section */
.key-points {
    margin-bottom: 3rem;
}

.key-points h2 {
    font-size: 2rem;
    color: #fb923c;
    margin-bottom: 2rem;
    text-align: center;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.point-card {
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid;
    transition: transform 0.3s;
}

.point-card.teal {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(20, 184, 166, 0.15) 100%);
    border-color: #14b8a6;
}

.point-card.orange {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.05) 0%, rgba(251, 146, 60, 0.15) 100%);
    border-color: #fb923c;
}

.point-card:hover {
    transform: translateY(-5px);
}

.point-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.point-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #14b8a6;
}

.point-card.orange h3 {
    color: #fb923c;
}

.point-card p {
    color: #b0b0b0;
}

/* Featured Game Section */
.featured-game {
    margin-bottom: 3rem;
}

.featured-game h2 {
    font-size: 2rem;
    color: #14b8a6;
    margin-bottom: 1rem;
    text-align: center;
}

.game-intro {
    text-align: center;
    color: #c0c0c0;
    margin-bottom: 2rem;
}

.game-embed {
    max-width: 1000px;
    margin: 0 auto;
    background: #1a1f3a;
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #14b8a6;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

/* Benefits Section */
.benefits {
    margin-bottom: 3rem;
}

.benefits h2 {
    font-size: 2rem;
    color: #fb923c;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1123 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #14b8a6;
    position: relative;
    padding-top: 3rem;
}

.benefit-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #fb923c;
    opacity: 0.3;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #14b8a6;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Responsible Gaming */
.responsible-gaming {
    margin-bottom: 3rem;
}

.responsible-box {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #fb923c;
    text-align: center;
}

.responsible-box h2 {
    font-size: 2rem;
    color: #fb923c;
    margin-bottom: 1rem;
}

.responsible-box p {
    color: #c0c0c0;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Play Page Styles */
.play-intro {
    margin-bottom: 3rem;
}

.play-intro h2 {
    font-size: 2rem;
    color: #fb923c;
    margin-bottom: 2rem;
    text-align: center;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.instruction {
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #14b8a6;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #fb923c;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.instruction h3 {
    font-size: 1.3rem;
    color: #14b8a6;
    margin-bottom: 1rem;
}

.instruction p {
    color: #b0b0b0;
}

.game-play-section {
    margin-bottom: 3rem;
}

.play-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-box {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(20, 184, 166, 0.1) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #14b8a6;
}

.info-box h3 {
    font-size: 1.3rem;
    color: #fb923c;
    margin-bottom: 1rem;
}

.info-box p {
    color: #b0b0b0;
}

/* Legal Section */
.legal-section {
    margin-bottom: 3rem;
}

.legal-document {
    background: #1a1f3a;
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid #14b8a6;
}

.legal-document h2 {
    font-size: 1.8rem;
    color: #14b8a6;
    margin: 2.5rem 0 1rem 0;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    color: #c0c0c0;
    margin-bottom: 1rem;
}

.legal-document ul {
    margin: 1rem 0 1rem 2rem;
    color: #c0c0c0;
}

.legal-document li {
    margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
    background: #0f1123;
    padding: 3rem 2rem 1rem;
    border-top: 3px solid #14b8a6;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #fb923c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-col p {
    color: #a0a0a0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #14b8a6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(20, 184, 166, 0.2);
    color: #808080;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1123 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #14b8a6;
    box-shadow: 0 10px 50px rgba(20, 184, 166, 0.4);
}

.age-gate-content h2 {
    color: #fb923c;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.age-gate-content p {
    color: #c0c0c0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.age-gate-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-confirm,
.btn-deny {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Rajdhani', sans-serif;
}

.btn-confirm {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(20, 184, 166, 0.5);
}

.btn-deny {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

.btn-deny:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
    .sidebar {
        left: -280px;
    }

    .sidebar.active {
        left: 0;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .mobile-toggle {
        display: flex;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
    }

    .content-header h1 {
        font-size: 2rem;
    }

    .game-iframe {
        height: 400px;
    }

    .age-gate-content {
        margin: 20px;
        padding: 2rem;
    }

    .age-gate-actions {
        flex-direction: column;
    }

    .legal-document {
        padding: 1.5rem;
    }
}
