* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.6;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(135deg, #4a148c 0%, #7b1fa2 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    border: 2px solid #ffd700;
}

.modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.modal-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-verify, .btn-decline {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
}

.btn-verify {
    background: #ffd700;
    color: #4a148c;
}

.btn-verify:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-decline {
    background: #333;
    color: #fff;
}

.btn-decline:hover {
    background: #555;
    transform: translateY(-2px);
}

/* Header & Navigation */
header {
    background: rgba(26, 20, 60, 0.95);
    border-bottom: 3px solid #ffd700;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffd700;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu li a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #ffd700;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.3) 0%, rgba(123, 31, 162, 0.3) 100%);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.tagline {
    font-size: 1.8rem;
    color: #b39ddb;
    margin-bottom: 1rem;
    font-weight: 600;
}

.subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #e0e0e0;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ffd700;
    color: #4a148c;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 215, 0, 0.5);
}

/* Content Sections */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.info-section, .features, .responsible-gaming {
    padding: 5rem 2rem;
}

.info-section h2, .features h2, .responsible-gaming h2, .game-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffd700;
    text-align: center;
}

.info-section p, .responsible-gaming p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Notices Section */
.notices {
    padding: 5rem 2rem;
    background: rgba(74, 20, 140, 0.2);
}

.notice-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.notice-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.notice-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Game Section */
.game-section {
    padding: 5rem 2rem;
    background: rgba(123, 31, 162, 0.1);
}

.game-container {
    max-width: 1200px;
    margin: 2rem auto;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid #ffd700;
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.feature-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.feature-item p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Play Page Styles */
.play-header {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.3) 0%, rgba(123, 31, 162, 0.3) 100%);
}

.play-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.play-header p {
    font-size: 1.3rem;
    color: #e0e0e0;
}

.game-play-section {
    padding: 3rem 2rem;
}

.game-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #ffd700;
}

.game-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.game-info ul {
    list-style: none;
    padding: 0;
}

.game-info li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

.game-container-full {
    max-width: 1400px;
    margin: 0 auto;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid #ffd700;
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-notice {
    padding: 3rem 2rem;
    background: rgba(74, 20, 140, 0.2);
}

.game-notice h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-align: center;
}

.game-notice p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 2rem;
    min-height: 60vh;
}

.legal-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.updated {
    font-size: 1rem;
    color: #b39ddb;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #ffd700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content p, .legal-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.disclaimer-highlight {
    background: rgba(255, 215, 0, 0.1);
    border-left: 5px solid #ffd700;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.disclaimer-highlight h2 {
    margin-top: 0;
}

/* Footer */
footer {
    background: rgba(26, 20, 60, 0.95);
    border-top: 3px solid #ffd700;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-section p {
    color: #b39ddb;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 20, 60, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 0;
        border-top: 2px solid #ffd700;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }

    .info-section h2, .features h2, .responsible-gaming h2, .game-section h2 {
        font-size: 2rem;
    }

    .notice-grid {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 450px;
    }

    .game-frame-full {
        height: 500px;
    }

    .play-header h1 {
        font-size: 2.2rem;
    }

    .legal-content h1 {
        font-size: 2.2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .modal-content {
        margin: 1rem;
        padding: 2rem;
    }

    .modal-content h2 {
        font-size: 1.6rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .btn-verify, .btn-decline {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-container {
        padding: 0 1rem;
    }
}
