:root {
    --primary-color: #160E2F;
    --secondary-color: #460250;
    --accent-color: #ffcc00;
    --text-color: #ffffff;
    --dark-bg: #770063;
    --dark-bg-sb: #460250;
    --light-accent: #25a37f;
    --btn-color:#66FF00;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.header {
    background-color: var(--dark-bg);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}

.logo-icon {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-right: 10px;
}

.nav-link {
    color: var(--text-color);
    padding: 8px 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    font-size: 14px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link i {
    margin-right: 5px;
}

.btn-login {
    background-color: transparent;
    border: 1px solid var(--text-color);
    color: var(--btn-color);
    padding: 5px 20px;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-login:hover {
    background-color: var(--text-color);
    color: var(--dark-bg);
}

.btn-register {
    background-color: var(--btn-color);
    border: none;
    color: #000;
    padding: 5px 20px;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-register:hover {
    background-color: #e6b800;
}

.sidebar {
    background-color: var(--dark-bg-sb);
    height: calc(100vh - 60px);
    position: sticky;
    top: 60px;
    overflow-y: auto;
}

.sidebar-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-link:hover, .sidebar-link.active {
    background-color: rgba(255,255,255,0.1);
    border-left-color: var(--accent-color);
}

.sidebar-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.sidebar-heading {
    color: #FFF;
    padding: 10px 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
}

.league-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 15px 10px 35px;
    display: flex;
    align-items: center;
    font-size: 14px;
    transition: all 0.3s;
}

.league-link:hover {
    background-color: rgba(255,255,255,0.05);
}

.league-icon {
    width: 20px;
    height: 20px;
    background-color: #555;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-content {
    padding: 20px;
}

.coupon-sidebar {
    background-color: var(--dark-bg-sb);
    height: calc(100vh - 60px);
    position: sticky;
    top: 60px;
    padding: 15px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.slider {
    background-color: var(--secondary-color);
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.slider-content {
    padding: 30px;
    color: var(--text-color);
}

.slider-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.slider-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.btn-play {
    background-color: var(--text-color);
    color: var(--dark-bg);
    border: none;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-play:hover {
    background-color: var(--accent-color);
}

.slider-placeholder {
    width: 100%;
    height: 200px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    border-radius: 10px;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 15px;
}

.slider-arrow {
    background-color: rgba(0,0,0,0.3);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    cursor: pointer;
}

.category-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.category-placeholder {
    width: 100%;
    height: 120px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
}

.category-title {
    padding: 15px;
    font-weight: 500;
    text-align: center;
}

.game-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.game-placeholder {
    width: 100%;
    height: 180px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: rgba(255,255,255,0.5);
}

.game-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.game-subtitle {
    font-size: 12px;
    opacity: 0.7;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-title {
    font-size: 18px;
    font-weight: 500;
}

.section-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.section-link i {
    margin-left: 5px;
}

.coupon-header {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.coupon-header i {
    margin-right: 10px;
    font-size: 22px;
}

.empty-coupon {
    text-align: center;
    padding: 50px 0;
}

.empty-coupon-icon {
    font-size: 40px;
    opacity: 0.5;
    margin-bottom: 20px;
}

.empty-coupon-text {
    opacity: 0.7;
    margin-bottom: 10px;
}

.empty-coupon-subtext {
    font-size: 12px;
    opacity: 0.5;
}

.about-section {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
}

.about-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

.about-text {
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .sidebar, .coupon-sidebar {
        position: static;
        height: auto;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .header {
        padding: 5px 0;
    }
}

@media (max-width: 767.98px) {
    .nav-link span {
        display: none;
    }
    
    .nav-link i {
        margin-right: 0;
        font-size: 16px;
    }
    
    .logo span {
        display: none;
    }
    
    .btn-login, .btn-register {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .slider-title {
        font-size: 18px;
    }
}

.block__popular {
    background: #160E2F;
    padding: 5px;
    border-radius: 12px;
}
.fa-chevron-right {
    color:var(--btn-color);
}

.sidebar::-webkit-scrollbar { width: 0; }
.sidebar { -ms-overflow-style: none; }

.row__categories {
    display: flex;
    gap: 10px;
    align-items: center;
    /* justify-content: space-between; */
    margin-bottom: 50px;
    flex-wrap: nowrap;
    overflow-x: auto;
}
.row__categories::-webkit-scrollbar { width: 0; }
.row__categories { -ms-overflow-style: none; }
.row__categories a {
    text-decoration: none;
    color:var(--text-color);
}
.categories__items {
    background: #460250;
    border-radius: 4px;
    padding: 5px;
}
.row__games {
    overflow-x: auto;
    flex-direction: row !important;
    flex-wrap: nowrap;
}
.row__games::-webkit-scrollbar { width: 0; }
.row__games { -ms-overflow-style: none; }
.game-1 {
    background: url(/assets/img/slots/1.webp) no-repeat center/cover;
}
.game-2 {
    background: url(/assets/img/slots/2.webp) no-repeat center/cover;
}
.game-3 {
    background: url(/assets/img/slots/3.webp) no-repeat center/cover;
}
.game-4 {
    background: url(/assets/img/slots/4.webp) no-repeat center/cover;
}
.game-5 {
    background: url(/assets/img/slots/5.webp) no-repeat center/cover;
}
.game-6 {
    background: url(/assets/img/slots/6.webp) no-repeat center/cover;
}
.game-7 {
    background: url(/assets/img/slots/7.webp) no-repeat center/cover;
}
.game-card p {
    margin-bottom: 0;
    text-align: center;
}
.game-card {
    cursor: pointer;
}
.winners__items {
    padding: 16px;
    background: #460250;
    border-radius: 16px;
    display: flex;
    gap:20px;
    align-items: center;
}
.winner__info p {
    margin-bottom: 0;
}
.game__money {
    color:#00FFC3;
    font-weight: 800;
}
.row__winners {
    overflow-x: auto;
}
.row__provider {
    overflow-x: auto;
    flex-wrap: nowrap;
    
}
.row__provider::-webkit-scrollbar { width: 0; }
.row__provider { -ms-overflow-style: none; }
.provider__img {
    background:#460250;
   width: 56px;
    height: 56px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider__img  img {
    width: 32px;
    height: 32px;
}
.provider__items {
    text-align: center;
}
.provider__items p {
    font-size: 12px;
    margin-top: 5px;
}
.slider-content {
    position: relative;
  width: 100%;
  height: 100%;
  padding-top: 200px;
}
.slider-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/img/banner/banner2.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
  }
  
  .slider-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/img/banner/banner1.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
  }
  .slider-title, .slider-subtitle, .btn-play {
    position: relative;
    z-index: 3;
  }
  .slider-title {
    font-size: 50px;
    font-weight: 800;
  }
  .btn-play {
    color:#000000;
    background: var(--btn-color);
    border-radius: 4px;
  }
  .menu__mob {
    display: none !important;
  }
  @media (max-width: 991.98px) {
    .sidebar, .coupon-sidebar, .menu__header,
    .search, .lang {
        display: none !important;
    }
    .header .row {
        justify-content: space-between;
    }
    .slider-title {
        font-size: 26px;
        line-height: 28px;
    }
    .slider-content {        
        padding: 50px 15px 15px 15px;
    }
    .menu__mob {
        display: flex !important;
        position:fixed;
        bottom: 0;
        z-index: 10;
        background: #770063;
        width: 100%;
     }
    .menu__mob .nav-link span {
        display: block;
    }
    .menu__mob .nav-link {
        flex-direction: column;
    }
  }