/* Google Fonts */
/* Self-hosted Google Fonts: Anton & Inter */

/* Anton Regular */
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/anton-v26-latin-regular.woff2') format('woff2');
}

/* Inter Regular */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter-v12-latin-regular.woff2') format('woff2');
}

/* Inter SemiBold (for headers/buttons etc.) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/inter-v12-latin-600.woff2') format('woff2');
}




body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top center, #16141d 0%, #060708 100%);
    color: #ffffff;
}

.bonus-text {
  min-height: 120px; /* adjust based on exact paragraph height */
  overflow-anchor: none; /* prevents CLS from anchors too */
}

h1, h2, h3, h4 {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    margin: 1.25em 0 -0.5em 0;
    font-size: 2em;
    line-height: 1.2em;
    min-height: 1.2em; /* ← Prevent layout jumps when font loads */
}

p, li, a {
    font-size: 1.15rem;
    line-height: 1.2em;
    text-decoration: none;
    color:white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    background: #00000066;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(6px);
}

.logo {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    display: flex;
}

.hamburger {
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    display: block;
    cursor: pointer;
}

nav.desktop-menu {
    display: none;
    gap: 2em;
}

nav.desktop-menu a {
    color: #fff;
    text-decoration: none;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgb(0 0 0 / 63%);
  position: fixed; /* 👈 Fixed to viewport */
  top: 75px;        /* 👈 Leave this if you want space from top nav */
  left: 0;
  right: 0;
  bottom: 6em;        /* 👈 cover till bottom */
  padding: 2em 1em;
  justify-content: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 2px solid #494883eb;
  border-top: 0px;
  backdrop-filter: blur(6px);
  box-shadow: 0px 8px 39px #6d86b096 inset;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 99999;
}


.mobile-menu.open {
    display: flex;
    opacity: 1;
  transform: translateY(0);
  align-items: flex-start;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    padding: 1em;
    font-size: 1.2em;
    width: 100%;
}

main {
    padding: 4em 1em 1em;
    max-width: 800px;
    margin: auto;
}

.hero {
    padding: 1em 1em;
}


figure {
  margin: 0px;
  text-align: center;
}

.social-media ul li a{
    line-height: 2.2em;
}

figcaption {
  font-size: 0.9em;
  color: #666;
  margin-top: 0.5em;
}


.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em;
    margin-top: 1.5em;
}

.btn, .btn-secondary {
    display: inline-block;
    padding: 0.75em 1.5em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn {
    background-color: #d70000;
    color: white;
    width: 4em;
    text-align: center;
}

.btn-secondary {
    background-color: #d70000;
    color: white;
}

.btn:hover, .btn-secondary:hover {
    opacity: 0.9;
}

.offer-banner {
    display: flex;
    justify-content: center;
    margin: 0px;
}

.offer-img {
    width: 100%;
    max-width: 702px;
    aspect-ratio: 351 / 160;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    height: auto; /* Prevents layout jump */
  }
  
.mobile-ad a{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features ul, .why-play ul, .login-guide ol, .deposit-guide ol {
    padding-left: 1.2em;
}

.info-card {
    background: #2a2737;
    border-radius: 12px;
    padding: 1em;
    margin: 1.5em 0;
    font-size: 0.95rem;
    display: grid;
    gap: 0.75em;
}

.info-card div {
    display: flex;
    justify-content: space-between;
    background-color: #000;
    padding: 0.75em 1em;
    border-radius: 6px;
    font-size: 0.95rem;
}

.info-card span:first-child {
    font-weight: 500;
    color: #ffffff;
}

.info-card span:last-child {
    color: #ffffff;
    text-align: right;
}

.telegram-btn {
    display: inline-block;
    background: linear-gradient(180deg, #49DFF0, #001820);
    color: white;
    padding: 1.2em 2em;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0px 0px 15px 3px #ffffffcf inset;
    font-size: 1.4em;
}

.telegram-btn:hover {
    background: #007be6;
}


footer {
    text-align: center;
    padding: 2em 1em;
    background: #111;
    font-size: 0.9rem;
    display: flex;
        flex-direction: column;
    align-items: center;
}

footer nav a {
    color: #aaa;
    margin: 0 0.5em;
    text-decoration: none;
}

/* Desktop Ad Placement */
.desktop-ad {
    display: none;
    position: fixed;
    top: 120px;
    width: 300px;
    height: 600px;
    background: #333;
}

.left-ad {
    left: 0;
}

.right-ad {
    right: 0;
}



.faq-item-cont{
  padding: 10px 30px;
  background-color: #25232c;
  border-radius: 10px;
  margin-top: 25px;

}



.blog-section {
    margin-top: 2em;
  }
  
  .featured-blog {
    margin-bottom: 2em;
    background: #201f2c;
    padding: 1em;
    border-radius: 10px;
    text-align: center;
    margin-top: 2.2em;
  }
  
  .featured-blog img {
    width: 100%;
    max-width: 702px;
    height: auto;
    border-radius: 10px;
  }
  
  .featured-blog h3 {
    margin-top: 0.5em;
    font-size: 1.5em;
  }
  
  .featured-blog p {
    margin-top: 1em;
    font-size: 1em;
    color: #ccc;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1em;
    margin-top: 2.2em;
  }
  
  .blog-grid h4{
    margin: 10px 0px 10px 0px;
  }
  .blog-tile {
    background: #201f2c;
    padding: 1em;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: background 0.2s;
  }
  
  .blog-tile img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 0.75em;
  }
  
  .blog-tile:hover {
    background: #33304e;
  }


  .blog-article img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em auto;
  }

  
  .pagination {
    text-align: center;
    margin-top: 2em;
  }
  .pagination a {
    color: white;
    padding: 0.5em 1em;
    margin: 0 0.2em;
    background: #222;
    text-decoration: none;
    border-radius: 4px;
  }
  
  .pagination .active {
    background: #ff0000;
    font-weight: bold;
  }

  

  .breadcrumb {
    font-size: 0.8rem;
    margin: 3em 0 -2em 0em;
  }
  .breadcrumb a {
    color: #9574bb;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .breadcrumb span {
    color: #a7a6af;
  }
  



  .blog-controls {
    text-align: center;
    margin-top: 2em;
  }
  
  .load-more-btn {
    background-color: #4b4b4b;
    color: white;
    border: none;
    padding: 0.75em 2em;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 6px;
    margin: 0.5em auto;
    display: inline-block;
    min-width: 220px;
    transition: background 0.2s ease;
  }
  
  .load-more-btn:hover {
    background-color: #252525;
  }
  

  .last-updated {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1em;
  }
  

.blog-tile h4{
  font-size: 1.6em;
  line-height: 1.4;
  max-height: 2.8em; /* limits to 2 lines */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}


/* Mobile Adjustments */
@media (max-width: 480px) {

  h1, h2, h3, h4 {
    font-weight: 200;
    font-size: 1.5em;
}
p, li, a {
  font-size: 1rem;
}
    /* Blog Section Titles */
.blog-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* Blog Tile Title */
.blog-tile h4 {
  font-size: 1.5rem;
  line-height: 1.4;
  max-height: 2.8em; /* limits to 2 lines */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
}


  .mobile-ad video {
    display: block;
    width: 320px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

/* Desktop ad videos should also be styled safely */
.desktop-ad video {
    width: 300px;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}


.payment-banner {
  display: flex;
  justify-content: center;
  margin-top: 24px; /* ⬅️ space from title */
}

.payment-banner img {
  max-width: 100%;
  height: auto;
}


@media(min-width: 1420px) {
    .desktop-ad {
        display: block;
        background: none;
    }
    .hamburger {
        display: none;
    }
    nav.desktop-menu {
        display: flex;
    }
    .mobile-menu {
        display: none !important;
    }
}


/* Hide mobile ads on desktop */
@media (min-width: 769px) {
    .mobile-ad {
      display: none !important;
    }
  }
  
