
.ads1 {
    margin-left: 2%;
    width: 96%;
}

.ads1_mob {
    display: none;
}


/* ===== CONTAINER ===== */
.tabule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px 0;
  padding: 14px;

  background: linear-gradient(145deg, #1b1b3a, #16162f);
  border-radius: 16px;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 20px 40px rgba(0,0,0,0.35);
}

/* ===== CARD ===== */
.compare-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #2a2a55, #232347);
  border-radius: 16px;
  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.compare-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.04),
    transparent
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* Hover */
.compare-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.compare-card:hover::before {
  opacity: 1;
}

/* ===== LOGO ===== */
.compare-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;

  background: linear-gradient(180deg, #3a3a77, #2f2f66);
}

.compare-logo img {
  max-width: 110px;
  max-height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}

/* ===== OFFER ===== */
.compare-offer {
  padding: 16px 18px;
  background: #1b1b3a;
  color: #ffffff;

  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;

  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ===== BONUSES ===== */
.compare-bonuses {
  padding: 16px 18px;
  background: #1b1b3a;

  border-top: 1px solid rgba(255,255,255,0.06);

  font-size: 0.85rem;
  color: #d7d7ff;
}

/* бонус как элемент */
.bonus-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;

  padding: 6px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.bonus-item:last-child {
  border-bottom: none;
}

/* название бонуса */
.bonus-title {
  opacity: 0.75;
}

/* значение бонуса */
.bonus-value {
  font-weight: 600;
  color: #7dd3fc; /* акцент */
}

/* ===== EMPTY ===== */
.bonus-empty {
  opacity: 0.5;
  font-style: italic;
}


.hero {
    position: relative;
    height: 84vh;
    background: url(../img/Frame1.png) center/cover no-repeat;
    color: #fff;
    margin: 4vh;
    border-radius: 15px;
    top: 0px;
    box-sizing: border-box;
}

/* 🥇🥈🥉 TOP 1–3 */
.card.top-elite {
    background: #201C40;
    border: 1.5px solid rgba(224, 189, 4, 0.6);
    box-shadow:
        0 0 0 1px rgba(250, 231, 155, 0.35),
        0 4px 12px rgba(224, 189, 4, 0.25);
}

.card.top-elite .card-content,
.card.top-elite h2 {
    color: #fff;
}


.hero-inner {
    position: relative;
    padding: 40px 60px;
    max-width: 1200px;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

/* Верхние надписи */
.hero-top-texts {
    display: flex;
    gap: 40px;
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 60px;
}

.hero-top-texts span {
    text-transform: uppercase;
    font-weight: 600;
}

/* Главный заголовок */
.hero-title {
    font-size: 3.2vw;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

/* Белая кнопка */
.btn-register {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s;
    font-family: "Red Hat Display", sans-serif;
}
.gift22{
    margin-left: 5vw;

}
.btn-register:hover {
    background: #e6e6e6;
}

.hero-register {
    margin-bottom: 35px;
}

/* Черные карточки */
.hero-cards {
    display: flex;
    gap: 20px;
    margin-top: auto;
}

.hero-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0);
    border: 1px solid rgba(41,40,54);
    padding: 16px 26px;
    border-radius: 10px;
    border-color: white; 
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s;

}

.hero-card:hover {
    background: rgba(0, 0, 0, 0.75);
}

.hero-card img {
    width: 20px;
    height: 20px;
}

.partners-catalog {
    margin: 200px 4vh;
    min-height: 50vh;
}

.play-for-fan {
    font-size: 2.5vw;
}
    
h1 {
font-size: 24px;
margin-bottom: 20px;
}

#filters {
display: flex;
gap: 12px;
margin-bottom: 10px;
margin-top: 20px;

}

#filters button {
background: none;
border: 1px solid white;
padding: 8px 16px;
border-radius: 30px;
color: #fff;
cursor: pointer;
font-weight: 500;
transition: background 0.2s;
font-size: 0.8vw;
}

#filters button.active {
background-color: #fff;
color: #1a1a2e;
}

#info, #empty {
margin-top: 20px;
font-size: 16px;
text-align: center;
display: none;
}

/* --- CARDS CSS --- */
#partners {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin-top: 20px;
}

.card {
display: flex;
background-color: #121024;
border-radius: 16px;
border: 1px solid #292836;
padding: 20px;
gap: 20px;
align-items: center;
color: #fff;
transition: transform 0.2s;
}

.card {
transform: translateY(-4px);
}

.card .card-image {
    background-color: #1B1B4A;
    width: 7vw;
    height: 7vw;
    border-radius: 12px;
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
    flex-shrink: 0;
}

.card-content {
display: flex;
flex-direction: column;
flex: 1;
gap: 6px;
}

.card-title {
font-size: 16px;
font-weight: 700;
margin: 0;
color: #ffffff;
}

.card-offer {
    max-width: 80%;
font-size: 1.5vw;
color: white;
margin: 0;
}

.card-rating {
font-size: 20px;
font-weight: 700;
color: #13FFC3;
float: right;
background: #124044;
padding: 7px 15px;
border: 2px solid #13FFC3;
border-radius: 50px;
display: flex;
align-items: center;
}

.rating-icon {
    margin-right: 4px;
}

.card button {
    margin-top: 10px;
background-color: #ffffff;
color: #000;
border: none;
border-radius: 6px;
padding: 10px 30px;
cursor: pointer;
font-weight: 600;
font-size: 14px;
align-self: flex-start;
transition: background 0.2s, color 0.2s;
}

.load-more {
    display: flex;
}

.load-btn {
    margin: 30px auto 0px auto;
    background-color: #ffffff;
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 10px 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    align-self: flex-start;
    transition: background 0.2s, color 0.2s;
}

/* рамка для sponsored */


/* бейдж Sponsored */
.sponsored-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #FFD700;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 2;
}

.card.best-of-month {
    background: linear-gradient(
        135deg,
        #EECB12 44%,
        #FAE79B 70%,
        #E6B018 90%
    );
    border: 1.5px solid rgba(224, 189, 4, 0.9);
    box-shadow:
        0 0 0 1px rgba(250, 231, 155, 0.6),
        0 6px 18px rgba(224, 189, 4, 0.35),
        0 0 28px rgba(250, 231, 155, 0.25);
}

.card.best-of-month .card-content,
.card.best-of-month h2 {
    color: #000;
}

.card.best-of-month .card-rating {
    background: #0D0C1A;
}

.card.best-of-month .sponsored-badge {
    background: linear-gradient(
        135deg,
        #E0BD04 24%,
        #FAE79B 50%,
        #E6B018 70%
    );
    color: #000;
    border: 1px solid #47370C;
    box-shadow:
        0 2px 8px rgba(224, 189, 4, 0.4),
        0 0 12px rgba(250, 231, 155, 0.4);
}


.reviews {
    text-align: center;
    padding: 40px 0;
}
.tcr{
    font-size: 5vh;
}
.stars-img {
    width: 140px;
    margin: 10px 0 30px;
}

/* REVIEW CARDS */

.reviews-grid {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.review {
    background: rgba(22, 20, 44, 1);
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    position: relative;
}

.review p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 1);
}

.review {
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.name {
    float: left;
    color: rgba(68, 68, 116, 1);
    display: block;
    margin-bottom: 10px;
    font-size: 10px;
}

.stars-small5 {
float: right;
width: 30%;
}

.stars-small4 {
float: right;
width: 25%;
}

/* ------------------- Верхняя секция ------------------- */

.left-paper {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 64vh;
}

/* Правая картинка */
.right-paper {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 64vh;
}



.bs-section {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    align-items: center;
    padding: 30px 0px;
    position: relative;
    background: #0d0d1a;
    margin: 200px 0;
}
/* Центр */
.bs-center {
    text-align: center;
    width: 500px;
}

.bs-logo2 {
    width: 90%;
    align-items: center;
    margin-bottom: 20px;
}

.bs-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    vertical-align: middle;
}

.bs-stat {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    vertical-align: middle;
}

.bs-stat img {
    width: 18px;
    vertical-align: middle;
}
.PIZDA {
    width: 100%;;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bs-stat1{
    padding-left: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.bs-stat2{
    padding-left: 15px;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 5px;
}
/* Кнопка */
.bs-btn {
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    cursor: pointer;
    font-weight: 900;
    width: 300px;
}

.collum {
    width: 30%;
}
.bs-lower {
    margin: 60px auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.bs-left-text {
    width: 30%;
    margin-left: 10vh;
}

.bs-left-text h2 {
    font-size: 44px;
    margin-bottom: 10px;
}

.bs-left-text p {
    font-size: 22px;
    opacity: 0.9;
}

/* Карточки справа */
.bs-cards {
    width: 55%;
    display: flex;
    gap: 25px; /* ВЕРТИКАЛЬНО КАК ТЫ ПРОСИЛ */
    align-items: stretch;
}

.bs-card {
    background: rgba(31, 42, 64, 0.5);
    padding: 22px;
    border-radius: 30px;
    border:1px solid rgba(40, 55, 77, 1); 
    text-align: center;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.35);
    margin-bottom: 20px;
}

.bs-card-img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: block;
    object-fit: contain;
    justify-content: center;
    align-items: center;
}
.bs-card2 {
    background: rgba(31, 42, 64, 0.5);
    padding: 22px;
    border-radius: 30px;
    border:1px solid rgba(40, 55, 77, 1);
    text-align: center;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.35);
}
/* Рейтинг */
.bs-rating {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: rgba(22, 69, 87, 1);
    color: rgba(19, 255, 195, 1);
    padding: 6px 12px;
    border: 1px solid rgba(19, 255, 195, 1);
    border-radius: 10px;
    font-weight: 700;
    margin-top: 20vh;
}

.compare-title {
    margin-top: 10vh;
 font-size: 70px;
 display: flex;
 justify-content: center;
}
.compare-section { 
    height: 50%;
    margin-bottom: 150px;
    padding-left: 3.5vh;
    padding-right: 3.5vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 20vh;
}



.slot1{
 background: rgba(30, 27, 58, 1);
 display: flex;
 justify-content: center;
 align-items: center;
 border-radius: 10px 10px 0px 0px
}
.poligon{
    width: 33.3%;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 10px 0px 0px 0px;
}
.poligon img {
    height: 12vh;
    width: 20vh;


}
.poligon-center{
    width: 33.3%;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 0px 0px 0px 0px;
    background: rgba(38, 34, 74, 1);
}
.poligon-center img {
    height: 12vh;
    width: 20vh;

}

.slot2 {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 13%;
}


.particul {
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 10px;
    padding:  14px 20px;
    background: rgba(30, 27, 58, 1);
    width: 33.3%;
    border-radius: 5px;

}

.slot3{
 justify-content: center;
 width: 100%;
 height: 40px;
 align-items: center;
 display: flex;
padding: 10px;
}

.paranoid {justify-content: center;
    align-items: center;
    display: flex;
    margin: 20px;
    padding:  30px 30px;
    width: 100%;
    padding-top: 60px;
}

.bs-news-section {
    width: 100%;
    max-width: 1200px;
    margin: 70px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ------------------- Верх • 3 картинки ------------------- */

.bs-news-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.bs-news-top-item {
    width: 33.33%;
    border-radius: 18px;
    overflow: hidden;
}

.bs-news-top-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* ------------------- Нижний блок (новости) ------------------- */

.bs-news-list {
    display: flex;
    flex-direction: center;
    gap: 40px;
}

.bs-news-card {
    background: #111425;
    display: block;
    gap: 20px;
    max-width: 33%;
    ;

    box-shadow: 0 0 18px rgba(0,0,0,0.25);
}

.bs-news-img {
    width: 100%;
    height: 20vh;
    flex-shrink: 0;
}

.bs-news-info h3 {
    font-size: 20px;
    margin-bottom: 6px;
    padding-left: 2vh;
}

.bs-news-info p {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 10px;
    padding-left: 2vh;
}

.bs-news-read {
    font-size: 15px;
    color: #00ffc3;
    font-weight: 600;
    text-decoration: none;
}

.bs-news-read:hover {
    text-decoration: underline;
}

.sg-section {
    width: 100%;
    padding: 80px 0;
    display: flex;
    margin-left: 0;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 20vh;

}

.sg-left {
    max-width: 350px;
    margin-left: 40px;
}

.sg-title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
}

.sg-subtitle {
    color: #cbd1e2;
    margin: 10px 0 25px;
    font-size: 20px;
    padding-bottom: 30px;
}

.sg-btn {
    display: inline-block;
    background: #fff;
    padding: 10px 22px;
    border-radius: 4px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.sg-cards {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0 16px;

}

.sg-card {
    width: 320px;        /* шире */
    min-height: 240px;   /* выше */
    padding: 40px 30px;
    background: rgba(31, 42, 64, 50%); /* ключевое */
    border-radius: 22px;
    border: 1px solid rgba(40, 55, 77, 0.12);
    border-radius: 22px; 
    text-align: center;
    color: #fff;
}

.sg-card h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 20px;
}

.sg-card p {
    opacity: 0.7;
    font-size: 14px;
}

.sg-icon {
    width: 40px;
    height: 40px;
}

.dm-section {
    width: 96%;
    padding: 70px 0 30px;
    margin: 4vh;
}

.dm-title {
    font-size: 34px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
}

.dm-subtitle {
    color: #cbd1e2;
    margin-bottom: 30px;
}

.dm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.dm-card1 {
    position: relative;
    width: 100%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-image: url('/assets/img/CASINO.png');
}

.dm-card2 {
    position: relative;
    width: 100%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-image: url('/assets/img/777.png');
}

.dm-card3 {
    position: relative;
    width: 100%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-image: url('/assets/img/Betting.png');
}

.dm-card4 {
    position: relative;
    width: 100%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-image: url('/assets/img/Poker.png');
}

.dm-card1 span {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
}

.dm-card2 span {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
}

.dm-card3 span {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
}

.dm-card4 span {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
}

.dm-arrow {
    width: 18px;
    height: 18px;
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.access-section {
    width: 100%;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.access-container {
    width: calc(100% - 32px);
    margin: 0 auto;
    box-sizing: border-box;
    max-width: 97%;
    height: 65vh ;
    background: url(../img/VioletPokerfish.png) center/cover no-repeat;
    border: 1px solid rgba(96, 127, 172, 1);
    border-radius: 35px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.access-left {
    width: 55%;
    z-index: 2;
}


.access-title {
    font-size: 40px;
    color: white;
    font-weight: 700;
    padding-bottom: 6vh;
}

.c {
    padding-bottom: 6vh;
    font-size: 20px
}

.access-sub {
    font-size: 18px;
    color: #d4d4d4;
    margin: 15px 0 25px;
    max-width: 500px;
}

.access-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
    margin-bottom: 45px;
    width: 85%;
}

.access-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.access-item img {
    width: 22px;
    height: 22px;
}

.access-item span {
    color: white;
    font-size: 16px;
}

.access-btn {
    display: inline-flex;
    align-items: flex;
    gap: 150px;
    background: white;
    padding: 18px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    transition: 0.2s;
    underline: 0;
    text-decoration: none;
}

.access-btn img {
    width: 16px;
    align-items: right;
}

.access-btn:hover {
    background: #f1f1f1;
}

/* ПРАВАЯ КАРТИНКА */
.access-right img {
    width: 400px;
    max-width: 100%;
}

.country-selects {
    display: flex;
    gap: 30px;
    margin: 3vh;
    justify-content: space-between;
}

.select-box {
    width: 25%;
}

.select-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border: 1px solid rgba(120, 117, 157, 1);
    cursor: pointer;
    border-radius: 10px;

}
.select-header-opt{
    display: flex;
    align-items: center;
}

.select-header a:active{
    color: 1px solid rgba(120, 117, 157, 1);
}


.select-title {
    font-size: 16px;
    font-weight: 600;
    margin-left: 10px;
    underline: 0;
    text-decoration: none;
}

.arrow-icon {
    width: 18px;
    height: 18px;
}

.select-country {
    height: 4vh;
}

.select-list img {
    height: 4vh;
}


.velkapicha {
    text-decoration: none !important;
    
}

.select-list-dec {
    text-decoration: none !important;
    
}

.select-list {
    border: none;
    border-top: none;
    padding: 0;
    list-style: none;
    max-height: 0;
    overflow: auto;
    transition: max-height .3s ease;
}

.select-box.open .select-list {
    max-height: 30vh; /* можно больше */
    border-radius: 10px;
    border: 1px solid rgba(120, 117, 157, 1);
    background: #211F3A;
    display: flex;
    flex-direction: column;
}

.select-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: none;
    border-top: none;
}

.select-list li img {
    width: 22px;
    height: 22px;
}

.select-list a,
.select-list a:visited,
.select-list a:hover,
.select-list a:active,
.select-list a:focus {
    color: #fff !important;   /* или нужный тебе цвет */
    text-decoration: none !important;
}



.select-list li:last-child {
    border-bottom: none;
}
/* FAQ SECTION PROOOOALLOLOLOOv*/

.faq-section {
    max-width: 90%;
    margin: 20px auto;
    margin-top: 15vh;
    margin-bottom: 15vh;
    display: grid; 
    grid-template-columns: minmax(160px, 260px) 1fr;
    column-gap: 40px;
    align-items: start;;
}
.faq-title {
    font-size: 32px;
    font-weight: 600;
    width: 15%;
    grid-column: 1;
    margin: 0 0 10px 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 40px;
    width: 100%;
    grid-column: 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 15px 0;
    position: relative;
}

.faq-question {
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question .arrow {
    transition: 0.2s ease;
    opacity: 0.8;
}

.faq-item.open .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    opacity: 0;
    padding-right: 30px;
    font-size: 14px;
    line-height: 1.5;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
}

.link {
    text-decoration: underline;
    cursor: pointer;
}



/*  БЛОГ  */

    .blog-title {
        margin-top: 20vh;
        text-align: center;
        font-size: 50px;
        font-weight: 700;
        
    }
  
    .blog-grid {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 5vh;
    }

    .blog-article {
      background: #121024;
      color: white;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.2s;
      width: 30%;
      min-width: 250px;
      
    }

    .blog-article:hover {
      transform: scale(1.02);
    }

    .blog-article img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .blog-article .content {
      padding: 15px;
    }

    .blog-article h3 {
      font-size: 20px;
      margin: 20px 20px 20px 20px;
      text-decoration: none;
    }
    
    .blog-article a {
  text-decoration: none;
  color: inherit;
}

    .blog-article p {
      font-size: 14px;
      margin: 5px 0;
      text-decoration: none;
    }
    
    .data-text {
        color: #61619E;
    }

    .news-btn-more {
      display: block;
      margin: 30px auto;
      padding: 10px 20px;
      background: #fff;
      color: #000;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin-bottom: 20vh;
      width: 20vw;
      text-align: center;
      text-decoration: none;
    }

    /* Адаптив */
    @media (max-width: 1024px) {
      .blog-article {
        width: 45%; /* 2 статьи в ряд на планшете */
      }
    }

    @media (max-width: 600px) {
      .blog-article {
        width: 90%; /* 1 статья в ряд на мобильных */
      }
    }
    
    
    /* =====================================
   📱 MOBILE ONLY (480px and less)
   ===================================== */
@media (max-width: 480px) {

  /* ===== GLOBAL ===== */
    .ads1 {
        display: none;
    }
    
    .ads1_mob {
        display: block;
        margin-top: 20px;
    }
  
  body {
    overflow-x: none;
    max-width: 100%;
  }

  section {
    margin: 0;
    padding: 40px 16px;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* ===== HERO ===== */
  .hero {
    height: auto;
    padding: 0 auto;
    width: 100%;
    border-radius: 0;
    margin: 0;
    margin-top: 8vh !important;
    background: url(/assets/img/background-mobile-hero.png) center/cover no-repeat;
    box-sizing: border-box;
  }

  .hero-inner {
    padding: 24px 16px;
    margin-top: 0;
    box-sizing: border-box;
  }

  .hero-top-texts {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    font-size: 12px;
    text-align: center;
    margin-top: 1vh;
    text-align: left;
    box-sizing: border-box;
  }

  .hero-title {
    font-size: 50px;
    line-height: 1.25;
    margin-bottom: 20px;
    text-align: center;
    text-align: left;
    box-sizing: border-box;
  }

  .hero-register {
    width: 100%;
    margin-bottom: 25px;
  }

  .btn-register {
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }

  .gift22 {
    margin-left: 0;
  }

  .hero-cards {
    flex-direction: column;
    gap: 12px;
  }

  .hero-card {
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }

  /* ===== PARTNERS ===== */
  .partners-catalog {
    margin: 60px 16px;
    padding: 0;
  }

  .play-for-fan {
    font-size: 18px;
  }

  #filters {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    
  }

  #filters button {
    font-size: 3vw;
    padding: 6px 9px;
    
  }

  #partners {
    grid-template-columns: 1fr;
  }

 

  .card .card-image {
    width: 15vw;
    height: 15vw;
  }
  
  .card {
      max-width: 88vw;
  }
  
  .card-content {
      max-width: 70vw;
      margin-top: 20px;
  }

  .card-offer {
    font-size: 14px;
    max-width: 100%;
    margin-top: 20px;
  }

  /* ===== REVIEWS ===== */
  .tcr {
    font-size: 26px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
    /* ===== BS LOWER ===== */
  .bs-lower {
    flex-direction: column;
    margin: 0;
    gap: 30px;
    width: 90%;
    align-items: center;
  }

  .bs-left-text {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .bs-left-text h2 {
    font-size: 26px;
  }

  .bs-left-text p {
    font-size: 16px;
  }

  .bs-cards {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  .collum {
    width: 100%;
  }

  /* ===== BS SECTION ===== */
  .left-paper,
  .right-paper {
    display: none;
  }

  .bs-section {
    margin: 80px 0;
    padding: 40px 16px;
  }

  .bs-center {
    width: 100%;
  }

  .bs-logo2 {
    width: 80%;
  }

  .PIZDA {
    flex-direction: column;
    gap: 8px;
  }

  /* ===== BS LOWER ===== */
  .bs-lower {
    flex-direction: column;
    margin: 30px 16px;
    gap: 30px;
  }

  .bs-left-text {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .bs-left-text h2 {
    font-size: 26px;
  }

  .bs-left-text p {
    font-size: 16px;
  }

  .bs-cards {
    width: 95%;
    flex-direction: column;
    gap: 20px;
  }

  .collum {
    width: 100%;
  }



  /* ===== NEWS ===== */
  .bs-news-list {
    flex-direction: column;
    gap: 20px;
  }

  .bs-news-card {
    max-width: 100%;
  }

  /* ===== SAFE GAMBLING ===== */
  .sg-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 16px;
    gap: 30px;
  }

  .sg-left {
    margin-left: 0;
    max-width: 100%;
  }

  .sg-title {
    font-size: 26px;
  }

  .sg-cards {
    flex-direction: column;
    margin: 0;
    gap: 20px;
  }

  .sg-card {
    width: 100%;
  }

  /* ===== DISCOVER ===== */
  .dm-section {
    margin: 0;
    padding: 60px 16px;
  }

  .dm-title {
    font-size: 26px;
  }

  .dm-grid {
    grid-template-columns: 1fr;
  }

  /* ===== ACCESS ===== */
  .access-container {
    flex-direction: column;
    height: auto;
    padding: 30px 16px;
  }

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

  .access-title {
    font-size: 26px;
    padding-bottom: 20px;
  }

  .access-list {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .access-btn {
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  .access-right {
    display: none;
  }

  /* ===== COUNTRY SELECTS ===== */
  .country-selects {
    flex-direction: column;
    gap: 16px;
    margin: 40px 16px;
  }
  
  .select-box {
    width: 100%;
  }

  /* ===== FAQ ===== */
  .faq-section {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .faq-title {
    width: 100%;
    margin-bottom: 10px;
  }

  .faq-item {
    width: 100%;
  }
  
  
  
  .compare-title {
 font-size: 45px;
}







    
    /* MOBILE CARDS */
.compare-mobile {
    display: none;
}
    
    
    
    
    
    
    /* MOBILE */
@media (max-width: 768px) {

    /* скрываем таблицу */


    /* показываем карточки */
    .compare-mobile {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        margin-top: 20px;
        align-items: center;
        justify-content: center;
        background: rgba(23, 20, 45, 1);
        border-radius:  10px 10px 10px 10px;
        padding-top: 25px;
    }
    
    .casino-card {
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
    }


}

    
    
    
    
    
    
    

