body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #1a252f;
}

a {
    text-decoration: none;
    color: #f39c12;
    transition: color 0.3s ease;
}

a:hover {
    color: #e67e22;
}

header {
    background-color: #2c3e50;
    padding: 20px 0;
    text-align: center;
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header .navbar-brand img {
    width: 150px;
}

header .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

header .nav-links li {
    display: inline;
}

header .nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    transition: background-color 0.3s ease;
}

header .nav-links a:hover {
    background-color: #f39c12;
    border-radius: 5px;
}

.game-container {
    padding: 60px 20px;
    text-align: center;
}

.game-container h1 {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.game-container p {
    font-size: 1.2rem;
    color: #bdc3c7;
    margin-bottom: 30px;
    line-height: 1.8;
}

.game-frame-container {
    background-color: #34495e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.game-start-button .btn {
    display: inline-block;
    background-color: #f39c12;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.game-start-button .btn:hover {
    background-color: #e67e22;
}

footer {
    background-color: #34495e;
    padding: 30px 20px;
    color: #ecf0f1;
    text-align: center;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

footer .footer-brand {
    display: flex;
    align-items: center;
    flex-direction: column;
}

footer .footer-brand img {
    width: 120px;
    margin-bottom: 10px;
}

footer .footer-brand p {
    font-size: 1rem;
    color: #bdc3c7;
}

footer .footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

footer .footer-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

footer .footer-nav li {
    display: inline-block;
}

footer .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

footer .footer-nav a:hover {
    color: #f39c12;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .game-container h1 {
        font-size: 2rem;
    }

    .game-container p {
        font-size: 1rem;
    }

    .game-start-button .btn {
        font-size: 1rem;
        padding: 12px 25px;
    }

    footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-nav {
        margin-top: 20px;
        justify-content: center;
    }
}
