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

body {
    font-family: 'Crimson Text', Georgia, serif;
    background: linear-gradient(135deg, #e8f4e8 0%, #d4e8d4 50%, #c8dcc8 100%);
    min-height: 100vh;
    color: #3c3228;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
}

.logo {
    margin-bottom: 48px;
}

.logo-image {
    max-width: 420px;
    height: auto;
}

.tagline {
    font-size: 1.35rem;
    max-width: 600px;
    margin: 0 auto 60px;
    color: #4a4a4a;
}

.games {
    margin-bottom: 60px;
}

.games h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    font-weight: 600;
    color: #3c3228;
}

.game-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.game-cover {
    width: 100%;
    height: auto;
    display: block;
}

.game-info {
    padding: 24px;
    text-align: left;
}

.game-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: #3c3228;
}

.game-info p {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 20px;
}

.play-button {
    display: inline-block;
    background: #7c5ce0;
    color: white;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.game-card:hover .play-button {
    background: #6b4fcf;
}

footer {
    color: #6a6a6a;
    font-size: 0.95rem;
}

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

footer a:hover {
    text-decoration: underline;
}

.contact {
    margin-bottom: 40px;
}

.contact p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

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

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

.email-reversed {
    unicode-bidi: bidi-override;
    direction: rtl;
}

@media (max-width: 600px) {
    .container {
        padding: 40px 16px;
    }

    .logo-image {
        max-width: 300px;
    }

    .tagline {
        font-size: 1.15rem;
    }

    .game-info {
        padding: 20px;
    }

    .game-info h3 {
        font-size: 1.2rem;
    }
}
