@media (min-width: 1200px) {
    .sidebar__logo {
        background-size: contain !important;
    }
}

.main__content {
    align-items: center;
}

.welcome-container {
    padding-bottom: 0.5rem;
    align-items: center;
    position: relative;
    width: 100%;
    background-color: transparent;
    border-radius: 12px;
    max-width: 1200px;
    margin-right: 10px;
    margin-top:10px;
    margin-left: 10px;
}

.welcome-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.header__search-btn {
    margin-left: 160px;
    width: auto;
    position: absolute;
    right: -25px;
}

@media (min-width: 768px) {
    .welcome-inner {
        flex-direction: row;
    }
}

.welcome-left {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .welcome-left {
        margin-bottom: 0;
    }
}

.welcome-title {
    font-size: 3 rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
    .welcome-left {
        padding-left: 20px;
    }
}

.welcome-title-white {
    color: #FFFFFF;
    position: relative;
    display: inline-block;
    font-weight: 600;
    font-size: 2rem;
}

@keyframes shimmerEffect {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.welcome-title-orange {
    font-size: 2rem;
    background: linear-gradient(90deg,
            #FFFFFF 0%,
            #FFFFFF 45%,
            rgba(255, 255, 255, 0.9) 50%,
            #FFFFFF 55%,
            #FFFFFF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    animation: shimmerEffect 3s ease-in-out infinite;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2),
        0 0 20px rgba(255, 255, 255, 0.1),
        0 0 30px rgba(255, 255, 255, 0.05);
}

@keyframes titleGlow {

    0%,
    100% {
        filter: drop-shadow(0 2px 4px rgba(255, 153, 93, 0.2));
    }

    50% {
        filter: drop-shadow(0 2px 8px rgba(255, 153, 93, 0.3));
    }
}

.welcome-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .welcome-buttons {
        flex-direction: row;
    }
}

.register-button {
    overflow: hidden;
    width: 100%;
    font-size: 15px;
}

.register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(228, 31, 40, 0.6), inset 0 4px 3px rgba(255, 255, 255, 0.4);
}

.register-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(228, 31, 40, 0.4), inset 0 4px 3px rgba(255, 255, 255, 0.2);
}

.social-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-button {
    background: #491C09;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 40px;
    width: 40px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px #4a300099, inset 0 4px 3px #ffffff60;
    background: linear-gradient(to right,
            #E41F28 0%,
            #F65E2C 29%,
            #EF9336 68%,
            #F67230 100%);
}

.social-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px #4a300070, inset 0 4px 3px #ffffff40;
}

.social-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease-out;
}

.social-button:hover::before {
    transform: scale(1);
}

.social-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.social-button:hover .social-icon {
    transform: scale(1.1);
}

.welcome-right {
    display: flex;
    gap: 1.5rem;
}

@keyframes gentleFloat {
    0% {
        transform: translateY(0) rotate3d(1, 1, 0, 0deg);
        box-shadow: 0 10px 30px rgba(62, 33, 16, 0.4);
    }

    25% {
        transform: translateY(-5px) rotate3d(1, 1, 0, 1deg);
        box-shadow: 0 15px 35px rgba(62, 33, 16, 0.45);
    }

    75% {
        transform: translateY(3px) rotate3d(1, 1, 0, -1deg);
        box-shadow: 0 8px 25px rgba(62, 33, 16, 0.35);
    }

    100% {
        transform: translateY(0) rotate3d(1, 1, 0, 0deg);
        box-shadow: 0 10px 30px rgba(62, 33, 16, 0.4);
    }
}

.game-box {
    background: #b00028;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    position: relative;
    animation: gentleFloat 6s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
    transform-style: preserve-3d;
    perspective: 1000px;
    width: 280px;
    overflow: hidden;
}

.game-box.sports {
    background: linear-gradient(145deg, #0055FF 0%, #0055FF 29%, #0090FF 68%, #2E2EFF 100%);
    animation: gentleFloat 6s ease-in-out infinite;
    animation-delay: 1.5s;
    box-shadow: 0 10px 30px rgba(16, 51, 62, 0.4),
        inset 0 2px 10px rgba(93, 188, 255, 0.1);
}

.game-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 153, 93, 0.1) 0%, rgba(255, 153, 93, 0) 70%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
    z-index: 2;
}

.game-box:hover::before {
    transform: scale(1);
}

.game-box:hover {
    transform: scale(1.05) translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(62, 33, 16, 0.6),
        inset 0 2px 15px rgba(255, 153, 93, 0.2);
}

.game-box:hover .game-image {
    filter: brightness(1.2) contrast(1.1);
    transform: scale(1.05);
}

.game-box:hover .game-title {
    color: white;
    transform: translateY(-2px);
    text-shadow: 0 2px 10px rgba(255, 153, 93, 0.3);
}

.game-image {
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.game-title {
    color: #FFFFFF;
    font-size: 1.25rem;
    padding: 3px;
    transition: all 0.4s ease;
    font-weight: 600;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 153, 93, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 153, 93, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 153, 93, 0);
    }
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.brand-container {
    background: linear-gradient(to right,
            #110300 0%,
            #212121 47%,
            #110300 100%);
    padding: 1rem 0;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 -4px 15px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    margin-top: 1.5rem;
    max-width: 1200px;
    margin-right: 10px;
    margin-left: 10px;
}

.brand-inner {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.brand-slider {
    display: flex;
    gap: 2rem;
    animation: slideInfinite 40s linear infinite;
    width: fit-content;
}

.brand-slider-group {
    display: flex;
    gap: 2rem;
    padding: 0 1rem;
}

@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-logo {
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .main__content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 10px;
        overflow-x: hidden;
    }

    .container,
    .wrapper,
    .content-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 10px;
        overflow-x: hidden;
    }

    .header {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 10px;
    }

    .welcome-container .container {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .welcome-buttons {
        justify-content: space-between;
        display: flex;
        flex-direction: row;
    }

    .game-box {
        width: 100%;
        max-width: 280px;
    }

    .flex.gap-6 {
        flex-direction: column;
        align-items: center;
    }

    .welcome-title {
        font-size: 2.5rem;
    }

    .header__signin svg {
        display: none;
    }

    .header__signin {
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        padding: 8px 15px;
    }

    .header__signin span {
        margin: 0;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 14px;
        color: #FFFFFF;
        font-weight: bold;
    }
}

@media (max-width: 1200px) {
    .header__signin svg {
        display: none;
    }

    .header__signin span {
        margin: 0;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 14px;
        color: #FFFFFF;
    }
}

.header__signin span {
    font-weight: 600;
}

.header__signup {
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.header__signup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.15),
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.25),
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.15));
    transform: rotate(35deg);
    animation: shineEffect 3s infinite;
    filter: blur(3px);
    pointer-events: none;
}

@keyframes shineEffect {
    0% {
        left: -100%;
    }

    35% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.header__signup:hover::before {
    animation: shineEffect 2s;
}

.header__content {
    border-radius: 13px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 0px;
}

.sidebar__logo {
    position: relative;
    z-index: 100;
    display: block;
    width: 180px;
    height: 40px;
    background: var(--tf-logo) no-repeat left center;
    background-size: contain;
    transition: all .2s;
    order: 2;
}

.sidebar__btn {
    order: 1;
}

.header__search {
    order: 3;
    flex: 1;
    display: flex;
    justify-content: flex-start;
    height: 100%;
}

.header__actions {
    order: 4;
    /* margin-right: 20px; */
}

@media (max-width: 1200px) {
    .sidebar__logo {
        width: 100px;
    }

    .header__content {
        gap: 10px;
    }
}

.payment-container {
    background: url('https://cdn.lexcore.space/playico/assets/payment-background-4.png') no-repeat center center;
    background-size: cover;
    padding: 2rem;
    border-radius: 20px;
    margin: 3.5rem 0;
    margin-bottom: 1.23rem;
    width: 100%;
    max-width: 1200px;
    margin-right: 10px;
    margin-left: 10px;
    padding-left: 1rem;
}

.payment-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.payment-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.coin-images {
    display: flex;
    align-items: center;
    position: relative;
    height: 200px;
    margin-top: -60px;
    margin-bottom: -20px;
    width: 570px;
}

.coin-image {
    width: 200px;
    height: 290px;
    object-fit: contain;
    position: absolute;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.coin-image:nth-child(1) {
    z-index: 4;
    right: 0;
    animation: coinFloat 3s ease-in-out infinite;
}

.coin-image:nth-child(2) {
    z-index: 3;
    right: 120px;
    animation: coinFloat 3s ease-in-out infinite;
    animation-delay: 0.75s;
}

.coin-image:nth-child(3) {
    z-index: 2;
    right: 240px;
    animation: coinFloat 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.coin-image:nth-child(4) {
    z-index: 1;
    right: 360px;
    animation: coinFloat 3s ease-in-out infinite;
    animation-delay: 2.25s;
}

@keyframes coinFloat {
    0% {
        transform: translateY(0) translateZ(0);
    }

    50% {
        transform: translateY(-15px) translateZ(0);
    }

    100% {
        transform: translateY(0) translateZ(0);
    }
}

.coin-image.active {
    animation: coinSlide 10s infinite;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.coin-image.active:nth-child(1) {
    animation-delay: 0s;
}

.coin-image.active:nth-child(2) {
    animation-delay: 2.5s;
}

.coin-image.active:nth-child(3) {
    animation-delay: 5s;
}

.coin-image.active:nth-child(4) {
    animation-delay: 7.5s;
}

.payment-text {
    flex: 1;
    text-align: right;
}

.home-payment-title {
    font-weight: 600;
    color: #FFFFFF;
    font-size: 2.3rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    letter-spacing: 0px;
    margin-bottom: -5px;
}

.payment-subtitle {
    background: linear-gradient(to right,
            #E41F28 0%,
            #F65E2C 29%,
            #EF9336 68%,
            #F67230 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.payment-button {
    font-size: 15px;
    float: right;
}

.payment-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(228, 31, 40, 0.6),
        inset 0 4px 3px rgba(255, 255, 255, 0.4);
}

@media (max-width: 1440px) {
    .payment-title {
        font-size: 2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: -5px;
    }

    .payment-subtitle {
        font-size: 1.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 768px) {
    .payment-container {
        margin-top: 5rem;
    }

    .payment-title {
        font-size: 1.4rem !important;
        line-height: 1.2;
        margin-bottom: 5px;
    }

    .payment-subtitle {
        font-size: 1.4rem !important;
        line-height: 1.2;
    }

    .payment-content {
        flex-direction: column;
        text-align: center;
    }

    .payment-text {
        text-align: center;
    }

    .coin-image {
        width: 140px;
        height: 140px;
    }

    .coin-images {
        height: 120px;
        width: 100%;
        justify-content: center;
    }

    .coin-image:nth-child(1) {
        right: 0;
    }

    .coin-image:nth-child(2) {
        right: 70px;
    }

    .coin-image:nth-child(3) {
        right: 140px;
    }

    .coin-image:nth-child(4) {
        right: 210px;
    }

    .sidebar__btn {
        display: none;
    }
}

.features-container {
    width: 100%;
    margin-top: 0px;
    max-width: 1200px;
    padding-top: 10px;
}

.features-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.features-content {
  display:none;
    //display: flex;
    gap: 1rem;
    justify-content: space-between;
}

@keyframes featureFloat {
    0% {
        transform: translateY(0) translateX(0);
        box-shadow: 0 5px 15px rgba(246, 96, 45, 0.1);
    }

    25% {
        transform: translateY(-5px) translateX(2px);
        box-shadow: 0 10px 20px rgba(246, 96, 45, 0.2);
    }

    75% {
        transform: translateY(3px) translateX(-2px);
        box-shadow: 0 7px 17px rgba(246, 96, 45, 0.15);
    }

    100% {
        transform: translateY(0) translateX(0);
        box-shadow: 0 5px 15px rgba(246, 96, 45, 0.1);
    }
}

.feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 12px;
    padding-right: 10px;
    padding-left: 10px;
    border: 2px solid #F6602D;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    justify-content: flex-start;
    transition: all 0.4s ease;
    animation: featureFloat 6s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(246, 96, 45, 0.25);
    border-color: #EF9336;
}

.feature-icon-wrapper {
    flex-shrink: 0;
    margin-right: 20px;
}

.feature-icon-bg {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(90deg, #FF0033 0%, #FF002F 29%, #FF4800 68%, #FF2E32 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.feature-icon-bg:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(142, 94, 65, 0.3);
}

.feature-icon-bg::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8e5e41 0%, #452818 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-icon-bg:hover::after {
    opacity: 0.6;
}

.feature-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.feature-icon-bg:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0px;
    text-align: center;
}

@media (max-width: 1440px) {
    .feature-title {
        font-size: 1.1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 768px) {
    .features-content {
        flex-direction: column;
    }

    .feature-title {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

body {
    position: relative;
    overflow-x: hidden;
}

.background-glow {
    position: absolute;
    width: 1200px;
    height: 800px;
    top: 400px;
    left: -306px;
    opacity: 0.9;
    pointer-events: none;
    z-index: -1;
    filter: blur(100px);
    mix-blend-mode: color-dodge;
}

.background-container {
    position: absolute;
    top: 330px;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-container {
    width: 100%;
    max-width: 1200px;
    margin: 1.5rem auto;
    padding: 10px;
    padding-left: 0px;
    /* overflow: hidden; */
    background: transparent;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.banner-left {
    flex: 1;
}

.banner-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.players-image {
    width: 660px;
    height: auto;
    object-fit: contain;
}

.banner-text-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.banner-background {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: auto;
    height: 100%;
}

.blue-effect-image {
    width: 200px;
    height: auto;
    opacity: 0.8;
}

.banner-text {
    position: relative;
    z-index: 1;
}

.banner-title {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 1.8rem;
    }

    .banner-subtitle {
        font-size: 1.8rem !important;
    }
}

.banner-subtitle {
    background: linear-gradient(to right,
            #0055FF 0%,
            #4F8AFF 29%,
            #0090FF 68%,
            #55AAFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    font-weight: 600;
    margin-top: -14px;
    display: inline-block;
    background-size: 200% auto;
    animation:
        pulsatingBetPrompt 2.5s ease-in-out infinite,
        gradientFlow 2s linear infinite;
    padding: 0 5px;
}

@keyframes pulsatingBetPrompt {

    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 2px 10px rgba(0, 144, 255, 0.3);
    }

    50% {
        transform: scale(1.03);
        text-shadow: 0 4px 20px rgba(80, 175, 255, 0.6);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: -200% center;
    }
}

.sports-buttons {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 15px;
    background: linear-gradient(to right,
            #0055FF 0%,
            #0055FF 29%,
            #0090FF 68%,
            #2E2EFF 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.sports-buttons:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 85, 255, 0.3);
}

.sports-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.sports-button:hover {
    transform: scale(1.05);
}

.sports-icon {
    width: 20px;
    height: 20px;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .banner-content {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .banner-right {
        width: 100%;
    }

    .banner-left {
        width: 100%;
        text-align: center;
    }

    .sports-buttons {
        margin: 0 auto;
        width: auto;
    }

    .players-image {
        max-height: 200px;
        margin: 0 auto;
        width: 100%;
    }
}

.banner-slider {
    //display: flex;
  display:none;
    gap: 2rem;
    padding: 20px;
    padding-left: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-item {
    flex: 1;
    background: transparent;
    padding: 25px;
    border-radius: 10px;
    position: relative;
    opacity: 0.5;
    transition: all 0.3s ease;
    text-align: center;
    padding: 2rem;
    border: 1px solid transparent;
    pointer-events: none;
}

.slider-item[data-index="0"] {
    border-color: #FF002F;
}

.slider-item[data-index="1"] {
    border-color: #934DC2;
}

.slider-item[data-index="2"] {
    border-color: #FF7F30;
}

.slider-item.active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 2;
    background-color: #101010;
}

.slider-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    justify-content: center;
}

.slider-icon img {
    width: 56px;
    height: 56px;
}

.slider-text {
    flex: 1;
}

.slider-title {
    text-align: left;
    color: #FFFFFF;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
    margin-bottom: 2px;
}

.slider-description {
    text-align: left;
    color: #90A6BE;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 0px;
}

.progress-bar {
    width: 60%;
    height: 6px;
    background: #3D4B5B;
    border-radius: 10px;
    margin: 15px auto;
    overflow: hidden;
}

.progress {
    width: 0%;
    height: 100%;
    background: #FF3045;
    border-radius: 10px;
    transition: width 0.1s linear;
}

.slider-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .banner-slider {
        flex-direction: column;
        padding: 10px;
    }

    .slider-item.active {
        transform: scale(1.02);
    }

    .slider-title {
        font-size: 1.2rem;
    }

    .slider-description {
        font-size: 1rem;
    }
}

.table-wrap {
    background-color: transparent;
}

.tabs-nav {
    background: linear-gradient(to right,
            #2D0F0E 0%,
            #411717 47%,
            #2A0B03 100%);
}

.tabs-nav__btn.active {
    background: linear-gradient(to right,
            #FF0033 0%,
            #FF002F 26%,
            #FF4800 68%,
            #FF2E32 100%);
    border-radius: 10px;
}

.last-bets-wrapper .table-wrap {
    background-color: transparent;
}

.xtable thead th {
    padding: 20px !important;
}

.xtable thead {
    background: linear-gradient(to right,
            #110300 0%,
            #411717 47%,
            #110300 100%);
    border-radius: 10px;
    margin-bottom: 12px;
}

.xtable tbody tr {
    background-color: #1A0905 !important;
    margin-bottom: 6px;
    border-radius: 6px;
    display: table-row;
}

.xtable tr:nth-child(even),
.xtable tr:nth-child(odd) {
    background-color: #1A0905 !important;
}

.xtable tr {
    background-color: #1A0905 !important;
}

.xtable tbody td {
    padding: 12px !important;
}

.ss-main {
    background-color: #1F0907 !important;
    border-radius: 10px;
}

.table-wrap__head {
    padding-left: 0px;
    margin-bottom: 20px;
}

#last-bets-wrapper .section .container {
    padding-left: 10px;
}

.xtable thead th {
    padding: 20px !important;
}

.tabs-nav__btn:hover {
    color: white !important;
}

.vip-banner-container {
    position: relative;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

.vip-banner-image {
    width: 100%;
    height: auto;
}

.vip-banner-text {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 100%;
}

.vip-title,
.vip-subtitle {
    font-size: 2.5rem;
    font-weight: bold;
    white-space: nowrap;
}

.vip-subtitle {
    position: relative;
    background: linear-gradient(to right, #E41F28 0%, #F65E2C 29%, #EF9336 68%, #F67230 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    top: -20px;
    margin-bottom: 0px;
}

.vip-banner-buttons {
    margin-top: -20px;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.vip-play-button,
.vip-details-button {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #FFFFFF;
}

.vip-play-button {
    padding-right: 30px;
    padding-left: 30px;
    background: linear-gradient(to right, #E41F28 0%, #F65E2C 29%, #EF9336 68%, #F67230 100%);
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 3px 16px rgba(228, 31, 40, 0.5),
        inset 0 4px 3px rgba(255, 255, 255, 0.3);
}

.vip-play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(239, 147, 54, 0.4), inset 0 4px 3px rgba(255, 255, 255, 0.3);
}

.vip-details-button {
    background-color: #383838;
    color: #E1E1E1;
    padding-right: 30px;
    padding-left: 30px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 3px 16px rgb(255 255 255 / 20%),
        inset 0 2px 3px rgba(255, 255, 255, 0.3);
}

.vip-details-button:hover {
    background-color: #4a4a4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    .vip-banner-buttons {
        gap: 0.5rem;
        margin-top: -15px;
    }

    .vip-play-button,
    .vip-details-button {
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .vip-banner-text {
        top: 85%;
    }
}

@media (max-width: 768px) {

    .vip-title,
    .vip-subtitle {
        font-size: 1.8rem;
        margin-top: 12px;
    }

    .vip-banner-container {
        margin-top: 80px;
    }

    .vip-banner-text {
        top: 120%;
    }
}

@media (max-width: 480px) {

    .vip-title,
    .vip-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1200px) and (max-width: 1440px) {
    .vip-banner-container {
        margin-top: 20px;
    }
}

@media (min-width: 1200px) and (max-width: 1440px) {
    .sidebar__logo {
        margin-left: 0px;
    }
}

@media (max-width: 360px) {

    .vip-play-button,
    .vip-details-button {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .vip-banner-buttons {
        gap: 0.3rem;
    }
}

.section--first .section .container .row .col-12 .table-wrap {
    padding-left: 0px;
    padding-top: 0px;
}

.section--first .section .container .row .col-12 {
    padding-left: 0px;
}

.tabs-nav {
    padding: 4px 4px !important;
}

.nav .nav-tabs .tabs-nav {
    border-radius: 12px !important;
}

.tabs-nav__btn.active {
    border-radius: 8px !important;
}

#high-rtp-games-wrapper {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 0px;
}

#big-wins-wrapper {
    max-width: 1200px !important;
    margin: 0 auto;
}

.section__title {
    text-transform: none;
    font-weight: 500;
    font-size: 20px;
}

.slot--carousel {
    padding-top: 0px !important;
}

.swiper-button-prev,
.swiper-button-next {
    opacity: 0.9 !important;
}

.game-number {
    position: absolute;
    top: 40px;
    left: 0;
    background-color: #da0000;
    color: #FFFFFF;
    padding: 4px 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
}

.section__title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.section__title-link {
    color: #979797;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.section__title-link:hover {
    color: #FFFFFF;
}

#last-bets-wrapper {
    max-width: 1200px;
}

/* Popüler Sporlar Bölümü */
.popular-sports-container {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 10px;
    padding-left: 0px;
}

.popular-sports-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 1.5rem;
}

.popular-sports-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
}

.popular-sports-title img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.popular-sports-link {
    color: #979797;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.popular-sports-link:hover {
    color: #FFFFFF;
}

.popular-sports-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

@keyframes borderGlow {
    0% {
        box-shadow: 0 0 15px rgba(255, 48, 69, 0.3),
            inset 0 0 15px rgba(255, 48, 69, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 48, 69, 0.5),
            inset 0 0 20px rgba(255, 48, 69, 0.5);
    }

    100% {
        box-shadow: 0 0 15px rgba(255, 48, 69, 0.3),
            inset 0 0 15px rgba(255, 48, 69, 0.3);
    }
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.sport-box {
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
}

.sport-box:hover {
    transform: translateY(-5px);
}

.sport-box:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 184, 0, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.sport-icon {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border-radius: 16px 16px 0 0;
    display: block;
}

.sport-box:hover .sport-icon {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.sport-name {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    text-transform: capitalize;
    padding: 15px;
    background: #1D1D1D;
    margin: 0;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 16px 16px;
    width: 100%;
}

.sport-box:hover .sport-name {
    color: #FFB800;
    transform: translateY(0);
    text-shadow: 0 2px 10px rgba(255, 184, 0, 0.3);
}

@media (max-width: 768px) {
    .sport-box {
        height: auto;
    }

    .sport-icon {
        height: auto;
    }

    .sport-name {
        font-size: 14px;
        padding: 10px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .popular-sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@keyframes bounceBall {
    0% {
        transform: translateY(0) scale(1);
    }

    15% {
        transform: translateY(25px) scale(1.1, 0.9);
    }

    30% {
        transform: translateY(0) scale(0.95, 1.05);
    }

    40% {
        transform: translateY(10px) scale(1.05, 0.95);
    }

    50% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.swiper-slide img {
    object-fit: contain;
}

.slot {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.slot__img {
    width: 100%;
    height: 100%;
}

.slot__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.slot:hover {
    transform: none !important;
}

.slot:hover .slot__img img {
    filter: blur(3px) brightness(0.5);
}

.slot-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.98) 0%,
            rgba(0, 0, 0, 0.95) 15%,
            rgba(0, 0, 0, 0.85) 30%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(0, 0, 0, 0.5) 70%,
            rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slot:hover .slot-hover-overlay {
    opacity: 1;
}

.slot-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #ff2424;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 0 0 8px rgba(196, 24, 53, 0.2),
        0 0 0 16px rgba(196, 24, 53, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.4),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3),
        inset 0 4px 8px rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.slot:hover .slot-play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.slot-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #da0000;
    box-shadow:
        0 0 0 10px rgba(255, 45, 85, 0.25),
        0 0 0 20px rgba(255, 45, 85, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.5),
        inset 0 -4px 8px rgba(0, 0, 0, 0.2),
        inset 0 4px 8px rgba(255, 255, 255, 0.4);
}

.slot-play-button:active {
    transform: translate(-50%, -50%) scale(0.95);
    background: #b31530;
    box-shadow:
        0 0 0 6px rgba(196, 24, 53, 0.2),
        0 0 0 12px rgba(196, 24, 53, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.slot-play-button svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transform: translateX(2px);
}

.slot__title-new {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    text-align: left;
}

.slot:hover .slot__title-new {
    opacity: 1;
}

.slot__title {
    display: none !important;
}

.slot__title-new h3 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.slot__title-new .provider {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1200px) {
    .sidebar {
        z-index: 10;
    }
}

.sidebar.active .sidebar__small {
    /* position: fixed; */
}

@media (min-width: 768px) {
    .sidebar.active .sidebar__big {
        position: fixed;
        height: 100vh;
    }
}

.active .svg-icon,
a:hover .svg-icon,
button:hover .svg-icon {
    fill: #9A9CA4 !important;
    color: #9A9CA4 !important;
    stroke: none !important;
}

.sidebar__nav-small li.active a svg {
    fill: #ff2424 !important;
    color: #ff2424 !important;
    stroke: none !important;
}

/* VIP kartlarını yatay scroll ile tek satırda göstermek için */
.section .container .row {
    display: flex;
}

.section .container .row::-webkit-scrollbar {
    display: none;
}

.ranking--king .ranking__name {
    background-color: transparent !important;
}

.ranking--obsidian .ranking__name {
    background-color: transparent !important;
}

.ranking--diamond .ranking__name {
    background-color: transparent !important;
}

.ranking--copper .ranking__name {
    background-color: transparent !important;
}

.vip-scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(30, 7, 5, 0.85);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.2s, transform 0.2s;
    opacity: 0.85;
}

.vip-scroll-arrow:hover {
    background: #ff2424;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.vip-scroll-arrow.left {
    left: -20px;
}

.vip-scroll-arrow.right {
    right: -20px;
}

/* Oklar mobilde gizlensin */
@media (max-width: 768px) {
    .vip-scroll-arrow {
        display: none;
    }
}

.vip-system-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 0px auto;
    text-align: center;
    padding: 0 10px;
    margin-top: 50px;
}

.vip-system-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    margin-top: 10px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.vip-system-hr {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* VIP Kartları Modern Tasarım */
.vip-ranking-card {
    position: relative;
    background: #251A3D;
    border-radius: 32px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    padding: 0px 10px 20px 10px;
    margin-top: 48px;
    text-align: center;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    transition: background 0.3s;
}

.vip-ranking-card.vip-2 {
    background: rgba(70, 148, 86, 0.3);
}

.vip-rank-badge {
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 96px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.vip-rank-badge img {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.18));
}

.vip-ranking__name {
    margin-top: 45px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #9791F7;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    transition: color 0.3s;
}

.vip-ranking-card.vip-2 .vip-ranking__name {
    color: #4E9A71;
}

.vip-ranking__amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.vip-ranking__wager {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 10px;
}

.vip-ranking__desc {
    font-size: 1.1rem;
    color: #fff;
    margin-top: 18px;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .vip-ranking-card {
        padding: 40px 10px 24px 10px;
        min-height: 260px;
    }

    .vip-rank-badge {
        width: 72px;
        height: 72px;
        top: -36px;
    }

    .vip-rank-badge img {
        width: 72px;
        height: 72px;
    }

    .vip-ranking__name {
        margin-top: 44px;
        font-size: 1.1rem;
    }

    .vip-ranking__amount {
        font-size: 1.4rem;
    }
}

@media screen and (min-width: 991px) {
    .container {
        padding-left: 0px !important;
    }
}

#high-rtp-games-wrapper .container .row .col-12.d-flex.flex-column.gap-2 {
    display: none !important;
}

/* Eğer iki sidebar__link'ten biri passive ise, passive olmayana arka plan ve beyaz renkler ekle */
.sidebar__links:has(.sidebar__link.passive) .sidebar__link:not(.passive) {
    background: url('https://cdn.lexcore.space/playico/assets/header-menu-background-2.png') !important;
    background-size: cover !important;
    background-position: center !important;
    filter: none !important;
}

.sidebar__links:has(.sidebar__link.passive) .sidebar__link:not(.passive) span {
    color: #FFFFFF !important;
}

.sidebar__links:has(.sidebar__link.passive) .sidebar__link:not(.passive) svg path {
    fill: #FFFFFF !important;
}

body[data-active-page="vip"] .section .container .row::-webkit-scrollbar {
    display: none;
}

#new-games-wrapper {
    margin-left: auto !important;
    margin-right: auto !important;
}

#freespin-games-wrapper {
    margin-left: auto !important;
    margin-right: auto !important;
}

#buy-bonus-games-wrapper {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Temel rank kartı stili */
.ranking {
    position: relative;
    padding: 80px 24px 24px;
    border-radius: 16px;
    margin-top: 20px;
    text-align: center;
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    z-index: 1;
    transition: transform 0.3s ease, z-index 0s 0.3s;
    overflow: visible;
}

/* Hover durumunda z-index artışı */
.ranking:hover {
    transform: scale(1.02);
    z-index: 10;
    transition: transform 0.3s ease, z-index 0s;
}

.state-slug-iron {
    background-color: #3D352C !important;
}

.state-slug-ironico {
    background-color: #3B2D1E !important;
}

/* Rank seviyelerine göre arka plan renkleri */
.ranking.state-slug-slother {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.2) 0%, rgba(26, 26, 26, 1) 100%);
}

.ranking.state-slug-rookie {
    background: linear-gradient(180deg, rgba(192, 192, 192, 0.2) 0%, rgba(26, 26, 26, 1) 100%);
}

.ranking.state-slug-bronze {
    background: linear-gradient(180deg, rgba(205, 127, 50, 0.2) 0%, rgba(26, 26, 26, 1) 100%);
}

/* Logo container'ı için stil */
.ranking .d-flex.align-items-center.justify-content-center {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 8px;
    width: 100%;
    z-index: 5;
}

/* Rank logosu için stil */
.ranking .rank-icon {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain;
    position: relative;
    z-index: 5;
}

/* Rank ismi için stil */
.ranking .ranking__name {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 24px;
    text-transform: none;
    text-align: center;
    width: 100%;
}

.ranking--bronze .ranking__name {
    background-color: transparent !important;
}

/* Rank miktarı için stil */
.ranking__amount {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 16px 0;
}

/* Wager yazısı için stil */
.ranking__wager {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

/* Rank listesi için stil */
.ranking__list {
    flex: 1;
    margin-top: auto;
    padding: 0;
    list-style: none;
}

/* Mobil için düzenlemeler */
@media (max-width: 768px) {

    .ranking {
        padding: 50px 20px 20px;
        min-height: 350px;
    }

    .ranking .rank-icon {
        width: 60px;
        height: 60px;
    }
}

.ranking--gold .ranking__name {
    background-color: transparent;
}

.ranking--platinum .ranking__name {
    background-color: transparent;
}

.header__dropdown-btn {
    background: linear-gradient(to right,
            #E41F28 0%,
            #F65E2C 29%,
            #EF9336 68%,
            #F67230 100%) !important;
    box-shadow: 0 3px 16px rgba(228, 31, 40, 0.5),
        inset 0 4px 3px rgba(255, 255, 255, 0.3);
    font-weight: 800 !important;
}

.header__dropdown-btn:hover {
    color: white !important;
}

.header__signin span {
    text-transform: capitalize !important;
}

/* Playico Orjinalleri Bölümü */
.originals-container {
    width: 100%;
    max-width: 1200px;
    margin: 0rem auto;
    /*padding: 0 10px;*/
}

.originals-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 1.5rem;
}

.originals-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
}

.originals-title img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.originals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.original-game {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.original-game:hover {
    transform: translateY(-5px);
}

.original-game img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.original-game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #FFFFFF;
}

.original-game-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .originals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .originals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .originals-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .originals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .originals-container {
        padding: 0 10px;
    }

    .originals-title {
        font-size: 18px;
    }
}

.slot__pos {
    display: none;
}