* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #ff6b6b;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ff6b6b;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

main {
    margin-top: 80px;
}

.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%), linear-gradient(45deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.btn:hover {
    background: #ff5252;
}

.section {
    padding: 60px 0;
    background: white;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section:nth-child(even) {
    background: #f8f9fa;
}

.section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.disclaimer {
    background: #ffebee;
    border-left: 5px solid #f44336;
    padding: 30px;
    margin: 20px 0;
    border-radius: 5px;
}

.disclaimer h3 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.game-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card h3 {
    padding: 1rem;
    font-size: 1.3rem;
    color: #333;
}

.game-card .btn {
    margin: 0 1rem 1rem;
    display: block;
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
}

.form-group input:required:invalid {
    border-color: #f44336;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.game-page {
    padding: 2rem 0;
    text-align: center;
}

.game-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.game-container iframe {
    width: 100%;
    max-width: 640px;
    height: 480px;
    border: none;
    border-radius: 10px;
}

footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #ff6b6b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

.contact-info {
    text-align: center;
    margin: 2rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    flex: 1;
    margin-right: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.accept-btn {
    background: #4caf50;
    color: white;
}

.decline-btn {
    background: #f44336;
    color: white;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .game-container iframe {
        height: 300px;
    }
}

.text-page .section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 3rem;
    line-height: 1.8;
}

.text-page h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid #ff6b6b;
    padding-bottom: 1rem;
}

.text-page h2 {
    color: #ff6b6b;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #ff6b6b;
    padding-left: 1rem;
}

.text-page h3 {
    color: #333;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.text-page p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
    text-align: justify;
}

.text-page ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.text-page li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #555;
}

.text-page strong {
    color: #333;
    font-weight: 600;
}

.thank-you-page {
    text-align: center;
}

.thank-you-page .section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.thank-you-page h1 {
    color: #ff6b6b;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thank-you-page .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

@media (max-width: 768px) {
    .text-page .section {
        padding: 2rem 1rem;
        margin: 1rem;
    }
    
    .text-page h1 {
        font-size: 2rem;
    }
    
    .text-page h2 {
        font-size: 1.5rem;
    }
    
    .text-page p, .text-page li {
        font-size: 1rem;
    }
    
    .thank-you-page h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .section {
        margin: 10px 0;
        padding: 30px 0;
    }

    .hero {
        padding: 60px 0;
    }

    .contact-form {
        padding: 1rem;
    }
    
    .text-page .section {
        padding: 1.5rem 1rem;
    }
    
    .text-page h1 {
        font-size: 1.8rem;
    }
} 