* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.show {
    display: flex;
}

.age-content {
    background: linear-gradient(135deg, #1e1e2e, #2d2d44);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #6366f1;
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.5);
}

.age-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #6366f1;
}

.age-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.age-buttons button {
    padding: 15px 30px;
    font-size: 18px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.age-buttons button.decline {
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

.age-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

/* Navigation */
.navbar {
    background: rgba(15, 15, 30, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #6366f1;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #6366f1;
    margin: 4px 0;
    border-radius: 3px;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: #6366f1;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: rgba(15, 15, 30, 0.98);
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: right 0.3s;
        border-left: 2px solid #6366f1;
    }
    
    .nav-menu.active {
        right: 0;
    }
}

/* Hero Section */
.hero {
    padding: 100px 20px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.2), transparent);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
}

/* Sections */
.info-section,
.game-showcase,
.notices,
.features,
.responsible-gaming {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
}

.icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.info-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    margin-bottom: 25px;
    color: #6366f1;
}

.info-card p {
    font-size: 20px;
    line-height: 1.8;
    color: #e0e0e0;
}

/* Game Showcase */
.game-showcase h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #6366f1;
}

.game-frame {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

/* Notices */
.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.notice-box {
    padding: 40px;
    border-radius: 20px;
    border: 2px solid;
}

.notice-box.red {
    background: rgba(220, 38, 38, 0.1);
    border-color: #dc2626;
}

.notice-box.blue {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.notice-box.purple {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
}

.notice-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    margin-bottom: 20px;
}

.notice-box p {
    font-size: 18px;
    line-height: 1.7;
}

/* Features */
.features h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: #6366f1;
}

.feature-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #6366f1;
}

.feature-item p {
    font-size: 16px;
    color: #e0e0e0;
}

/* Responsible Gaming */
.responsible-gaming {
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    text-align: center;
}

.responsible-gaming h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    margin-bottom: 25px;
}

.responsible-gaming p {
    font-size: 20px;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
}

/* Play Page */
.play-hero {
    padding: 80px 20px 40px;
    text-align: center;
}

.play-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    color: #6366f1;
}

.play-hero p {
    font-size: 20px;
    color: #e0e0e0;
}

.game-play-section {
    padding: 40px 20px 80px;
}

.game-container-full {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #6366f1;
}

.game-frame-full {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 10px;
}

.game-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.info-box h2,
.info-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: #6366f1;
    margin-bottom: 20px;
}

.info-box p,
.info-box ul {
    font-size: 17px;
    line-height: 1.7;
    color: #e0e0e0;
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.info-box li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #6366f1;
}

/* Content Pages */
.page-header {
    padding: 80px 20px 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    margin-bottom: 15px;
    color: #6366f1;
}

.updated {
    font-size: 16px;
    color: #9ca3af;
}

.content-section {
    padding: 40px 20px 80px;
}

.text-content {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.text-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin: 40px 0 20px;
    color: #6366f1;
}

.text-content h2:first-child {
    margin-top: 0;
}

.text-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #e0e0e0;
}

.text-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.text-content li {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.7;
    color: #e0e0e0;
}

.text-content a {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.3s;
}

.text-content a:hover {
    color: #8b5cf6;
    text-decoration: underline;
}

/* Footer */
footer {
    background: rgba(15, 15, 30, 0.95);
    border-top: 2px solid #6366f1;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    margin-bottom: 20px;
    color: #6366f1;
}

.footer-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #6366f1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(99, 102, 241, 0.3);
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .game-frame {
        height: 500px;
    }
    
    .game-frame-full {
        height: 600px;
    }
    
    .notice-grid {
        grid-template-columns: 1fr;
    }
    
    .text-content {
        padding: 30px 20px;
    }
    
    .site-name {
        font-size: 20px;
    }
}