/* =========================
   RESET / BASE
========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.15;
    background-color: #181824;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #fff;
    background-image: url("../img/body_bg.svg");
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #fff;
}

table th,
table td {
    border: 1px solid #fff;
}

/* =========================
   LAYOUT
========================= */

.layout-container {
    width: 100%;
    max-width: 1140px;
    padding: 0 15px;
    margin: 0 auto;
}

[id] {
    scroll-margin-top: 80px;
}

/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: box-shadow .2s ease;
    white-space: nowrap;
}

.btn--primary {
    background-color: #fe284a;
    box-shadow: 0 3px 0 #871628, 0 4px 4px #000;
}

.btn--secondary {
    background-color: #4d5a85;
    box-shadow: 0 3px 0 #272c47, 0 4px 4px #000;
}

.btn--play {
    background-color: #62c23c;
    box-shadow: 0 3px 0 #3c7028, 0 4px 4px #000;
}

.btn--demo {
    height: 23px;
    padding: 0 20px;
    background-color: #313047;
    font-size: 11px;
    font-weight: 700;
    box-shadow: none;
}

/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(37,37,54,.95);
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.brand-logo {
    display: block;
    height: 30px;
}

.brand-logo img {
    display: block;
    height: 30px;
    width: auto;
}


.header-actions {
    display: flex;
    gap: 10px;
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
}

.hero-slider {
    height: 380px;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 40px;
    font-family: Sochi2014, sans-serif;
    line-height: 1.1;
    background: linear-gradient(
        180deg,
        #ffee5b 0%,
        #ffd303 50%,
        #ffee5b 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    z-index: 5;
}

/* =========================
   NAVIGATION
========================= */

.main-nav {
    background-color: #212132;
    box-shadow: inset 0 6px 30px rgba(0,0,0,.8);
}

.nav-list {
    display: flex;
    justify-content: space-around;
}

.nav-item {
    display: block;
    padding: 22px 40px 22px 100px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 10px 10px 0 0;
    opacity: .8;
    transition: background-color .2s ease;
    background-size: 45px;
background-position: 35px center;
background-repeat: no-repeat;
}

.nav-item:hover {
    opacity: 1;
    background-color: rgba(255,255,255,.05);
}

/* =========================
   INTRO
========================= */

.intro {
    text-align: center;
    padding: 15px 0;
}

.intro-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.intro-text a,
.article a{
color: #e8ce3a;
}

/* =========================
   CONTENT ACCORDION
========================= */

.content-handler-section {
    padding: 15px 0 0;
}

.content-handler {
    max-width: 100%;
}

.content-panel {
    background-color: #212132;
    border: 1px solid #303036;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 6px 24px rgba(0,0,0,.35), 0 4px 10px #000;
}

.content-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 20px;
    cursor: pointer;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    list-style: none;
}

.content-toggle::-webkit-details-marker {
    display: none;
}

.content-toggle::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #fe284a;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 3px 0 #871628, 0 4px 4px #000;
}

.content-panel[open] .content-toggle::after {
    content: "-";
    padding-bottom: 2px;
}

.content-body {
    padding: 0 20px 20px;
}

.content-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 15px 0 0;
    margin: 0;
    border-top: 1px dashed #303036;
    list-style: none;
}

.content-link {
    display: block;
    min-height: 42px;
    padding: 12px 14px;
    border: 1px solid #303036;
    border-radius: 10px;
    background-color: #252536;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.content-link:hover,
.content-link:focus-visible {
    border-color: #fe284a;
    background-color: #313047;
    color: #e8ce3a;
    outline: none;
}

/* =========================
   GAMES GRID
========================= */

.games {
    padding: 35px 0;
}

.games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.game-card {
    position: relative;
    width: calc(20% - 20px);
    height: 222px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px #000;
    transition: transform .2s ease;
}

.game-card:hover {
    transform: scale(1.1);
    z-index: 3;
}

.game-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity .2s ease;
    padding: 0 20px;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
    background-color: #161626;
    font-size: 14px;
}

.games-more{
padding-top: 45px;
text-align: center;
}

/* =========================
   CONTENT
========================= */

.content {
    padding: 15px 0;
}

.article h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.article p {
    font-size: 16px;
    line-height: 1.2;
    text-align: justify;
    text-indent: 15px;
    margin-bottom: 10px;
}

/* =========================
   FAQ
========================= */
.faq {
    padding: 35px 0 20px;
}

.faq h2 {
    margin: 0 0 20px;
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
}

.faq-content {
    display: grid;
    gap: 10px;
}

.faq-item {
    background-color: #212132;
    border: 1px solid #303036;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 6px 24px rgba(0,0,0,.35);
    transition: border-color .2s ease, background-color .2s ease;
}

.faq-item:hover {
    border-color: rgba(255,255,255,.16);
}

.faq-item--active {
    border-color: #fe284a;
    background-color: #252536;
}

.faq-item-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 20px;
    cursor: pointer;
    outline: none;
}

.faq-item-header-wrapper:focus-visible {
    box-shadow: inset 0 0 0 2px #fe284a;
}

.faq-item-title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
}

.faq-item-header-wrapper::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #313047;
    color: #e8ce3a;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 3px 0 #1b1b2b, 0 4px 4px #000;
}

.faq-item--active .faq-item-header-wrapper::after {
    content: "-";
    padding-bottom: 2px;
    background-color: #fe284a;
    color: #ffffff;
    box-shadow: 0 3px 0 #871628, 0 4px 4px #000;
}

.faq-item-content {
    overflow: hidden;
}

.faq-item-content[hidden] {
    display: none;
}

.faq-item-content-hidden {
    padding: 0 20px 18px;
    font-size: 16px;
    line-height: 1.45;
    color: #c8cade;
}

.faq-item-content-hidden p:last-child {
    margin-bottom: 0;
}

/* =========================
   REVIEW
========================= */

.review {
    padding: 35px 0 20px;
}

.review h2 {
    margin: 0 0 20px;
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
}

.review-content {

}

.review-item {
    min-height: 100%;
    padding: 20px;
    background: linear-gradient(180deg, #252536 0%, #1d1d2d 100%);
    border: 1px solid #3a3a4f;
    border-radius: 10px;
    box-shadow: inset 0 6px 24px rgba(0,0,0,.35), 0 4px 10px #000;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
    margin-bottom: 15px;
}

.review-item:hover {
    border-color: #fe284a;
    transform: translateY(-2px);
}

.review-item-header-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    min-width: 0;
}

.review-item-header-wrapper [itemprop="author"] {
    min-width: 0;
    flex: 1 1 auto;
}

.review-item-user-img {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #313047;
    box-shadow: 0 3px 0 #1b1b2b, 0 4px 4px #000;
}

.review-item-user-img::before {
    content: "";
    position: absolute;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e8ce3a;
}

.review-item-user-img::after {
    content: "";
    position: absolute;
    bottom: 7px;
    width: 18px;
    height: 9px;
    border-radius: 12px 12px 4px 4px;
    background-color: #e8ce3a;
}

.review-item-name {
    min-width: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    overflow-wrap: anywhere;
}

.review-item-rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #e8ce3a;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1px;
    white-space: nowrap;
}

.review-item-content {
    margin: 0;
    color: #c8cade;
    font-size: 16px;
    line-height: 1.45;
    text-align: left;
    text-indent: 0;
}

/* =========================
   TABLE
========================= */

.info-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #fbfbfb;
    font-size: 16px;
}

.info-table th,
.info-table td {
    border: 1px solid #cbbdbd;
    padding: 10px;
}

/* =========================
   TRUST
========================= */

.trust {
    padding: 20px 0;
    background-color: #161626;
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.trust-item {
    width: 33%;
    padding-left: 40px;
}

.trust-item h3 {
    font-size: 18px;
    font-weight: 800;
}

.trust-item p {
    font-size: 14px;
    color: #646a87;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    padding-top: 30px;
    box-shadow: inset 0 30px 30px -10px rgba(0,0,0,.8);
    font-size: 12px;
    color: #646a87;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 20px;
}

.footer-column h4 {
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer-column a {
    margin-bottom: 5px;
    margin-right: 15PX;
}

.footer-bottom {
    border-top: 1px dashed #303036;
    padding: 20px 0;
    text-align: center;
}

/* =========================
   FOOTER · COUNTRIES
========================= */

.footer-title {
    margin-bottom: 15px;
    height: 30px;
    border-bottom: 1px solid #252536;
    line-height: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #646a87;
    text-align: left;
}

.footer-help {
display: flex;
flex-grow: 1;
flex-wrap: wrap;
justify-content: center;
}

.footer-help>li:not(:last-child) {
margin-right: 10px;
list-style: none;
}

.footer-help a {
align-items: center;
border-radius: 5px;
box-sizing: border-box;
color: #fff;
display: flex;
font-size: 16px;
font-weight: 700;
height: 36px;
padding: 0 4px;
text-decoration: none;
transition: background-color .15s linear,transform .15s linear;
width: 100%;
}



.footer-countries {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (min-width: 992px) {
    .footer-countries {
        justify-content: space-between;
        flex-wrap: nowrap;
    }
}

.country-link {
    display: block;
    max-width: 30px;
}

.country-flag {
    display: block;
}

.country-flag img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* =========================
   FOOTER · LEGAL
========================= */

.footer-legal {
    border-top: 1px dashed #303036;
    padding: 20px 0;
    font-size: 12px;
    line-height: 1.2;
    color: #646a87;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
}

.footer-row--split {
    justify-content: space-between;
}

.footer-col {
    width: 100%;
}

@media (min-width: 992px) {
   
}

.footer-col--text {
    padding-bottom: 15px;
}

.footer-col--notice {
}

.legal-warning {
    display: flex;
    align-items: center;
}

.age-badge {
    display: block;
    width: 35px;
    height: 35px;
    margin-right: 10px;
    flex-shrink: 0;
}

.age-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.legal-warning p {
    margin: 0;
    font-size: 12px;
    color: #646a87;
}


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

@media (max-width: 991px) {
    .game-card {
        width: calc(25% - 20px);
    }

    .review-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }

    .game-card {
        width: calc(33.333% - 20px);
    }

    .content-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .game-card {
        width: calc(50% - 20px);
    }

    .trust-grid {
        flex-direction: column;
    }

    .trust-item {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .nav-list {
        flex-wrap: wrap;
    }

    .nav-item {
        width: 50%;
        text-align: center;
        padding: 15px 10px;
    }
}








.cookie-banner {
  font-size: 12px;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(37,37,54,.95);
  color: #ffffff;
  padding: 12px;
  z-index: 1000;
  display: none;
}

.cookie-banner a {
  color: #0178f6;
}

.cookie-consent-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .cookie-consent-wrapper {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.cookie-consent-title {
  font-size: 14px;
  font-weight: 700;
}

.cookie-consent-content p {
  margin: 10px 0 0;
}

.cookie-consent-actions {
  display: flex;
  gap: 12px;
}

.cookie-action {
  font-size: 12px;
  font-weight: 700;
  border: none;
  padding: 4px;
  width: 50%;
  height: 30px;
  cursor: pointer;
  border-radius: 50px;
font-size: 12px;
font-weight: 800;
letter-spacing: 1px;
text-transform: uppercase;
cursor: pointer;
transition: box-shadow .2s ease;
}

@media (min-width: 768px) {
  .cookie-action {
    width: 200px;
  }
}

.cookie-accept {
  background-color: #fe284a;
  color: #fff;
}

.cookie-decline {
  background-color: #4d5a85;
  color: #fff;
}








.age-consent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 42, 59, 0.67);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9990;
}

.age-consent-banner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(37,37,54,.95);
  color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  z-index: 9991;
}

@media (min-width: 600px) {
  .age-consent-banner {
    width: 600px;
  }
}

.age-consent-content {
  margin-bottom: 20px;
}

.age-consent-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.age-consent-content p {
  font-size: 16px;
  line-height: 1.2;
}

.age-consent-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.age-consent-btn {
  font-size: 14px;
  font-weight: 700;
  border: none;
  padding: 4px;
  width: 200px;
  height: 40px;
  cursor: pointer;
  border-radius: 50px;
font-size: 12px;
font-weight: 800;
letter-spacing: 1px;
text-transform: uppercase;
cursor: pointer;
transition: box-shadow .2s ease;
}

.age-accept {
  background-color: #fe284a;
  color: #fff;
}
