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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0f0f1a;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px 0;
    text-align: center;
    border-bottom: 2px solid #e94560;
}

header h1 {
    font-size: 2.5rem;
    color: #e94560;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1rem;
    color: #a0a0b0;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #b0b0c0;
}

.btn {
    display: inline-block;
    background: #e94560;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
}

.btn:hover {
    background: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #fff;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #2a2a4e;
    transition: all 0.3s;
}

.step:hover {
    border-color: #e94560;
    transform: translateY(-5px);
}

.num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #e94560;
    color: #fff;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.step p {
    color: #a0a0b0;
}

/* Games */
.games {
    background: #0f0f1a;
}

.game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.game-card {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #2a2a4e;
}

.game-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #e94560;
}

.game-card p {
    color: #a0a0b0;
}

/* Rules */
.rules {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.rules ul {
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
}

.rules li {
    padding: 15px 20px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    font-size: 1.1rem;
}

/* Contact */
.contact {
    text-align: center;
    background: #0f0f1a;
}

.contact p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact a {
    color: #e94560;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #0a0a15;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #2a2a4e;
}

footer p {
    color: #606070;
    margin-bottom: 10px;
}

footer a {
    color: #808090;
    text-decoration: none;
}

/* Privacy page */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.privacy-content h1 {
    color: #e94560;
    margin-bottom: 30px;
}

.privacy-content h2 {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.privacy-content p {
    margin-bottom: 15px;
    color: #b0b0c0;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }
}
