@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Exo+2:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-violet: #8B5CF6;
    --secondary-purple: #A78BFA;
    --dark-bg: #0F0A1A;
    --card-bg: #1A1025;
    --text-light: #F5F3FF;
    --text-muted: #C4B5FD;
    --accent-pink: #EC4899;
    --glow-violet: rgba(139, 92, 246, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
    min-height: 100vh;
    background-image: 
        radial-gradient(ellipse at top, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(236, 72, 153, 0.1) 0%, transparent 40%);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(15, 10, 26, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-violet), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
}

.logo-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-violet), var(--accent-pink));
    border-radius: 10px;
    margin-right: 12px;
    vertical-align: middle;
    position: relative;
}

.logo-icon::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: white;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--primary-violet);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-violet);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-violet);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 160px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow-violet) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff, var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--primary-violet), var(--accent-pink));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px var(--glow-violet);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px var(--glow-violet);
}

/* Notice Cards */
.notices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.notice-card {
    background: var(--card-bg);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-violet);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.notice-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--secondary-purple);
}

.notice-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Game Section */
.game-section {
    padding: 80px 20px;
    text-align: center;
}

.game-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--secondary-purple);
}

.game-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 25px;
    padding: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.game-wrapper iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 15px;
}

/* Features */
.features {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-purple);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    background: linear-gradient(135deg, var(--card-bg), rgba(139, 92, 246, 0.1));
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.feature-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-violet);
}

.feature-item p {
    color: var(--text-muted);
}

/* Footer */
footer {
    background: rgba(10, 5, 15, 0.9);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 50px 20px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-violet);
}

.responsible-gambling {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.responsible-gambling p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.responsible-gambling a {
    color: var(--secondary-purple);
    margin: 0 15px;
    text-decoration: none;
    font-size: 0.85rem;
}

.responsible-gambling a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 30px;
    color: rgba(196, 181, 253, 0.5);
    font-size: 0.85rem;
}

/* Age Verification Modal */
.age-modal {
    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-modal.hidden {
    display: none;
}

.age-modal-content {
    background: var(--card-bg);
    border: 2px solid var(--primary-violet);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 0 100px var(--glow-violet);
}

.age-modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-purple);
}

.age-modal-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-btn {
    padding: 15px 45px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn.yes {
    background: linear-gradient(135deg, var(--primary-violet), var(--accent-pink));
    color: white;
}

.age-btn.no {
    background: transparent;
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
}

.age-btn:hover {
    transform: scale(1.05);
}

/* Page Content */
.page-content {
    padding: 140px 20px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--secondary-purple);
}

.page-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin: 35px 0 15px;
    color: var(--primary-violet);
}

.page-content p {
    color: var(--text-muted);
    margin-bottom: 18px;
}

.page-content ul {
    color: var(--text-muted);
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .notices {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15, 10, 26, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 25px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    }
    
    nav.active {
        transform: translateY(0);
    }
    
    .hero {
        padding: 130px 20px 70px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .game-wrapper iframe {
        height: 450px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .age-modal-content {
        padding: 30px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
}
