body {
    background-color: #ffecb3;
    font-family: 'Comic Sans MS', sans-serif;
}

.custom-navbar {
    background: linear-gradient(135deg, #ff4081, #ff6f61);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-family: 'Comic Sans MS', sans-serif;
    font-size: 1.8em;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 1.1em;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #ffeb3b;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"%3E%3Cpath stroke="rgba(255, 255, 255, 0.7)" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Play Now Button Styles */
.btn-play-now {
    display: inline-flex;
    align-items: center;
    background-color: #ffeb3b;
    color: #333;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-play-now:hover {
    background-color: #ffcc00;
    transform: scale(1.05);
}

.btn-play-now i {
    margin-right: 8px;
}

.header {
    text-align: center;
    margin-top: 50px;
    color: #ff4081;
}

.game-description {
    margin-top: 30px;
    text-align: center;
    font-size: 1.2rem;
    color: #7b1fa2;
}

.btn-start {
    background-color: #ff4081;
    color: white;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 1.2rem;
}

.cookie-bg {
    background-image: url('../images/bg.png');
    background-size: cover;
    height: 900px;
}

.features, .how-to-play, .leaderboard {
    margin-top: 50px;
    text-align: center;
}

.features h2, .how-to-play h2, .leaderboard h2 {
    color: #ff4081;
    font-size: 2rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #8d6e63;
    text-align: center;
    margin-top: 20px;
}

.feature-item {
    background-color: #ffd54f;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.leaderboard-item-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.avatar {
    border: 5px solid #ff4081;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.avatar:hover {
    transform: scale(1.1);
}

.leaderboard-item {
    font-size: 1.2em;
    color: #333;
}

.points {
    color: #ff4081;
    font-weight: bold;
    margin-bottom: 10%;
}

.footer {
    background: linear-gradient(135deg, #ff4081, #ff6f61);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

.footer p {
    margin-bottom: 0;
    color: #fff;
}

.footer-links {
    margin-top: 10px;
}

.footer-link {
    color: #fff;
    font-size: 1.1em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffeb3b;
}

.cookies-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 30%;
    background: #ff4081;
    color: white;
    padding: 15px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px 15px 0 0;
    z-index: 1000;
}

.cookies-consent h4 {
    margin: 0;
    font-size: 1.2em;
}

.cookies-consent p {
    margin: 10px 0;
}

.cookies-consent button {
    background: white;
    color: #ff4081;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
}

.cookies-consent button:hover {
    background: #f1f1f1;
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer-links {
        display: block;
        margin-top: 10px;
    }

    .footer-link {
        display: block;
        margin: 5px 0;
    }

    .footer-link:not(:last-child) {
        margin-bottom: 5px;
    }
}