:root {
    --primary-bg: #0a0f1c;
    --secondary-bg: #142033;
    --card-bg: #192a43;
    --accent-yellow: #00c3ff;
    --text-light: #ffffff;
    --text-muted: #99b3cc;
}

body {
    background: var(--primary-bg);
    color: var(--text-light);
    font-family: 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: var(--accent-yellow);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.4);
}

section {
    padding: 80px 0;
}

/* --- HEADER --- */
.main-header {
    background-color: rgba(10, 15, 28, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 195, 255, 0.2);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--accent-yellow);
}

.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent-yellow);
}

/* --- HERO --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-button {
    background-color: var(--accent-yellow);
    color: #000;
    padding: 16px 36px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #33d6ff;
    transform: translateY(-3px);
}

/* --- ANIMATED BACKGROUND --- */
.animated-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.roulette-bg {
    position: absolute;
    bottom: -500px;
    right: -500px;
    width: 65%;
    opacity: 0.05;
    animation: slow-spin 80s linear infinite;
    transform-origin: center center;
    pointer-events: none;
    z-index: 0;
}

@keyframes slow-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.glow-1, .glow-2, .glow-3, .glow-4 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 195, 255, 0.1), transparent 80%);
    filter: blur(100px);
    opacity: 0;
    animation: blink 10s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

.glow-1 { top: 0; left: 0; animation-delay: 0s; }
.glow-2 { top: 0; right: 0; animation-delay: 2s; }
.glow-3 { bottom: 0; left: 0; animation-delay: 4s; }
.glow-4 { bottom: 0; right: 0; animation-delay: 6s; }

@keyframes blink {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
}

.stats {
    background-color: var(--secondary-bg);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item .stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-yellow);
}

.stat-item .stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.popular-games h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.game-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 195, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.game-card img {
    margin-bottom: 20px;
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.game-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.about-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.main-footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 195, 255, 0.2);
    margin-top: 50px;
    color: var(--text-muted);
}

.about-list,
.bonus-list,
.feedback-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.about-list li,
.bonus-list li,
.feedback-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-light);
    padding-left: 1.5em;
    position: relative;
}

.about-list li::before,
.bonus-list li::before,
.feedback-list li::before {
    content: "•";
    color: var(--accent-yellow);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.about-platform h3 {
    font-size: 1.8rem;
    color: var(--accent-yellow);
    margin-top: 40px;
    margin-bottom: 15px;
    text-align: center;
}

.about-platform a {
    color: var(--accent-yellow);
    text-decoration: underline;
}

.about-platform a:hover {
    text-decoration: none;
    color: #33d6ff;
}

.cta-box {
    background-color: var(--card-bg);
    border: 1px solid rgba(0, 195, 255, 0.2);
    padding: 25px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
}

.cta-box h3 {
    margin-top: 0;
    font-size: 1.6rem;
    color: var(--accent-yellow);
}

.cta-box p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 10px 0 0;
}
