@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;1,800&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #0d1117;
    color: white;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

header {
    background-color: #000000;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #39FF14;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 2px;
}

.logo span.jin {
    color: #ffffff;
}

.logo span.bet {
    color: #39FF14;
}

.user-panel {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-user-panel {
    background-color: #39FF14;
    color: #000;
    border: none;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
}

.content {
    padding: 30px 15px;
    text-align: center;
}

h1 {
    font-size: 24px;
    margin-bottom: 30px;
}

.game-card {
    background-color: #1a1e24;
    padding: 20px;
    margin: 15px auto;
    max-width: 650px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s;
}

.game-card:hover {
    background-color: #21262d;
}

.game-card span {
    flex: 1;
    font-weight: bold;
    font-size: 14px;
}

.odds-container {
    display: flex;
    gap: 8px;
}

.odd-btn {
    background-color: #2a2f38;
    color: #39FF14;
    border: 1px solid #39FF14;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
    min-width: 60px;
}

.odd-btn:hover {
    background-color: #39FF14;
    color: #000;
}

@media (max-width: 768px) {
    header {
        justify-content: center;
        padding: 15px;
    }

    .user-panel {
        justify-content: center;
        width: 100%;
    }

    .btn-user-panel {
        width: 100%;
        text-align: center;
    }

    .game-card {
        flex-direction: column;
        text-align: center;
    }

    .game-card span {
        width: 100%;
        font-size: 16px;
    }

    .odds-container {
        width: 100%;
        justify-content: center;
        margin: 10px 0;
    }

    .odd-btn {
        flex: 1;
    }
}