@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&amp;family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;family=Outfit:wght@100..900&amp;family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&amp;family=Roboto:ital,wght@0,100..900;1,100..900&amp;family=Tajawal:wght@200;300;400;500;700;800;900&amp;display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", serif;
}
:root {
    --primary: #05fa7f;
    --secondry: #0a0b0a;
    --border-radius: 50px;
    --black: #000000;
    --white: #dcfce7;
}
body {
    background-color: var(--black);
}
a {
    text-decoration: none;
}
ul {
    list-style-type: none;
}
.container {
    margin: 0 auto;
    width: 100%;
    padding: 0 4%;
}
header {
    padding: 15px;
    background-color: var(--secondry);
}
.claim-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
#timer {
    color: var(--primary);
}
.getbox2 {
    height: 150px;
    width: 150px;
    overflow: hidden;
}
.getbox2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.getbox {
    display: flex;
    justify-content: end;
    height: 100%;
}
.claim-img img {
    width: 70%;
    height: 100%;
    object-fit: cover;
}
.claim-text h1 {
    font-size: 54px;
    font-weight: 700;
    color: var(--white);
    padding: 40px 0;
    text-transform: capitalize;
}
.red-bg {
    background-image: linear-gradient(to bottom right, #00140b, #000000);
    padding: 30px 0;
}
.both h1,
.blue-bg h1,
.how-work h1 {
    font-size: 50px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}
.video-main {
    width: 100%;
    display: flex;
    justify-content: center;
}
.how-work p {
    font-size: 30px;
    font-weight: 500;
    color: var(--white);
    width: 60%;
    margin: 10px auto;
    line-height: 38px;
}
.how-work a {
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 60px;
    background-color: var(--primary);
    border-radius: 8px;
    display: inline-block;
    transition: 0.5s;
}
.prev-btn:hover,
.next-btn:hover,
.done-box a:hover,
.how-work a:hover {
    background-color: #03713a;
}
.cashcount {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0 0 0;
}
.flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 80%;
    justify-items: center;
    margin: 20px 0 0 0;
    gap: 20px;
}
.timer {
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.cashcount-img {
    width: 100%;
    background-size: cover;
    background-image: url(assets/live-cashout-bg.jpg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
}
.cashout-container {
    width: 100%;
    background-color: var(--black);
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow-y: scroll;
    max-height: 300px;
    scrollbar-width: none;
}
.cashcount-img p {
    font-size: 20px;
    color: var(--white);
    font-weight: 500;
}
.cashcount-img h1 {
    font-size: 30px;
    color: var(--white);
    font-weight: 700;
}
.cashout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-image: linear-gradient(to bottom right, #00140b, #000000);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.5s ease-in-out;
    margin: 0 0 10px 0;
}
.user-info {
    display: flex;
    align-items: center;
}
.user-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.placeholder-icon {
    width: 40px;
    height: 40px;
    background-color: #0097a7;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-right: 10px;
}
.username {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}
.time {
    font-size: 0.85rem;
    color: #555555;
    margin: 0;
}
.amount {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}
.flag {
    width: 15px;
    height: 15px;
    bottom: 0;
    position: absolute;
    border-radius: 50px;
    right: 10px;
}
.amount-container {
    display: flex;
    align-items: center;
    gap: 5px;
}
.bank-icon {
    font-size: 14px;
    color: var(--white);
    width: 25px;
    text-align: end;
    border-left: 1px solid var(--white);
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.games {
    text-align: center;
}
.pair {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
}
.done-main {
    padding: 40px 0;
}
.pair img {
    height: 100px;
    width: 100px;
    object-fit: cover;
}
.main-ft h1,
.games h2,
.pair h1 {
    font-size: 34px;
    font-weight: 700;
    color: var(--white);
}
.games h2 {
    width: 60%;
    margin: 0 auto;
    text-align: left;
}
.done-main {
    width: 80%;
    margin: 0 auto;
}
.done-box {
    background-image: linear-gradient(to bottom right, #00140b, #000000);
    width: 35%;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #1a1a1a;
}
.done-box div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.done-box div img {
    width: 170px;
}
.done-box h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0;
    color: var(--white);
}
.done-box a {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    width: 100%;
    border-radius: 8px;
    padding: 10px;
    background-color: var(--primary);
    color: var(--black);
}
.blue-bg {
    background-image: linear-gradient(to bottom right, #00140b, #000000);
    padding: 30px 0;
}
.blue-bg video {
    width: 70%;
    margin: 20px 0 0 0;
}
.how-work {
    text-align: center;
}
.both {
    padding: 30px 0;
}
.video-main2 {
    display: grid;
    gap: 20px;
    margin: 30px 0 0 0;
    grid-template-columns: repeat(3, 1fr);
}
.video-main2 video {
    width: 100%;
    height: 400px;
}
/* Slider container styles */
.slider-container {
    position: relative;
    width: 95%;
    overflow: hidden;
    margin: 30px auto;
}

/* Wrapper for better control over the slider */
.slider-wrapper {
    overflow: hidden;
}

/* Controls for next/prev buttons */
.control-btn {
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: end;
}

/* Slider style with smooth transitions */
.slider {
    display: flex;
    transition: transform 0.5s ease;
}

/* Each card inside the slider */
.card {
    min-width: calc(100% / 3); /* For larger screens, 3 cards per row */
    background-color: var(--black);
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    margin: 0 10px;
    padding: 20px;
}

/* Buttons (next and previous) style */
.prev-btn,
.next-btn {
    top: 50%;
    background-color: var(--primary);
    color: var(--black);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    z-index: 10;
}

.user-rev {
    height: 50px;
    width: 50px;
    overflow: hidden;
    border-radius: var(--border-radius);
}
.user-rev img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.card-header {
    display: flex;
    justify-content: space-between;
}
.card-header ul {
    width: 70%;
}
.card-header ul li i {
    font-size: 10px;
    color: #ffde60;
}
.card-header ul li h2 {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}
.card-header ul li h3 {
    font-size: 12px;
    font-weight: 400;
    color: #9ca3af;
}
.card-header ul li p {
    font-size: 10px;
    font-weight: 300;
    color: #9ca3af;
}
.social {
    color: var(--primary);
}
.review-text {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 400;
    margin: 20px 0;
}
.main-ft {
    padding: 30px 0 100px 0;
    width: 50%;
    margin: 0 auto;
}
.main-ft p {
    font-size: 30px;
    font-weight: 400;
    color: var(--white);
}
.image-flag-container {
    position: relative;
}
@media (max-width: 900px) {
    .claim-text h1 {
        font-size: 24px;
        padding: 8px 0;
    }
    .getbox2 {
        height: 120px;
        width: 120px;
    }
    .how-work p {
        width: 100%;
    }
    .flex {
        width: 100%;
    }
    .timer {
        font-size: 24px;
    }

    .cashout-container {
        max-width: 100%;
    }

    .cashout {
        padding: 10px;
    }
    .main-ft h1,
    .games h2,
    .pair h1 {
        font-size: 26px;
    }
    .games {
        text-align: left;
    }
    .done-box {
        width: 75%;
        text-align: center;
    }
    .main-ft {
        width: 80%;
    }
    .card {
        min-width: calc(100% / 2);
    }
    .username {
        font-size: 0.9rem;
    }

    .amount {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .blue-bg video{
        width: 100%;
    }
    .flex,
    .claim-main {
        grid-template-columns: repeat(1, 1fr);
    }
    .both h1,
    .blue-bg h1,
    .how-work h1 {
        font-size: 32px;
    }
    .how-work p {
        font-size: 18px;
        line-height: 28px;
    }
    .main-ft h1,
    .games h2,
    .pair h1 {
        font-size: 20px;
    }
    .games h2 {
        width: 80%;
    }
    .done-box {
        width: 100%;
    }
    .done-box div img {
        width: 100px;
    }
    .card {
        min-width: calc(100% / 1);
    }
    .control-btn {
        margin: 10px 0 0 0;
    }
    .slider-container,
    .main-ft {
        width: 100%;
    }
    .timer {
        font-size: 20px;
    }
    .video-main2 {
        grid-template-columns: repeat(1, 1fr);
    }
    .video-main2 video {
        width: 100%;
        margin: 0 auto;
    }
    .main-ft p {
        font-size: 20px;
        font-weight: 400;
        color: var(--white);
    }
    .main-ft {
        padding: 30px 0;
    }
    .time {
        font-size: 10px;
    }
}
