 :root {
    --font-family: 'Montserrat', sans-serif;
    --color-light: #F9FAFA ; 
    --bg-dark:  #22262A ;
    --bg-card:  #22262A ;
    --border-radius: 10px;
    --transition-duration: 0.3s;
    --color-accent: #1FAD66 ;
  }

a,
  button,
  input,
  svg ,
  textarea {
    transition-duration: var(--transition-duration);
  }

  body {
    background: #211d38;
    font-family: var(--font-family);
    display: flex;
    flex-direction: column;
    
}

a {
    text-decoration: none;
}
h1 {
    font-size: 40px;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    margin-bottom: 20px;
    text-align: center !important;
    color:  #fff;
}
h2 {
    font-size: 30px;
    font-weight: bold;
    text-align: left;
    margin: 10px 0 16px;
    color: #4af862;
}
h3 {
    font-size: 26px;
    font-weight: bold;
    text-align: left;
    margin: 10px 0 16px;
}
h4 {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    margin: 10px 0 16px;
}
p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 10px 0 20px;
    color: #a2a8c3;
}
@media screen and (max-width:768px)  {
    h1 {
        font-size: 25px;
        
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 20px;
    }
    h4 {
        font-size: 18px;
    }
    p {
        font-size: 16px;
    }
}

.header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    gap: 30px;
    min-height: 70px;
    padding-top: 10px;
    padding-left: 2%;
    padding-right: 2%;
    background: #18152c;
    border-bottom: 1px solid #000;
}
.logo {
    width: 100%;
    margin-bottom: 5px;
    display: flex;
    align-items: center; /* Вирівнює зображення по центру по вертикалі */
}

.navbar {
    width: 100%;
}
.navbar-links {
    display: flex;
    justify-content: flex-end;
    align-items:center;
    gap: 30px;
    width: 100%;
}
.nav-btn {
    display: flex;
    justify-content: center;
    align-items:center;
    gap: 10px;
}
.btn {
    background: #302a4f;
    padding: 15px 20px;
    min-width: 100px;
    font-size: 14px;
    color: rgb(255 255 255);
    font-weight: 700;
    border-radius: .8rem;
    border: 0px solid #4af862;
}
.btn a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    flex-direction: row;
    order: 1; /* іконка першою */
}
.btn-register{
    color: #fff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    
}
.btn:nth-of-type(2){
    background: #04c000;
    padding: 15px 20px;
    min-width: 20px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    border-radius: .8rem;
}
@media (max-width: 768px) {
    .btn:nth-of-type(2) {
        padding: 5px 17px;
        font-size: 13px;
        width: 100%; /* На всю ширину контейнера */
        max-width: 200px; /* Максимальна ширина */
        text-align: center;
    }
}
.nav-link {
    margin-right: auto;
    color: var(--color-light);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;

}

@media screen and (max-width:768px) {
    .header{
        height: auto;
        padding-left: 10px;
    }
    .nav-link {
        display: none;
    }
    .navbar-links {
        justify-content: center;
    }
}
@media screen and (max-width:478px) {
    .btn {
        padding: 10px 15px;
    }
    .btn a {
        font-size: 10px;
    }
}

.wrapper {
    display: none;
 }

 @media screen and (max-width: 768px) {
    .wrapper {
        display: block;
        position: static;
        z-index: 902;
    }
    
    .burgermenu {
        position: fixed;
        left: -60%;
        top: 0; 
        width: 0;
        height: 100%; 
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        background-color: var(--color-light);
        overflow: hidden;
        transition: left 0.3s ease; 
        z-index: 903;
        padding: 30px 10px;
    }
    
    .burgermenu.active {
        width: 70%;
        left: 0;
    }
    .btn-burger {
        width: 100%;
        padding: 10px 40px;
        background-color: #FCC301;
        border: none;
    }
    .btn-burger:nth-of-type(2){
        background-color:var(--color-accent);
    }
    .btn-burger a {
        text-transform: uppercase;
        color:var(--color-light);
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
    }
    .burger-list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
        height: 60%;
    }
    .link-burger {
        width: 100%;
        border-bottom: 1px solid var(--bg-dark);
        padding-bottom: 10px;
        font-weight: 700;
        color:var(--bg-card);
        font-size: 16px;
        font-weight: 700;
        margin-top: 20px;
        text-transform: uppercase;

    }
    
    .burger-button {
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: 50px;
        height: 43px;
        position: absolute;
        left: 15px;
        top: 25px;
        z-index: 100;
    }
    
    .close {
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        top: 10%;
        right: 5%;
        transform: translate(50%, -50%);
        cursor: pointer;
    }
    
    .close:before,
    .close:after {
        content: '';
        position: absolute;
        width: 3px;
        height: 20px;
        background:var(--bg-card);
    }
    
    .close:before {
        transform: rotate(45deg);
    }
    
    .close:after {
        transform: rotate(-45deg);
    }
    
    .burger-button div {
        width: 25px;
        height: 3px;
        background-color:var(--color-light);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }
 }

.banner {
    width: 100%;
    height: auto;
    background-image: url('../img/bg.webp');
    background-position: center;
    background-size: cover;
    margin-top: 70px;
}
.banner__box {
    max-width: 1240px;
    height: 400px;
    padding: 0 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.banner__box-content {
    width: 60%;
    
}
.banner__title {
    color:var(--color-light);
    font-family: 'arial black', sans-serif;
    font-size: 50pt;
    line-height: 1.2;
}
.banner__desc {
    font-family: 'arial black', sans-serif;
    font-size: 30px;
    line-height: 1.2;
}


@media screen and (max-width: 870px){
    .banner {
        width: 100%;
        margin-top: 70px;
    }
    .banner__box {
        max-width: 1440px;
        height: 300px;
        margin: 0 auto;
        padding: 0 30px;
    }
    .banner__box-content {
        width: 60%;
    }
    .banner__title {
        color: var(--color-light);
        font-family: 'arial black', sans-serif;
        font-size: 30pt;
        line-height: 1.2;
    }
    .banner__desc {
        font-size: 20px;
        line-height: 1.2;
    }
}
@media screen and (max-width: 468px){
    .banner__box-content {
        width: 100%;
    }
    .banner__title {
        font-size: 24px;
    }
    .banner__desc {
        font-size: 18px;
    }
}

.category {  
    width: 100%;
}
.category__box { 
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.category__box-item { 
    max-width: 260px;
    width: 100%;
    height: 200px;
    padding-top: 30px;
    background-color: var(--bg-dark);
    box-shadow: 0px 0px 9px 9px #0000000d;
    border-radius: 10px;
}
.category__box-item a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    color: var(--color-light);
}
.category__box-item img {
    max-width: 83px;
    width: 100%;
    height: 80px;
}
.category__box-item p {
    font-size: 16px;
    font-weight: bold;
}
@media  screen and (max-width: 768px) {
    .category__box { 
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 30px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        align-items: center;
        padding-top: 30px;
    }
    .category__box-item { 
        max-width: 260px;
        width: 100%;
        height: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 30px;
        gap: 40px;
    }
    .category__box-item img {
        max-width: 83px;
        width: 100%;
        height: 80px;
    }
    .category__box-item p {
        font-size: 16px;
        font-weight: bold;
    }
}

.slot {
    width: 100%;
    margin-bottom: 40px;
    margin-top: 80px;
}
.slot__box {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 60px;
}
.slot__box h2 {
    color: var(--color-accent);
}
.slot__box-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    padding-top: 20px;
}
.slot__box-item {
    width: 100%;
    height: auto;
    max-width: 220px;
    min-height: 320px;
    position: relative;
    background-color: black;
    border-radius: 10px;
}
.slot__box-item img {
    width: 100%;
    height: auto;
    max-width: 220px;
    min-height: 320px;
    border-radius: 10px;
}
.slot__box-item .svg {
    position: absolute;
    top: 5%;
    left: 40%;
    width: 60px;
    height: 60px;
    opacity: 0;
}
.slot__box-item:hover .svg {
    opacity: 1; 
}
.slot__box-item:hover img {
    opacity: 0.3;
}

@media screen and (max-width: 695px) {
    .slot__box-items {
        justify-content: center;
        gap: 20px;
    }
    .slot__box-item {
        max-width: 120px;
        min-height: 190px;
    }
    .slot__box-item img {
        max-width: 120px;
        min-height: 190px;
    }
}

  
table {
    width: 100%; 
    border-collapse: separate;
    border-spacing: 10px 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    margin: 30px 0;
}
@media (max-width: 768px) {
    table {
        max-width: 100%;
        overflow-x: auto;
        display: block;
    }
}

td {
    border: none; 
    padding: 8px; 
      white-space: normal; 
  word-wrap: break-word; 
    border-radius: 10px 10px 10px 10px; 
    background: #302a4f;
}
tr {
    background-color: rgb(204 228 255);
    border: 2px solid var(--color-light);
}
th {
    font-size: 16px;
    font-weight: 700;
    background: #302a4f; 
    border-radius: 10px 10px 10px 10px; 
    padding: 10px 0;
}
  @media (max-width: 1280px) {
    .table-wrapper {
      width: 100%;
    }
  }
  @media (max-width: 600px) {
    .table-wrapper {
      width: 100%;
    }
    .footer__top-box img {
        max-width: 35px;
    }
  }

.text-copy {
    margin-top: 70px;
}
.text {
    width: 100%;
    margin-bottom: 40px;
}
.text__box {
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px 100px;
    padding-top: 30px;
    background: none;
    color: #fff;
}
.text .buttons {
    display: flex;
    justify-content: center;
}

.text-box-img {
    display: flex;
    justify-content: center;
    align-items:center;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}
.text-box-img img {
    width: 100%;
}
@media (max-width: 768px) {
    .text__box {
        padding: 20px 15px;
        padding-top: 20px;
    }
 }
 
 @media (max-width: 480px) {
    .text__box {
        padding: 15px 30px;
        padding-top: 15px;
    }
 }
.buttons {
    display: flex;
    justify-content: center;
    align-items:center;
    margin-bottom: 30px;
}

.log {
    border: none;
    background-color: var(--color-accent);
    border-radius: 10px;
    height: auto;
    padding: 20px 70px;
}
.log a {
    color: var(--color-light);
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.faq {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 10px;
    padding-top: 30px;
}

.faq__container h2 {
	margin-bottom: 1.875rem;
	font-size: 1.875rem;
	font-weight: 700;
}
summary.spollers__title {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
	line-height: 2rem;
	border: 1px solid var(--color-light);
    padding: 1rem;
}

.spollers__body {
	margin-bottom: 1rem;
    font-size: 1.125rem;
	line-height: 2rem;
	border: 0px dotted var(--color-light);
    padding: 0 1rem;
}

.footer__box {
    max-width: 1440px;
    margin: 30px auto;
    padding: 0 10px;
    padding-top: 30px;
}
.footer-img {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-img img {
    opacity: 0.4;
}
.footer__top {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    justify-content: center;
    gap: 10px;
    padding: 20px; 
}
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-links a {
    display: block; 
    color: #a1adc7;
    text-decoration: none; 
    margin-bottom: 15px; 
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
  }
  
  .footer-links a:hover {
    text-decoration: underline; 
  }

  .footer-pay {
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}
.footer-pay img {
    height: 30px;
    opacity: 0.4;
}
.copy {
    font-size: 16px;
    margin: 40px 0;
}
 
  @media (max-width: 768px) {
    .footer__top {
      grid-template-columns: repeat(1, 2fr); 
    }
    .log {
        padding: 10px 40px;
    }
    .log a {
        font-size: 15px;
    }
  }

ul,li,ol {
    line-height: 1.5;
    margin: 20px 0;
    padding-left: 20px;
}
.pokies-info {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    line-height: 1.6;
 }
 
 .info-item {
    flex: 0 0 calc(50% - 10px);
    padding: 10px;
    border-left: 3px solid #007cba;


 }
.security-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
 }
 
 .security-category {
    flex: 1;
    min-width: calc(50% - 8px);
 }
 
 .security-category-content {
    border: 2px solid #4a1d89;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(136, 136, 136, .6);
 }
 
 .security-category-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5; }
 
 .security-category-content strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
 }
 
 @media (max-width: 768px) {
    .security-category {
        min-width: 100%;
    }
 }
 .cta-box .btn {
    display: block;
    width: 100%;
    background: #21ca6f;
    border-color: #49e48f;
    box-shadow: 0px 0px 16px 0px #22a526 inset;
    text-align: center;
    border-radius: 100px;
    text-decoration: none;
    line-height: 16px;
    padding: 15px;
    margin-top: 50px;
    margin-bottom: 50px;
    color: #ffffff;
  }
  .faq {
    margin-top: 30px;
    width: 100%;
}

.faq-container {
    margin-top: 20px;
    width: 100%;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

.faq-question {
    background: #302a4f;
    padding: 15px;
    margin: 0;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #0c6a64;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    padding: 15px;
    background;
    width: 100%;
    box-sizing: border-box;
    display: none;
}

.faq-answer.active {
    display: block;
}

.expert-block {
    background: #302a4f;
    border-radius: 8px;
    padding: 15px;
    margin: 25px 0;
    position: relative;
}
.expert-block::before {
    content: "💡 Expert Insight";
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}
.conclusion {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}
.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 15px;
    margin: 20px 0;
    color: #000 !important;
}
 
.warning-box p {
    color: #000 !important;
}
 @media (max-width: 768px) {
    .expert-block {
        padding: 12px;
        margin: 15px 0;
    }
 }
 .warning {
    border: 1px solid #0c6a64;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    color: #fff !important;
}

.casino-entry-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.casino-access-btn {
    background: linear-gradient(135deg, #de006f 0%, #f73736 100%);
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(222, 0, 111, 0.3);
    min-width: 180px;
    text-align: center;
}

.casino-access-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222, 0, 111, 0.4);
    filter: brightness(1.1);
}

.banner-container img {
    width: 100%;
    height: auto;
}

.banner-container {
    position: relative;
    display: block;
}

.banner-container img {
    max-height: 600px;
    height: auto;
    display: block;
}

.casino-entry-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.casino-access-btn {
    background: linear-gradient(180deg, #f0ce58 0%, #c25630 65%);
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(222, 0, 111, 0.3);
    min-width: 180px;
    text-align: center;
}

.casino-access-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222, 0, 111, 0.4);
    filter: brightness(1.1);
}
@media (max-width: 480px) {
    .casino-access-btn {
      padding: 14px 20px;
      font-size: 16px;
      min-width: 100%;
      display: block;
      margin: 0 auto;
      box-shadow: 0 3px 10px rgba(222, 0, 111, 0.25);
    }
  }
  
.sticky_buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(240, 242, 244, 0.5);
    z-index: 9999;
    padding: 5px 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  
  }
 .sticky_buttons_container {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  
  .sticky_buttons a {
    padding: 8px 60px;
    color: #080a52 !important;
    background: linear-gradient(180deg, #5eead4 0%, #34d399 25%, #10b981 50%, #059669 75%, #047857 100% );
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s ease;
  }
  
  .sticky_buttons a:hover {
    background-color: #ff6b00;
  }
  
  .sticky_buttons .close {
    position: absolute;
    top: 1px;
    right: 10px;
    background: #fff;
    color: #000;
    border-radius: 5%;
    padding: 1px 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
  }
  
  .btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    width: 100%;
    height: 100%;
    color: inherit;
    flex-direction: row; /* горизонтально */
}

.btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
    order: 1; /* іконка першою */
}

.btn a span {
    order: 2; /* текст другим */
}
.site-footer {
    background: #302a4f;
    color: white;
    padding: 40px 20px 20px;
    margin-top: 0; /* Змінив з 50px на 0 */
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3498db;
}

.disclaimer {
    background-color: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.disclaimer p {
    margin: 0;
    font-size: 14px;
    color: #ecf0f1;
}

.copyright {
    border-top: 1px solid #34495e;
    padding-top: 15px;
    font-size: 13px;
}

.copyright a {
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: row;
        gap: 15px;
    }
    
    .site-footer {
        padding: 30px 15px 15px;
        margin-top: 0; /* Також 0 на мобільних */
    }
}
/* Основна навігація */
.main-navigation {
    display: flex;
    gap: 15px;
    flex: 1;
    justify-content: center;
    margin: 0 auto;
    position: absolute;
    left: 35%;
    transform: translateX(-50%);
 }
 
 .main-navigation .nav-link {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
 }
 
 .main-navigation .nav-link:hover {
    background-color: rgba(23, 232, 130, 0.1);
    color: #0c6a64;
 }
 
 /* Приховати навігацію на мобільних */
 @media screen and (max-width: 768px) {
    .main-navigation {
        display: none;
    }
 }
 .site-footer {
    background: #18152c;
    color: #bdc3c7;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #34495e;
}

.footer-nav a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ecf0f1;
}

.license-section {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #34495e;
}

.license-badges {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
}

.badge-item {
    display: flex;
    align-items: center;
}

.age-badge {
    background: #7f8c8d;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

.license-badge, .gaming-badge {
    background: #34495e;
    color: #95a5a6;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
}

.cert-badge {
    font-size: 24px;
}

.license-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.5;
    color: #95a5a6;
}

.license-text p {
    margin: 0;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center; /* Центрування */
}

.payment-logo {
    background: #34495e;
    color: #95a5a6;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.7;
    transition: all 0.3s ease; /* Плавний перехід */
    cursor: pointer; /* Показує що елемент інтерактивний */
}

.payment-logo:hover {
    color: white; /* Білий колір при наведенні */
    opacity: 1; /* Повна непрозорість */
    background: #3a4a5c; /* Трохи світліший фон при наведенні */
    transform: translateY(-2px); /* Невеликий підйом для кращого ефекту */
}

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .license-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .license-badges {
        flex-wrap: wrap;
    }
    
    .payment-methods {
        justify-content: center;
    }
}

.logo-text {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.2;
}

/* Specific logo styles */
.clash-of-slots {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.clash-of-slots::before {
    content: '⚔️';
    font-size: 16px;
}

.play-casino {
    color: #fff;
    position: relative;
}

.play-casino::after {
    content: 'TRUSTED PARTNER';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 7px;
    color: #888;
    white-space: nowrap;
}

.casinofy {
    color: #7c4dff;
    font-style: italic;
}

.slotezilla {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.slotezilla::before {
    content: '🦍';
    font-size: 16px;
}

.spicy-casinos {
    color: #ff6b35;
}

.casinos-without-license {
    color: #fff;
    font-size: 12px;
    line-height: 1.1;
}

.casino-groups {
    color: #4ecdc4;
    font-size: 13px;
    line-height: 1.1;
}

.speletajem {
    color: #fff;
    font-weight: 900;
}

.ceske-casino {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ceske-casino::after {
    content: '🇨🇿';
    font-size: 14px;
}

.kazino-bu {
    color: #fff;
    font-weight: bold;
}

.wiser-gamblers {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.wiser-gamblers::before {
    content: '🦉';
    font-size: 14px;
}

.casino-latvia {
    color: #27ae60;
    display: flex;
    align-items: center;
    gap: 6px;
}

.casino-latvia::before {
    content: '▶';
    font-size: 12px;
}

.gamble-critic {
    color: #3498db;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px 10px;
    }
    
    .partner-logo {
        height: 45px;
        padding: 10px;
        max-width: 150px;
    }
    
    .logo-text {
        font-size: 12px;
    }
    
    .partners-section {
        margin: 20px 0;
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 8px;
    }
    
    .partner-logo {
        height: 40px;
        padding: 8px;
    }
    
    .logo-text {
        font-size: 11px;
    }
    
    .casinos-without-license,
    .casino-groups,
    .wiser-gamblers {
        font-size: 10px;
    }
}

.partners-section {
   margin: 40px 0;
   padding: 30px 0;
   text-align: center;
}

.partners-grid {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 30px;
   max-width: 800px;
   margin: 0 auto;
   flex-wrap: wrap;
}

.partner-logo {
   display: flex;
   align-items: center;
   justify-content: center;
   height: 90px;
}

.partner-logo svg {
   filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

@media (max-width: 768px) {
   .partners-grid {
       gap: 20px;
       flex-direction: column;
   }
   
   .partner-logo svg {
       width: 100px;
       height: 75px;
   }
}

.disclaimer {
    margin-top: 50px;
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.disclaimer p {
    margin: 5px 0;
}

.strategies-list {
    counter-reset: custom-counter;
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
  }
  
  .strategies-list li {
    counter-increment: custom-counter;
    position: relative;
    padding-left: 60px;
    margin-bottom: 20px;
    padding: 20px 20px 20px 60px;
  }
  
  .strategies-list li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #4af862;
    color: #2c3e50;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
  }
  
  .strategies-list li p {
    margin: 0;
    line-height: 1.5;
  }

/* Мобільна версія — залишаємо в рядок */
@media (max-width: 768px) {
    .logo {
        flex-direction: row;
        justify-content: center; /* вирівнювання по центру */
        gap: 5px; /* відступ між картинками */
    }

    .logo img {
        height: 50px; /* можна зменшити для мобільного */

    }
}
.american-bonus { 
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); 
    color: white; 
    padding: 25px; 
    border-radius: 12px; 
    margin: 25px 0; 
    text-align: center; 
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.bonus-headline { 
    font-size: 22px; 
    font-weight: bold; 
    margin-bottom: 12px; 
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.american-bonus p {
    font-size: 16px;
    margin: 0;
    opacity: 0.95;
}
.jackpot-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px; 
    margin: 25px 0; 
    padding: 0;
 }
 
 .jackpot-card { 
    background: #e4e4e4; 
    border: 2px solid #dee2e6;
    border-radius: 12px; 
    padding: 25px 20px; 
    text-align: center; 
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }
 
 .jackpot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
 }
 
 .jackpot-amount { 
    font-size: 26px; 
    font-weight: bold; 
    color: #007bff; 
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 123, 255, 0.2);
 }
 
 .jackpot-label { 
    font-size: 14px;
    color: #495057; 
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
 }
 
 @media (max-width: 768px) {
    .jackpot-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .jackpot-card {
        padding: 20px 15px;
    }
    
    .jackpot-amount {
        font-size: 22px;
    }
 }
 .promo-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.promo-card {
    padding: 30px 25px;
    border-radius: 20px;
    color: white;
    text-align: center;
    min-height: 280px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    border-radius: 20px;
    z-index: 1;
}

.promo-card > * {
    position: relative;
    z-index: 2;
}

.main-bonus {
    background-image: url(../img/photo1.webp);
}

.warning-card {
    background-image: url(../img/photo2.webp);
}

.slots-card {
    background-image: url(../img/photo3.webp);
}

.bonus-icon, .warning-icon, .slots-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.promo-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.promo-subtitle, .card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.card-text {
    font-size: 16px;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.highlight {
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
}

.age-warning {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
    z-index: 3;
}

@media (max-width: 768px) {
    .promo-banner {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .promo-card {
        min-height: 180px;
        padding: 25px 20px;
    }
    .promo-title {
        font-size: 24px;
    }
    .promo-subtitle, .card-title {
        font-size: 18px;
    }
}
.partners-section {
    padding: 30px 20px;
    margin-top: 40px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 15px;
        max-width: 500px;
    }
    
    .partner-logo svg {
        width: 180px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 400px;
    }
    
    .partner-logo svg {
        width: 160px;
        height: 55px;
    }
}
.game-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 15px;
    background: #1a1a2e;
    max-width: 1900px;
    margin: 0 auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    background: #2a2a3e;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 70px;
    text-align: center;
    border: 2px solid transparent;
}

.nav-item:hover {
    background: #3a3a4e;
    transform: translateY(-2px);
    border-color: #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.nav-item.active {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-color: #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.nav-icon {
    font-size: 20px;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.nav-item:hover .nav-icon {
    transform: scale(1.05);
}

.nav-item.active .nav-icon {
    filter: brightness(0) saturate(100%) invert(13%) sepia(8%) saturate(1158%) hue-rotate(202deg) brightness(95%) contrast(95%);
}

.nav-label {
    color: #9ca3af;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.nav-item:hover .nav-label {
    color: #FFD700;
}

.nav-item.active .nav-label {
    color: #1a1a2e;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .game-navigation {
        padding: 15px 10px;
        gap: 8px;
    }
    
    .nav-item {
        min-width: 65px;
        padding: 10px 14px;
    }
}

@media (max-width: 768px) {
    .game-navigation {
        padding: 15px 8px;
        gap: 6px;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .game-navigation::-webkit-scrollbar {
        display: none;
    }
    
    .nav-item {
        min-width: 60px;
        padding: 8px 12px;
        flex-shrink: 0;
    }
    
    .nav-icon {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .nav-label {
        font-size: 10px;
    }
}

         
         .banner-container img {
            width: 100%;
            height: auto;
            display: block;
         }
         
         .overlay-block {
            position: absolute;
            top: 50%;
            left: 40px; /* замість left: 50% */
            transform: translateY(-50%); /* замість translate(-50%, -50%) */
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            min-width: 300px;
        }
         
         .welcome-title {
            color: #FFD700;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
         }
         
         .bonus-amount {
            color: #FFD700;
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 20px;
         }
         
         .deposit-info {
            color: white;
            font-size: 18px;
            margin-bottom: 15px;
         }
         
         .bonus-details {
            color: #00FF00;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 25px;
         }
         
         .join-button {
            background: #00AA00;
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            text-decoration: none;
            display: inline-block;
         }
         
         .join-button:hover {
            background: #009900;
         }
         .banner-container {
            position: relative;
            width: 100vw; /* на всю ширину екрану */
            margin-left: calc(50% - 50vw); /* центрування якщо контейнер обмежений */
        }
        
        .banner-container img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover; /* щоб фото не деформувалось */
        }
        .site-footer {
            background: #1a1a2e;
            color: #9ca3af;
            padding: 30px 0 30px;
            width: 100%;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            width: 100%;
        }
        
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 50px;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .footer-brand {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 25px;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }
        
        .logo-text {
            color: white;
            font-size: 24px;
            font-weight: bold;
        }
        
        .social-section h3 {
            color: white;
            font-size: 16px;
            margin-bottom: 15px;
            font-weight: 400;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: #2a2a3e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9ca3af;
            text-decoration: none;
            transition: background 0.3s;
        }
        
        .social-link:hover {
            background: #3a3a4e;
        }
        
        .language-selector {
            background: #2a2a3e;
            border: 1px solid #3a3a4e;
            color: #9ca3af;
            padding: 10px 15px;
            border-radius: 8px;
            cursor: pointer;
            min-width: 150px;
            font-size: 14px;
        }
        
        .footer-columns {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            padding: 0 20px;
        }
        
        .footer-column h3 {
            color: white;
            font-size: 18px;
            margin-bottom: 25px;
            font-weight: 600;
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-column li {
            margin-bottom: 15px;
        }
        
        .footer-column a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
            line-height: 1.5;
        }
        
        .footer-column a:hover {
            color: white;
        }
        
        .footer-bottom {
            padding-top: 25px;
            text-align: center;
        }
        
        .copyright {
            color: #6b7280;
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }
        
        @media (max-width: 1200px) {
            .footer-content {
                padding: 0 30px;
            }
            
            .footer-columns {
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-columns {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                padding: 0 10px;
            }
            
            .footer-top {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .footer-content {
                padding: 0 20px;
            }
        }
        
        @media (max-width: 480px) {
            .footer-columns {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .overlay-block {
                left: 15px;
                max-width: 200px; /* обмежуємо ширину */
                min-width: auto;
                width: auto;
                padding: 10px;
            }
        
            .welcome-title {
                font-size: 11px;
                margin-bottom: 3px;
            }
        
            .bonus-amount {
                font-size: 13px;
                margin-bottom: 5px;
            }
        
            .deposit-info {
                font-size: 10px;
                margin-bottom: 3px;
            }
        
            .bonus-details {
                font-size: 11px;
                margin-bottom: 8px;
            }
        
            .join-button {
                padding: 6px 15px;
                font-size: 12px;
            }
        }
        @media (max-width: 768px) {
            .content-image img {
                max-width: 400px; /* фіксована максимальна ширина */
                width: 100%;
            }
        }