body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
}

.logo img {
    height: 50px;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
}

.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero img {
    width: 100%;
    height: auto;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.latest-results, .promotions, .about {
    padding: 20px;
    text-align: center;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.sidebar {
    width: 250px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.sidebar.show {
    transform: translateX(0);
}

#sidebar {
    transition: transform 0.3s ease;
}

#sidebar.show {
    display: block;
    transform: translateX(0);
}

#sidebar.hide {
    transform: translateX(-100%);
}

.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5)!important;
    width: 30px!important;
    height: 68px!important;
    color: #fff!important;
    padding: 10px!important;
    font-size: 30px!important;
    left: 0;
}
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5)!important;
    width: 30px!important;
    height: 68px!important;
    color: #fff!important;
    padding: 10px!important;
    font-size: 30px!important;
    right: 0;
}
@media (max-width: 767px) {
    .centered-nav .owl-prev, .centered-nav .owl-next {
        font-size: 20px!important;
        width: 20px!important;
        height: 78px!important;
    }
}
.owl-dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}
.owl-dot {
    display: inline-block;
    margin: 0 5px;
}
.owl-dot span {
    width: 12px;
    height: 12px;
    display: block;
    background: white;
    border-radius: 50%;
}
.owl-dot.active span {
    background: #026ca8;
}