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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
    line-height: 1.8;
}

.container {
    width: min(1100px, 92%);
    margin: auto;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #111;
}

.nav {
    display: flex;
    gap: 20px;
    flex: 1;
}

.nav a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

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

.language-button {
    border: 1px solid #222;
    background: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
}

.hero {
    background: #ffffff;
    padding: 90px 0;
    text-align: center;
}

.greeting {
    font-size: 22px;
    margin-bottom: 10px;
}

.local-time {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 25px;
}

.local-time strong {
    font-size: 30px;
    direction: ltr;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero-description {
    max-width: 650px;
    margin: auto;
    font-size: 18px;
}

.section {
    padding: 70px 0;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.game-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 35px;
}

.game-label {
    font-size: 14px;
    color: #666;
}

.game-card h3 {
    font-size: 30px;
    margin: 8px 0 15px;
}

.game-card p {
    max-width: 750px;
    margin-bottom: 25px;
}

.details-button {
    display: inline-block;
    background: #222;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
}

.details-button:hover {
    opacity: 0.85;
}

.information {
    background: #ffffff;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.info-link {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-decoration: none;
    color: #222;
}

.disabled {
    color: #777;
    cursor: default;
}

.footer {
    background: #222;
    color: #fff;
    padding: 25px 0;
    text-align: center;
}

@media (max-width: 700px) {

    .header-content {
        flex-wrap: wrap;
        padding: 15px 0;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 34px;
    }

    .game-card {
        padding: 25px;
    }
}
