*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html,body{overflow-x:hidden;width:100%;font-family:'Segoe UI',Roboto,Helvetica,Arial,sans-serif;background:#1C1C1C;color:#fff;line-height:1.6;overflow-wrap:anywhere;word-break:break-word;scroll-behavior:smooth}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
button{border:none;background:none;cursor:pointer;font-family:inherit;color:inherit}
ul,ol{list-style:none}

/* ======================== HEADER ======================== */
.header{position:sticky;top:0;z-index:1000;background:#1C1C1C;border-bottom:1px solid #2a2a2a}
.header__inner{max-width:1400px;margin:0 auto;display:flex;align-items:center;padding:0 20px;height:60px;gap:16px}
.header__logo{flex-shrink:0;display:flex;align-items:center}
.header__logo img{height:36px;width:auto;object-fit:contain}
.header__nav{display:flex;align-items:center;gap:4px;margin-left:16px}
.header__nav-link{display:flex;align-items:center;gap:6px;padding:8px 16px;border-radius:8px;font-size:14px;font-weight:700;text-transform:uppercase;color:#aaa;transition:color .2s,background .2s}
.header__nav-link:hover,.header__nav-link--active{color:#fff;background:#262626}
.header__nav-link--active{color:#FF6634}
.nav-icon{font-size:16px}
.header__actions{display:flex;align-items:center;gap:8px;margin-left:auto}

/* BUTTONS */
.btn{display:inline-flex;align-items:center;justify-content:center;font-weight:800;border-radius:8px;cursor:pointer;transition:transform .15s,box-shadow .15s,background .2s;text-align:center;min-height:44px;padding:10px 20px;font-size:14px;line-height:1.2}
.btn--primary{background:#FF6634;color:#fff;box-shadow:0 4px 14px rgba(255,102,52,.4)}
.btn--primary:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(255,102,52,.55);background:#ff7a4f}
.btn--primary:active{transform:translateY(0);box-shadow:0 2px 8px rgba(255,102,52,.3)}
.btn--ghost{background:transparent;color:#fff;border:2px solid #555;box-shadow:0 2px 8px rgba(0,0,0,.2)}
.btn--ghost:hover{border-color:#FF6634;color:#FF6634;transform:translateY(-2px);box-shadow:0 4px 14px rgba(255,102,52,.2)}
.btn--ghost:active{transform:translateY(0)}
.btn--lg{min-height:52px;padding:14px 32px;font-size:16px;border-radius:10px}
.btn--sm{min-height:40px;padding:8px 16px;font-size:13px}

/* BURGER */
.burger{display:none;flex-direction:column;gap:5px;padding:8px;cursor:pointer}
.burger span{display:block;width:24px;height:2px;background:#fff;border-radius:2px;transition:transform .3s,opacity .3s}
.burger--active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger--active span:nth-child(2){opacity:0}
.burger--active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* MOBILE MENU */
.mobile-menu{display:none;position:fixed;top:60px;left:0;right:0;bottom:0;background:#1C1C1C;z-index:999;overflow-y:auto;padding:20px}
.mobile-menu--open{display:block}
.mobile-menu__nav{display:flex;flex-direction:column;gap:4px}
.mobile-menu__nav a{display:block;padding:14px 16px;font-size:16px;font-weight:700;color:#ccc;border-radius:8px;transition:background .2s}
.mobile-menu__nav a:hover{background:#262626;color:#fff}

/* ======================== MAIN LAYOUT ======================== */
.main-layout{display:flex;max-width:1400px;margin:0 auto;min-height:100vh}

/* SIDEBAR */
.sidebar{width:200px;flex-shrink:0;background:#1C1C1C;border-right:1px solid #2a2a2a;padding:12px 0;position:sticky;top:60px;height:calc(100vh - 60px);overflow-y:auto}
.sidebar__item{display:flex;align-items:center;gap:12px;padding:14px 20px;color:#aaa;font-size:14px;font-weight:600;transition:color .2s,background .2s;border-left:3px solid transparent}
.sidebar__item:hover{color:#fff;background:#262626}
.sidebar__item--active{color:#FF6634;border-left-color:#FF6634;background:rgba(255,102,52,.08)}
.sidebar__icon{font-size:18px;width:24px;text-align:center;flex-shrink:0}
.sidebar__label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

/* CONTENT */
.content{flex:1;min-width:0;padding:0 0 40px}

/* ======================== FILTER BAR ======================== */
.filter-bar{display:flex;align-items:center;gap:8px;padding:12px 20px;background:#1C1C1C;border-bottom:1px solid #2a2a2a;overflow-x:auto;scrollbar-width:none;position:sticky;top:60px;z-index:100}
.filter-bar::-webkit-scrollbar{display:none}
.filter-tab{display:inline-flex;align-items:center;gap:6px;padding:8px 16px;border-radius:20px;font-size:13px;font-weight:600;color:#aaa;background:#262626;white-space:nowrap;transition:color .2s,background .2s,border-color .2s;border:1px solid transparent;flex-shrink:0}
.filter-tab:hover{color:#fff;background:#333}
.filter-tab--active{color:#FF6634;border-color:#FF6634;background:rgba(255,102,52,.1)}

/* ======================== HERO ======================== */
.hero{padding:24px 20px}
.hero__banner{border-radius:16px;overflow:hidden;margin-bottom:20px}
.hero__image-link{display:block}
.hero__img{width:100%;max-height:400px;object-fit:cover;border-radius:16px}
.hero__content{text-align:center;padding:0 20px}
.hero__title{font-size:clamp(24px,5vw,42px);font-weight:900;color:#FF6634;margin-bottom:20px;line-height:1.15;text-shadow:0 2px 20px rgba(255,102,52,.3)}
.hero__cta{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-bottom:12px}
.hero__tc{font-size:12px;color:#777}

/* ======================== GAMES GRID ======================== */
.games-section,.live-section{padding:32px 20px}
.section-title{font-size:22px;font-weight:800;margin-bottom:20px;color:#fff}
.games-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:16px}
.game-card{display:block;border-radius:12px;overflow:hidden;background:#262626;transition:transform .2s,box-shadow .2s;position:relative}
.game-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(255,102,52,.2)}
.game-card__media{position:relative;overflow:hidden;border-radius:12px 12px 0 0}
.game-card__media img{width:100%;aspect-ratio:1/1;object-fit:cover;transition:transform .3s}
.game-card:hover .game-card__media img{transform:scale(1.05)}
.game-card__badge{position:absolute;top:8px;right:8px;background:#FF6634;color:#fff;font-size:11px;font-weight:700;padding:4px 8px;border-radius:4px}
.game-card__info{padding:10px 12px}
.game-card__name{display:block;font-size:13px;font-weight:700;color:#fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.game-card__provider{display:block;font-size:11px;color:#888;margin-top:2px}

/* LIVE CARDS */
.game-card--live .game-card__media img{aspect-ratio:16/10;object-fit:cover}

/* MORE BUTTON */
.section-more{text-align:center;margin-top:24px}
.btn-more{display:inline-flex;align-items:center;gap:8px;padding:12px 32px;background:#262626;color:#aaa;border-radius:10px;font-size:14px;font-weight:600;border:1px solid #333;transition:color .2s,background .2s,border-color .2s}
.btn-more:hover{color:#fff;background:#333;border-color:#FF6634}

/* ======================== PROMOTIONS ======================== */
.promotions{padding:40px 20px}
.promo-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.promo-card{display:flex;flex-direction:column;background:#262626;border-radius:14px;overflow:hidden;transition:transform .2s,box-shadow .2s}
.promo-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(255,102,52,.15)}
.promo-card__media{overflow:hidden}
.promo-card__media img{width:100%;aspect-ratio:16/9;object-fit:cover}
.promo-card__body{padding:20px;flex:1;display:flex;flex-direction:column}
.promo-card__body h3{font-size:18px;font-weight:800;color:#fff;margin-bottom:6px}
.promo-card__value{font-size:16px;font-weight:800;color:#FF6634;margin-bottom:10px}
.promo-card__body p{font-size:13px;color:#bbb;line-height:1.5;margin-bottom:12px}
.promo-card__body .btn{margin-top:auto;align-self:flex-start}

/* ======================== PROVIDERS ======================== */
.providers-section{padding:32px 20px}
.providers-strip{display:flex;gap:16px;overflow-x:auto;padding-bottom:8px;scrollbar-width:none}
.providers-strip::-webkit-scrollbar{display:none}
.provider-logo{display:flex;flex-direction:column;align-items:center;gap:8px;flex-shrink:0;padding:12px 16px;background:#262626;border-radius:10px;min-width:100px;transition:transform .2s,background .2s}
.provider-logo:hover{transform:translateY(-2px);background:#333}
.provider-logo img{width:60px;height:60px;object-fit:contain;border-radius:8px}
.provider-logo span{font-size:11px;color:#aaa;font-weight:600;white-space:nowrap}

/* ======================== SEO SECTION ======================== */
.seo-section{padding:40px 20px}
.seo-content{background:#262626;border-radius:14px;padding:32px}
.seo-content h2{font-size:22px;font-weight:800;margin-bottom:16px;color:#fff}
.seo-content h3{font-size:17px;font-weight:700;margin:20px 0 8px;color:#FF6634}
.seo-text p{font-size:14px;color:#ccc;line-height:1.7;margin-bottom:12px}
.seo-text--collapsed{max-height:120px;overflow:hidden;position:relative;transition:max-height .5s ease}
.seo-text--collapsed::after{content:'';position:absolute;bottom:0;left:0;right:0;height:60px;background:linear-gradient(transparent,#262626);pointer-events:none}
.seo-text--expanded{max-height:none}
.seo-text--expanded::after{display:none}
.seo-toggle{display:block;margin-top:12px;color:#FF6634;font-size:14px;font-weight:700;cursor:pointer;padding:8px 0}
.seo-toggle:hover{text-decoration:underline}

/* ======================== FAQ ======================== */
.faq-section{padding:40px 20px}
.faq-list{display:flex;flex-direction:column;gap:4px}
.faq-item{background:#262626;border-radius:10px;overflow:hidden}
.faq-question{display:flex;align-items:center;justify-content:space-between;width:100%;padding:16px 20px;font-size:15px;font-weight:700;color:#fff;text-align:left;transition:background .2s;cursor:pointer}
.faq-question::after{content:'+';font-size:22px;color:#FF6634;flex-shrink:0;margin-left:12px;transition:transform .3s}
.faq-item--open .faq-question::after{transform:rotate(45deg)}
.faq-question:hover{background:#2a2a2a}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease,padding .4s ease}
.faq-answer p{font-size:14px;color:#bbb;line-height:1.6;padding:0 20px}
.faq-item--open .faq-answer{max-height:300px;padding:0 0 16px}

/* ======================== FOOTER ======================== */
.footer{background:#262626;border-top:1px solid #333;padding:48px 0 24px}
.footer__inner{max-width:1400px;margin:0 auto;padding:0 20px;display:grid;grid-template-columns:1fr 1fr 1.5fr;gap:40px}
.footer__heading{color:#FF6634;font-size:16px;font-weight:800;margin-bottom:16px}
.footer__heading--sub{margin-top:24px}
.footer__link{display:block;font-size:14px;color:#ccc;padding:4px 0;transition:color .2s}
.footer__link:hover{color:#FF6634}
.footer__contact{font-size:14px;color:#ccc;margin-bottom:8px}
.footer__apps{display:flex;gap:8px;margin-top:8px}
.footer__app-btn{display:inline-flex;align-items:center;padding:10px 20px;background:#333;border-radius:8px;font-size:13px;font-weight:700;color:#fff;transition:background .2s}
.footer__app-btn:hover{background:#444}
.footer__col--wide{display:flex;flex-direction:column;gap:12px}
.footer__logo img{height:44px;width:auto;object-fit:contain}
.footer__tagline{font-size:14px;color:#FF6634;font-weight:700}
.footer__payments{display:flex;gap:12px;flex-wrap:wrap}
.footer__payments span{padding:6px 14px;background:#333;border-radius:6px;font-size:12px;font-weight:600;color:#aaa}
.footer__responsible{display:flex;align-items:flex-start;gap:12px;padding:12px 0}
.badge-18{background:#FF6634;color:#fff;font-size:14px;font-weight:900;padding:6px 10px;border-radius:6px;flex-shrink:0}
.footer__responsible p{font-size:12px;color:#888;line-height:1.5}
.footer__copy{font-size:12px;color:#666}

/* ======================== CATFISH ======================== */
.catfish{position:fixed;bottom:0;left:0;right:0;z-index:900;background:#262626;border-top:2px solid #FF6634;padding:0;transform:translateY(0);transition:transform .3s;padding-bottom:env(safe-area-inset-bottom)}
.catfish--hidden{transform:translateY(100%)}
.catfish__inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:center;gap:16px;padding:12px 20px;max-width:calc(100% - 40px)}
.catfish__text{font-size:14px;font-weight:700;color:#fff;overflow:hidden;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical}
.catfish__close{font-size:24px;color:#888;padding:4px 8px;flex-shrink:0;cursor:pointer;transition:color .2s}
.catfish__close:hover{color:#fff}

/* ======================== EXIT POPUP ======================== */
.exit-overlay{display:none;position:fixed;top:0;left:0;right:0;bottom:0;z-index:2000;background:rgba(0,0,0,.8);align-items:center;justify-content:center;padding:20px}
.exit-overlay--show{display:flex}
.exit-popup{background:#262626;border-radius:16px;padding:40px;max-width:480px;width:100%;text-align:center;position:relative;box-shadow:0 16px 48px rgba(0,0,0,.5)}
.exit-popup__close{position:absolute;top:12px;right:16px;font-size:28px;color:#888;cursor:pointer;transition:color .2s;padding:4px}
.exit-popup__close:hover{color:#fff}
.exit-popup h2{font-size:28px;font-weight:900;color:#fff;margin-bottom:12px}
.exit-popup__bonus{font-size:20px;font-weight:800;color:#FF6634;margin-bottom:16px}
.exit-popup p{font-size:14px;color:#bbb;margin-bottom:20px;line-height:1.5}

/* ======================== RESPONSIVE ======================== */

@media(max-width:1200px){
.sidebar{width:64px}
.sidebar__label{display:none}
.sidebar__item{justify-content:center;padding:14px 0;border-left:none}
.sidebar__icon{width:auto}
.games-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.promo-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.footer__inner{grid-template-columns:1fr 1fr}
.footer__col--wide{grid-column:1/-1}
}

@media(max-width:900px){
.sidebar{display:none}
.header__nav{display:none}
.burger{display:flex}
.header__actions{display:none}
.games-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.promo-grid{grid-template-columns:1fr;max-width:500px}
.footer__inner{grid-template-columns:1fr;gap:28px}
.hero__title{font-size:clamp(20px,5vw,32px)}
.filter-bar{top:60px}
}

@media(max-width:600px){
.games-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.game-card__info{padding:8px 10px}
.game-card__name{font-size:12px}
.game-card__provider{font-size:10px}
.hero{padding:16px 12px}
.hero__banner{border-radius:12px}
.hero__img{border-radius:12px;max-height:240px}
.hero__content{padding:0}
.hero__cta .btn{width:100%}
.games-section,.live-section{padding:20px 12px}
.promotions{padding:24px 12px}
.providers-section{padding:20px 12px}
.seo-section{padding:24px 12px}
.seo-content{padding:20px 16px}
.faq-section{padding:24px 12px}
.filter-bar{padding:10px 12px;gap:6px}
.filter-tab{padding:6px 12px;font-size:12px}
.section-title{font-size:18px}
.catfish__inner{flex-wrap:wrap;gap:10px;padding:10px 12px}
.catfish__text{font-size:12px;flex:1;min-width:0}
.exit-popup{padding:28px 20px;margin:12px}
.exit-popup h2{font-size:22px}
.exit-popup__bonus{font-size:16px}
.footer__inner{padding:0 12px}
.promo-card__body{padding:14px}
}

@media(max-width:380px){
.games-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
.hero__title{font-size:20px}
.btn--lg{padding:12px 20px;font-size:14px}
}
.ggbet-tournaments{
  padding: 2.5rem 0;
  background: #1C1C1C;
  color: #ccc;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
}

.ggbet-tournaments__container{
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}

.ggbet-tournaments__title{
  font-size: 1.375rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.25;
  position: relative;
  padding-bottom: 0.625rem;
}

.ggbet-tournaments__title::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3.125rem;
  height: 0.1875rem;
  background: #FF6634;
  border-radius: 0.125rem;
}

.ggbet-tournaments__lead{
  background: #262626;
  border-left: 0.25rem solid #FF6634;
  padding: 1.125rem 1.25rem;
  border-radius: 0.625rem;
  margin-bottom: 1.75rem;
}

.ggbet-tournaments__lead p{
  font-size: 0.9375rem;
  color: #ccc;
  margin: 0;
  line-height: 1.7;
}

.ggbet-tournaments__lead strong{
  color: #FF6634;
  font-weight: 800;
}

.ggbet-tournaments__block{
  background: #262626;
  border-radius: 0.75rem;
  padding: 1.25rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid #2f2f2f;
}

.ggbet-tournaments__h3{
  font-size: 1.125rem;
  font-weight: 800;
  color: #FF6634;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.ggbet-tournaments__h4{
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 1rem 0 0.5rem 0;
  line-height: 1.3;
}

.ggbet-tournaments__block p{
  font-size: 0.9375rem;
  color: #ccc;
  margin: 0 0 0.75rem 0;
  line-height: 1.7;
}

.ggbet-tournaments__block p:last-child{
  margin-bottom: 0;
}

.ggbet-tournaments__block strong{
  color: #ffffff;
  font-weight: 700;
}

.ggbet-tournaments__block em{
  color: #FF6634;
  font-style: italic;
}

.ggbet-tournaments__list{
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem 0;
}

.ggbet-tournaments__list li{
  position: relative;
  padding: 0.3125rem 0 0.3125rem 1.5rem;
  font-size: 0.9375rem;
  color: #ccc;
  line-height: 1.65;
}

.ggbet-tournaments__list li::before{
  content: '';
  position: absolute;
  left: 0.375rem;
  top: 0.875rem;
  width: 0.4375rem;
  height: 0.4375rem;
  background: #FF6634;
  border-radius: 50%;
  box-shadow: 0 0 0.5rem rgba(255, 102, 52, 0.4);
}

.ggbet-tournaments__list li strong{
  color: #ffffff;
  font-weight: 700;
}

.ggbet-tournaments__table{
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  background: #1f1f1f;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #333;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ggbet-tournaments__table thead{
  background: linear-gradient(135deg, #FF6634 0%, #e0521f 100%);
}

.ggbet-tournaments__table th{
  color: #ffffff;
  font-weight: 800;
  text-align: left;
  padding: 0.75rem 0.875rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.ggbet-tournaments__table td{
  padding: 0.75rem 0.875rem;
  color: #ccc;
  border-top: 1px solid #2f2f2f;
  vertical-align: top;
}

.ggbet-tournaments__table tbody tr:nth-child(even){
  background: #232323;
}

.ggbet-tournaments__table tbody tr:hover{
  background: #2a2a2a;
}

.ggbet-tournaments__table td:first-child{
  color: #ffffff;
  font-weight: 600;
}

.ggbet-tournaments__table td:nth-child(2){
  color: #FF6634;
  font-weight: 700;
  white-space: nowrap;
}

.ggbet-tournaments__aside{
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  border: 1px solid #FF6634;
  border-radius: 0.875rem;
  padding: 1.375rem 1.25rem;
  margin-top: 1.25rem;
  box-shadow: 0 0.5rem 1.5rem rgba(255, 102, 52, 0.08);
}

.ggbet-tournaments__aside .ggbet-tournaments__h3{
  color: #ffffff;
  border-bottom: 2px solid #FF6634;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.ggbet-tournaments__aside .ggbet-tournaments__list li{
  color: #ddd;
}

.ggbet-tournaments__cta{
  margin-top: 1rem;
  padding: 1rem 1.125rem;
  background: rgba(255, 102, 52, 0.1);
  border-left: 0.1875rem solid #FF6634;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  color: #eee;
  line-height: 1.65;
}

.ggbet-tournaments__cta strong{
  color: #FF6634;
  font-weight: 800;
}

@media (min-width: 30rem){
  .ggbet-tournaments{
    padding: 2.75rem 0;
  }
  .ggbet-tournaments__title{
    font-size: 1.5rem;
  }
  .ggbet-tournaments__lead{
    padding: 1.375rem 1.5rem;
  }
  .ggbet-tournaments__block{
    padding: 1.5rem 1.5rem;
  }
}

@media (min-width: 48rem){
  .ggbet-tournaments{
    padding: 3rem 0;
  }
  .ggbet-tournaments__title{
    font-size: 1.625rem;
  }
  .ggbet-tournaments__h3{
    font-size: 1.25rem;
  }
  .ggbet-tournaments__h4{
    font-size: 1.0625rem;
  }
  .ggbet-tournaments__lead p,
  .ggbet-tournaments__block p,
  .ggbet-tournaments__list li{
    font-size: 1rem;
  }
  .ggbet-tournaments__block{
    padding: 1.75rem 1.875rem;
  }
  .ggbet-tournaments__table{
    display: table;
    font-size: 0.9375rem;
  }
  .ggbet-tournaments__table th{
    padding: 0.875rem 1.125rem;
    font-size: 0.875rem;
    white-space: normal;
  }
  .ggbet-tournaments__table td{
    padding: 0.875rem 1.125rem;
  }
  .ggbet-tournaments__aside{
    padding: 1.75rem 1.875rem;
  }
}

@media (min-width: 64rem){
  .ggbet-tournaments__title{
    font-size: 1.75rem;
  }
  .ggbet-tournaments__container{
    padding: 0 1.5rem;
  }
}