.footer__logo {
    margin-bottom: 20px;
}

.footer__logo img {
    max-width: 100%;
    height: auto;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__menu-main {
    margin-bottom: 20px;
}

.footer__menu-main a {
    color: #ffffff;
    margin: 0 15px;
    font-size: 15px;
}

.footer__menu-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    width: 100%;
}

.footer__menu-column {
    text-align: center;
}

.footer__menu-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.footer__menu-title:hover {
    color: #e53637;
}

.footer__dropdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__dropdown a {
    color: #b7b7b7;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__dropdown a:hover {
    color: #e53637;
}

.footer__copyright {
    color: #b7b7b7;
    font-size: 14px;
    text-align: right;
    margin-top: 20px;
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.footer__social a {
    color: #b7b7b7;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer__social a:hover {
    color: #e53637;
}

/* Mobile styles */
@media (max-width: 768px) {
    .footer__logo,
    .footer__copyright {
        text-align: center;
    }

    .footer__menu-main,
    .footer__menu-dropdowns {
        flex-direction: column;
        gap: 15px;
    }

    .footer__dropdown {
        align-items: center;
    }
}

/* Dropdown Menu Highlight Styles */
.header__menu .dropdown {
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
}

.header__menu .dropdown li {
    margin: 0;
    transition: all 0.3s ease;
}

.header__menu .dropdown li a {
    color: #333333;
    padding: 8px 20px;
    display: block;
    position: relative;
    transition: all 0.3s ease;
    font-size: 14px;
}

.header__menu .dropdown li:hover {
    background-color: rgba(229, 54, 55, 0.1);
}

.header__menu .dropdown li:hover > a {
    color: #e53637;
    transform: translateX(5px);
}

.header__menu .dropdown li.active {
    background-color: rgba(229, 54, 55, 0.1);
}

.header__menu .dropdown li.active > a {
    color: #e53637;
    transform: translateX(5px);
}

/* Add a subtle left border indicator on hover and active state */
.header__menu .dropdown li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: #e53637;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.header__menu .dropdown li:hover a::before,
.header__menu .dropdown li.active a::before {
    transform: scaleY(1);
}

/* Prize Payout Styles */
.prize-payout {
    padding-top: 30px;
    padding-bottom: 50px;
}

.prize-carousel {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.prize-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.prize-carousel .owl-nav button {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 18px;
    color: #ffffff;
    line-height: 36px;
    text-align: center;
    position: absolute;
    transition: all 0.3s;
}

.prize-carousel .owl-nav button:hover {
    background: #e53637;
}

.prize-carousel .owl-nav .owl-prev {
    left: -45px;
}

.prize-carousel .owl-nav .owl-next {
    right: -45px;
}

.prize-item {
    text-align: center;
    padding: 5px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.prize-item img {
    max-width: 100%;
    height: auto;
    max-height: 55vh;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 8px;
}

.prize-item__text h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 15px;
}

.prize-carousel .owl-dots {
    text-align: center;
    margin-top: 12px;
}

.prize-carousel .owl-dots button {
    width: 6px;
    height: 6px;
    background: #b7b7b7;
    border-radius: 50%;
    margin: 0 3px;
    transition: all 0.3s;
}

.prize-carousel .owl-dots button.active {
    background: #e53637;
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .prize-carousel .owl-nav button {
        display: none;
    }
    
    .prize-item img {
        max-height: 45vh;
    }
}

@media (max-width: 768px) {
    .prize-carousel {
        max-width: 400px;
    }
    
    .prize-item {
        padding: 4px;
    }
    
    .prize-item img {
        max-height: 40vh;
    }
} 