body {
        margin: 0;
        font-family: Arial, sans-serif;
        background-color: #171c24;
        color: #fff;
    }

    /* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #10141c;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.hovese-container {
    max-width: 1200px; /* обмеження ширини */
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hovese-left {
    flex: 0 0 auto;
}

.logo img {
    height: 40px;
}

.hovese-center {
    flex: 1;
    text-align: center;
}

.hovese-center a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
    white-space: nowrap;
}

.hovese-buttons {
    flex: 0 0 auto;
    display: flex;
}

.hovese-buttons a {
    background: #cc0331;
    padding: 8px 15px;
    border-radius: 6px;
    margin-left: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    white-space: nowrap;
}

.hovese-buttons a:hover {
    background: #ffaa33;
}

/* MOBILE */
@media(max-width: 768px) {
    .hovese-center {
        display: none;
    }
    .hovese-buttons a {
        padding: 6px 10px;
        font-size: 14px;
    }
}



    /* BANNER */
    .banner {
        max-width: 1200px;
        height: 400px;
        margin: 90px auto 50px auto;
       /* background: url('https://via.placeholder.com/1200x400') center/cover no-repeat;*/
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
        overflow: hidden;
    }
    .banner::after {
        content: "";
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.4);
    }
    .hobond-content {
        position: relative;
        z-index: 2;
        text-align: center;
    }
    .hobond-content a {
        background: #fce433;
        color: #000000;
        padding: 15px 25px;
        font-size: 20px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        transition: background 0.3s;
    }
    .hobond-content a:hover {
        background: #ffdd33;
    }

    /* MAIN CONTENT */
    .content {
        max-width: 80%;
        margin: 0 auto 50px auto;
        line-height: 1.6;
    }

    /* PULSING BUTTON */
    .pulse-btn {
        display: block;
        width: fit-content;
        margin: 30px auto;
        background: #fce433;
        padding: 15px 25px;
        border-radius: 50px;
        color: #000000;
        font-weight: bold;
        text-decoration: none;
        animation: pulse 1.5s infinite;
    }
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(255, 51, 0, 0.7); }
        70% { box-shadow: 0 0 0 15px rgba(255, 51, 0, 0); }
        100% { box-shadow: 0 0 0 0 rgba(255, 51, 0, 0); }
    }

    /* TABLE STYLE */
    table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
        background: #1a1a1a;
        border-radius: 8px;
        overflow: hidden;
    }
    table th, table td {
        padding: 10px;
        border: 1px solid #10141c;
        text-align: center;
    }
    table th {
        background: #fce433;
        color: #000;
    }

    /* FOOTER */
    footer {
        background: #111;
        padding: 30px 20px;
        text-align: center;
        font-size: 14px;
        border-top: 2px solid #fce433;
    }
    footer img {
        height: 50px;
        margin: 15px auto;
        display: block;
    }
    footer div {
        margin-top: 10px;
    }

    /* FIXED BONUS POPUP */
    .bonus-popup {
        position: fixed;
        bottom: -100px;
        left: 0;
        width: 100%;
        background: #fce433;
        color: #000000;
        padding: 15px;
        text-align: center;
        font-weight: bold;
        transition: bottom 0.5s;
    }
    .bonus-popup.show {
        bottom: 0;
    }
    .bonus-popup a {
        color: #000;
        background: #fff;
        padding: 5px 10px;
        border-radius: 5px;
        text-decoration: none;
    }

    /* RESPONSIVE */
    @media(max-width: 768px) {
        nav {
            display: none;
        }
        .hovese-buttons {
            margin-left: 0;
        }
        .hovese-buttons a {
            padding: 6px 10px;
            font-size: 14px;
        }
        .content {
            max-width: 95%;
        }
        .banner {
            height: 250px;
        }
    }