* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.material-icons.md-12 {
    font-size: 12px;
}

.material-icons.md-14 {
    font-size: 14px;
}

.material-icons.md-16 {
    font-size: 16px;
}

.material-icons.md-18 {
    font-size: 18px;
}

.material-icons.md-24 {
    font-size: 24px;
}

.material-icons.md-36 {
    font-size: 36px;
}

.material-icons.md-48 {
    font-size: 48px;
}

body {
    font-family: 'Roboto', sans-serif;
    /* height: 300vh; */
}

.container-top-bar {
    width: 100%;
    background-color: #E10014;
}

.logo {
    width: 150px;
    padding: 10px 20px;
}

.p-download {
    background: #A7A7A7;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
}

.full-content {
    background: #F5F5F5;
    padding: 40px 20px;
}

.container-box-content {
    border-radius: 8px;
    margin: 0 20px;
}

.title-box h1 {
    background-color: inherit;
    font-weight: 600 !important;
    font-size: 24px !important;
    text-align: center;
    background: #E10014;
    color: white;
    padding: 10px 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    text-transform: uppercase;
}

.content-box {
    padding: 20px 40px;
    background: #fff;
    font-size: 14px;
    padding-bottom: 230px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    position: relative;
}

.download {
    position: absolute;
    bottom: 45px;
    right: 10px;
    width: 120px;
}
.download img{
	width: 120px
}

/* .content-box::before {
    content: url(player.png);
    position: absolute;
    bottom: 70px;
    left: -30px;
    width: 100px;
    height: 100px;
} */

.download::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 260px;
    height: 260px;
    background-image: url("https://partnerbet9baaf778e2.blob.core.windows.net/blobpartnerbet9baaf778e2/wp-content/uploads/BCFR_CP_Content_V9-Launch-2.png");
    background-repeat: no-repeat;
    background-size: contain;
    left: -220px;
    bottom: -80px;
}


.title-infos {
    margin: 0 25px;
    margin-top: 60px;
}

h2 {
    color: #E10014;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

ul {
    margin: 20px;
}

ul li {
    font-size: 16px;
    line-height: 22px;
}

.download-2 {
    margin: auto;
    display: block;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
}

.download-2 img {
    width: 150px;
}

.description-text {
    padding-top: 20px;
}

.slider-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 60px;
}

.slider-wrapper h2 {
    color: #E10014;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.slider-text {
    width: 350px;
    text-align: center;
    padding: 0 10px;
    height: 80px;
}

.slide-caption-source {
    display: none;
}

.slider-text .slide-caption-title {
    color: #E10014;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.slider-text .slide-caption-desc {
    color: #111;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
}

.slider-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 56px;
}

.slider {
    width: 200px;
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    user-select: none;
    touch-action: pan-y;
    overscroll-behavior-x: contain;
    cursor: grab;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.slider.dragging {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.slide {
    min-width: 200px;
    height: 400px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.02));
}

.slide-caption-source {
    display: none;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background: #fff;
    color: #E10014;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    z-index: 5;
}

.arrow:hover {
    background: #E10014;
    color: #fff;
    box-shadow: 0 14px 26px rgba(225, 0, 20, 0.18);
}

.arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.arrow-left {
    left: 0;
}

.arrow-right {
    right: 0;
}

.dots {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    appearance: none;
    background: rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, background 0.25s ease;
    cursor: pointer;
}

.dot.active {
    background: #E10014;
    transform: scale(1.25);
}

@media (max-width: 480px) {
    .slider-area {
        padding: 0 44px;
    }

    .arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}