@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0e0b2d;
    color: white;
}

/* HEADER */
header {
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
}

header .logo img {
    height: 60px;
}

header nav a {
    margin-left: 20px;
    color: #c8c5ff;
    text-decoration: none;
    font-weight: 400;
}

header nav .login {
    padding: 6px 14px;
    border: 1px solid #5f52d6;
    border-radius: 8px;
}

/* CHARACTER SECTION */
.character {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 60px;
    flex-wrap: wrap;
}

.character-img img {
    width: 280px;
}

.character-info {
    max-width: 420px;
}

.play-btn {
    display: inline-block;
    background: #ff9a3c;
    padding: 12px 22px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
}

/* DAILY GAMES */
.daily-games {
    text-align: center;
    padding: 60px 20px;
}

.game-grid {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.game-card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    width: 140px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-card img {
    width: 40px;
    margin-bottom: 10px;
}

.game-card span {
    font-size: 16px;
}
