body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

/* Banner Container */
.banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner {
    width: 100%;
    height: auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100vw;
    padding: 20px 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.8);
    box-sizing: border-box;
}

.carousel {
    position: relative;
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    box-sizing: border-box;
}

.carousel-inner {
    display: flex;
    animation: scroll 45s linear infinite;
}

.carousel-item {
    flex: none;
    padding: 0 5px;
}

.carousel-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Slider */
.slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform var(--transition-time);
}

.slider-item {
    min-width: 50%;
    box-sizing: border-box;
    padding: 0 10px;
}

.slider-item img {
    width: 100%;
    display: block;
    border-radius: var(--box-border-radius);
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: #000;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    padding: 10px;
    display: none;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

@media (min-width: 768px) {
    .slider-item {
        min-width: 50%;
    }

    .slider-prev:hover,
    .slider-next:hover {
        display: block;
    }
}

@media (min-width: 1200px) {
    .slider-item {
        min-width: 33.33%;
    }
}

/* Brand Info Section */
.brand-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin: 20px 0;
}

.brand-text {
    flex: 1;
    padding-right: 20px;
}

.brand-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: left;
}

.brand-video,
.brand-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.brand-video video,
.brand-image img {
    max-width: 100%;
    border-radius: var(--box-border-radius);
    box-shadow: var(--box-shadow);
}

@media (max-width: 768px) {
    .brand-info {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .brand-video,
    .brand-image {
        width: 100%;
    }
}

/* Prizes Section */
.prizes {
    display: grid;
    gap: 20px;
    padding: 20px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.raffle-item {
    background-color: var(--box-bg-color);
    padding: 10px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
}

.raffle-item img {
    width: 100%;
    border-radius: var(--box-border-radius);
}

.raffle-item h3 {
    margin: 10px 0;
    font-size: 1.2em;
    color: #000;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px;
    z-index: 1;
}

.countdown-timer {
    display: flex;
    justify-content: space-around;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 5px;
    font-size: 0.9em;
    position: relative;
    bottom: 10px;
    width: calc(100% - 20px);
    color: #fff;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 5px;
}

.countdown-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.countdown-label {
    font-size: 0.75rem;
    color: #fff;
}

.expired {
    font-size: 1.2rem;
    font-weight: bold;
    color: red;
}

.coming-soon-btn {
    padding: 8px 16px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 5px;
    transition: background-color var(--transition-time);
    color: var(--secondary-color);
    cursor: not-allowed;
}

/* Testimonials Section */
.testimonials-section {
    padding: 20px;
    background-color: var(--box-bg-color);
    text-align: center;
}

.testimonials-section h2 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-inner {
    display: flex;
    animation: scroll 45s linear infinite;
    justify-content: center;
    align-items: center;
}

.carousel-item {
    flex: 0 0 auto;
    margin: 10px;
    width: 150px;
}

.carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.testimonials-section:hover .carousel-inner {
    animation-play-state: paused;
}

/* About Page */
.about-banner {
    width: 100%;
    height: 90vh;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    color: var(--text-color);
    border-radius: 10px;
    border: solid 1px #ffc80a;
    box-shadow: var(--box-shadow);
    margin: 8vh 8vh;
}

.about-text {
    flex: 1;
    padding-right: 20px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    margin: 0 4vw;
    font-weight: 300;
}

.about-text h2 {
    text-align: left;
    font-size: 2rem;
    margin: 10px 4vw 20px 4vw;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 80%;
    border-radius: var(--box-border-radius);
    box-shadow: var(--box-shadow);
}

.about-content {
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        margin: 40px 10px;
    }
    .about-text {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .about-content {
        width: 100%;
    }
    .about-image {
        max-width: 100%;
    }
    .hero-text {
        width: 80%;
    }
    .box-content {
        width: 100%;
    }
}

/* Hero Section */
.about-hero {
    position: relative;
    text-align: center;
    color: white;
}

.about-banner {
    width: 100%;
    height: 70vh;
    object-fit: cover
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.75);
    padding: 30px 20px;
    border-radius: 10px;
}

.hero-text h1 {
    margin: 0;
    font-size: 3rem;
}

.hero-text p {
    margin: 10px 20px 20px 20px;
    font-size: 1.2rem;
    color: #a0a3bd;
}

.hero-text .btn {
    margin-top: 20px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 40px 60px;
    background-color: #141628;
    color: white;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 300;
}

.cta-section .cta-btn {
    font-size: 1.2rem;
    padding: 10px 20px;
}

/* Forgot Password Page */
.forgot-password-container {
    background-color: #1c1c1c;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 20px auto;
}

.forgot-password-container h2 {
    margin-bottom: 20px;
}

.forgot-password-container p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.forgot-password-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.forgot-password-container label {
    align-self: flex-start;
    margin-bottom: 5px;
}

.forgot-password-container input[type="email"] {
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    width: 100%;
}

.forgot-password-container .btn {
    padding: 10px 20px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: var(--secondary-color);
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.forgot-password-container .btn:hover {
    background-color: #e0a800;
}

.forgot-password-container .links {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.forgot-password-container .links a {
    color: var(--primary-color);
    text-decoration: none;
}

/* No Reserve Auctions Page */
.no-reserve-auctions-hero {
    position: relative;
    text-align: center;
    color: white;
}

.no-reserve-banner {
    width: 100%;
    height: auto;
}

.no-reserve-info {
    padding: 40px 20px;
    text-align: center;
    background-color: var(--box-bg-color);
    border-radius: var(--box-border-radius);
    box-shadow: var(--box-shadow);
    margin: 20px auto;
    max-width: 800px;
}

.no-reserve-info h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.no-reserve-info p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.current-auctions {
    padding: 40px 20px;
    text-align: center;
}

.current-auctions h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.auctions-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.auction-item {
    background-color: var(--box-bg-color);
    padding: 20px;
    border-radius: var(--box-border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.auction-item img {
    width: 100%;
    border-radius: var(--box-border-radius);
    margin-bottom: 10px;
}

.auction-item h3 {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #000;
}

.auction-item p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.auction-item .btn {
    padding: 10px 20px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: var(--secondary-color);
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.auction-item .btn:hover {
    background-color: #e0a800;
}


.current-auctions {
    padding: 40px 20px;
    text-align: center;
}

.current-auctions h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.auctions-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.auction-item {
    background-color: var(--box-bg-color);
    padding: 20px;
    border-radius: var(--box-border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.auction-item img {
    width: 100%;
    border-radius: var(--box-border-radius);
    margin-bottom: 10px;
}

.auction-item h3 {
    margin: 10px 0;
}

/* News Page */
.news-hero {
    position: relative;
    text-align: center;
    color: white;
}

.news-banner {
    width: 100%;
    height: auto;
}

.recent-news {
    padding: 40px 20px;
    text-align: center;
}

.recent-news h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.news-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.news-item {
    background-color: var(--box-bg-color);
    padding: 20px;
    border-radius: var(--box-border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.news-item img {
    width: 100%;
    border-radius: var(--box-border-radius);
    margin-bottom: 10px;
}

.news-item h3 {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #000;
}

.news-item p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.news-item .btn {
    padding: 10px 20px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: var(--secondary-color);
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.news-item .btn:hover {
    background-color: #e0a800;
}

/* Charity Page */
.charity-hero {
    position: relative;
    text-align: center;
    color: white;
}

.charity-banner {
    width: 100%;
    height: auto;
}

.charity-info {
    padding: 40px 20px;
    text-align: center;
    background-color: var(--box-bg-color);
    border-radius: var(--box-border-radius);
    box-shadow: var(--box-shadow);
    margin: 20px auto;
    max-width: 800px;
}

.charity-info h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.charity-info p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.current-charities {
    padding: 40px 20px;
    text-align: center;
}

.current-charities h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.charities-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.charity-item {
    background-color: var(--box-bg-color);
    padding: 20px;
    border-radius: var(--box-border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.charity-item img {
    width: 100%;
    border-radius: var(--box-border-radius);
    margin-bottom: 10px;
}

.charity-item h3 {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #000;
}

.charity-item p {
    font-size: 1rem;
    margin-bottom: 10px;
}

/* Page Banners */
.cash-hero, .tech-hero, .cars-hero, .holidays-hero, .indulgence-hero {
    position: relative;
    text-align: center;
    color: white;
}

.cash-banner, .tech-banner, .cars-banner, .holidays-banner, .indulgence-banner {
    width: 100%;
    height: auto;
}

/* Information Sections */
.cash-info, .tech-info, .cars-info, .holidays-info, .indulgence-info {
    padding: 40px 20px;
    text-align: center;
    background-color: var(--box-bg-color);
    border-radius: var(--box-border-radius);
    box-shadow: var(--box-shadow);
    margin: 20px auto;
    max-width: 800px;
}

.cash-info h2, .tech-info h2, .cars-info h2, .holidays-info h2, .indulgence-info h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.cash-info p, .tech-info p, .cars-info p, .holidays-info p, .indulgence-info p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Prize Sections */
.current-cash-prizes, .current-tech-prizes, .current-car-prizes, .current-holiday-prizes, .current-indulgence-prizes {
    padding: 40px 20px;
    text-align: center;
}

.current-cash-prizes h2, .current-tech-prizes h2, .current-car-prizes h2, .current-holiday-prizes h2, .current-indulgence-prizes h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.prizes-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.prize-item {
    background-color: var(--box-bg-color);
    padding: 20px;
    border-radius: var(--box-border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.prize-item img {
    width: 100%;
    border-radius: var(--box-border-radius);
    margin-bottom: 10px;
}

.prize-item h3 {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #000;
}

.prize-item p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.prize-item .btn {
    padding: 10px 20px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: var(--secondary-color);
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.prize-item .btn:hover {
    background-color: #e0a800;
}

/* OTHERS */
.box-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.policy-container {
    background-color: #0f1218;
    text-align: justify;
    line-height: 1.4;
    color: var(--text-color);
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    margin: 8vh 8vh;
    padding: 5vh 5vw;
}

.policy-container h1,
.policy-container h2,
.policy-container h3,
.policy-container h4 {
    margin-top: 0;
    margin-bottom: 10px;
}

.policy-container h1 {
    font-size: 24px;
}

.policy-container h2 {
    font-size: 20px;
}

.policy-container h3 {
    font-size: 18px;
}

.policy-container h4 {
    font-size: 16px;
}

.policy-container p,
.policy-container ul,
.policy-container ol {
    margin-top: 0;
    margin-bottom: 10px;
}

.policy-container ul,
.policy-container ol {
    padding-left: 20px;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-container a {
    color: var(--text-color);
}

.policy-container a:hover {
    color: #f1c40f;
}

#sitemap .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 600px) {
    .policy-container {
        margin: 2vh 0;
        padding: 4vh 4vh;
    }
}

@media (min-width: 576px) {
    #sitemap .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    #sitemap .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    #sitemap .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    #sitemap .container {
        max-width: 1140px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-4,
.col-md-4,
.col-lg-6,
.col-md-6,
.col-lg-12,
.col-md-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}