
  /* final overrides */
  .setupbg{
    background:#000 !important;
    background-color:#000; /* fallback */
    background-size:cover;
    min-height:100vh; /* ensure it shows even if content is short */
  }

.glowing {
    box-shadow: 0 0 10px rgba(57, 123, 230, 0.7);
    transition: box-shadow 0.3s ease-in-out;
}

.glowing:hover {
    box-shadow: 0 0 20px rgba(59, 130, 246, 1);
    transform: scale(1.05);
}


.marquee {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;



    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }

}

/* Wrapper for the progress bar */
.w-full {
    position: relative;
    overflow: hidden;
}

/* Progress Bar with Gradient Stripes */
.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* color: #fff; */
    text-align: center;
    white-space: nowrap;
    width: 96%; /* Example width, will be updated dynamically */
    z-index: 10;
    overflow: hidden;

    /* Gradient Stripe Background */
    background-size: 30px 30px;
    background-image: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 25%,
        transparent 25%,
        transparent 50%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.1) 75%,
        transparent 75%,
        transparent
    );

    /* Animation */
    animation: animate-stripes 3s linear infinite;
}

/* Stripe animation keyframes */
@keyframes animate-stripes {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 30px 30px;
    }
}

.raven-button-overlay {
    background-image: linear-gradient(90deg, #009C1A, #00EF27, #009C1A, #009C1A, #00EF27);
    background-size: 400% 100%;
    animation: AnimatedGradientBgLeft 6s infinite;

}

.red-button-overlay {
    background-image: linear-gradient(90deg, #B22222, #FF6347, #B22222, #B22222, #FF6347);
background-size: 400% 100%;
animation: AnimatedGradientBgLeft 6s infinite;

}

.tng-button-gradient {
    background-image: linear-gradient(90deg, #007BFF, #00BFFF, #007BFF, #007BFF, #00BFFF);
    background-size: 400% 100%;
    animation: AnimatedGradientBgLeft 6s infinite;
}

.raven-button-overlay:hover {
    box-shadow: 0 0 20px rgba(0, 255, 0, 1);
    /* Green color for the glowing effect */
    transform: scale(1.05);
}

/* Optional animation definition */
@keyframes AnimatedGradientBgLeft {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

html,
body {
    overflow-x: hidden;
    /* Ensure no horizontal scroll */
}

body[page="home"] .floating-whatsapp {
    display: block;
}
.floating-telegram img {
    width: 100%;
}
.floating-telegram {
    position: fixed;
    width: 25px;
    bottom: 100px;
    right: 0px;
    z-index: 1;
}
.floating-whatsapp img {
    width: 100%;
}
.floating-whatsapp {
    position: fixed;
    width: 25px;
    bottom: 210px;
    right: 0px;
    z-index: 1;
}

.floating-tiktok img {
    width: 100%;
	height: 120px;
}
.floating-tiktok {
    position: fixed;
    width: 80px;
    bottom: 320px;
    right: 0px;
    z-index: 1;
    animation: movemove 20s infinite;
}
@keyframes movemove{
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-300px); }
    100% { transform: translateY(300); }
}
.floating-tips img {
    width: 300%;
}

body {
    font-family: "Lato", sans-serif;
    transition: margin-left .5s;
    padding: 0;
    margin: 0;
}

.sidenav {  
    height: 100%;
    width: 250px;
    position: fixed;
    z-index:3;
    top: 0;
    left: -250px;
    background-color: #FFF;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 20px;

}

.open{
    right: calc(100% - 250px);
}

.dropdown-btn
{
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
    outline: none;
    font-family: "Lato", sans-serif;
}

.sidenav a ,.dropdown-btn{
text-decoration: none;
font-size: 19px;
color: #4D4D4D;
display: flex;
font-weight: 700;
gap: 10px;
flex-direction: row;
align-items: center;
}

.mybox
{
    padding-left: 10px;
    padding-right: 10px;
}

.sidenav a:hover {
    color: #EC7c25;
    background-color: #FFE6c7;
    border-radius: 8px;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* .openbtn {
    font-size: 20px;
    cursor: pointer;
    color: black;
    padding-left: 10px;
    border: none;
    margin: 5px;
    position: fixed;
    z-index: 2;
} */

.openbtn:hover {
    background-color: #FFE6c7;
    border-radius: 8px;
}

.logo {
    height: 46px;
    margin: 5px auto;
}


/* .active {
    background-color: #FFE6c7;
    color: #EC7c25;
    border-radius: 8px;
} */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}


.popup-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.popup-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff0000;
  color: white;
  border-radius: 50%;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 24px;
  line-height: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

#seeMoreContent {
    max-height: 50px; /* or adjust for your default collapsed height */
    overflow: hidden;
    transition: max-height 0.4s ease;
}

#seeMoreContent.expanded {
    max-height: 5000px; /* adjust as needed to fit all content when expanded */
}
.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* always 2 columns */
    gap: 20px;
    max-width: 1000px;
    margin: 20px auto;
    padding: 10px;
  }

  .promo-card {
    border-radius: 20px;
    padding: 18px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
  }

  .green-gradient { background: linear-gradient(180deg, #b10c35, #ff0000); }
  .purple-gradient{ background: linear-gradient(180deg, #ab47bc, #000000); }
  .blue-gradient{ background: linear-gradient(180deg, #0325ef, #000000); }
  .black-gradient{ background: linear-gradient(180deg, #47bc58, #2b1f33); }

  .promo-logo {
    width: 150px;
    height: 100px;
    margin: 0 auto 10px;
    object-fit: contain;
  }

  .promo-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
  }

  .info-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }

  .info-pill {
    background: #fff;
    color: #333;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
  }

  .promo-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .promo-btn {
    padding: 10px 16px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
  }

  .btn-blue { background: #1976d2; color: #fff; }
  .btn-orange { background: #ff9800; color: #fff; }
  .btn-blue:hover { background: #0d47a1; }
  .btn-orange:hover { background: #e65100; }
  
/* --- FAQ accordion --- */
.faq-pgkcasino .answer{
  display:block !important;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height .35s ease, opacity .25s ease;
}

.faq-pgkcasino .faq-item.is-open .answer{
  max-height:1000px;
  opacity:1;
  margin-top:8px;
  color: #737373;
}

/* visuals */
.faq-pgkcasino .faq-item{
  cursor:pointer;
  background:#fff;
  border:1px solid #000;
  border-radius:12px;
  padding:12px 16px;
  margin:10px 0;
}
.faq-pgkcasino .faq-item h3{
  position:relative; margin:0; padding-right:28px;
    color: #000;
}
.faq-pgkcasino .faq-item h3::after{
  content:"▸"; position:absolute; right:0; top:0; transition:transform .25s ease;
    color: #000;
}
.faq-pgkcasino .faq-item.is-open h3::after{ transform:rotate(90deg);color: #000; }


.sidenav.open { right: calc(100% - 250px); }

.see-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;   /* black background */
  color: #fff;              /* white text */
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.see-more-btn:hover {
  background-color: #333;   /* slightly lighter black on hover */
}/* Base header */
/* Header base */
.site-header{background:#000;color:#fff}

/* 3-column grid and explicit placement */
.header-grid{
  display:grid;
  grid-template-columns: auto 1fr auto; /* left | center | right */
  align-items:center;
  height:64px;        /* header height */
  padding:0 12px;
}

/* place items in exact columns */
.left{ grid-column:1; justify-self:start; }
.brand{ grid-column:2; justify-self:center; line-height:0; }
.actions{
  grid-column:3; justify-self:end;
  display:flex; gap:8px;
  white-space:nowrap;        /* prevent wrapping */
  flex-wrap:nowrap;
}

/* sizes */
@media (min-width:640px){ .header-grid{ height:80px; padding:0 16px; } }
.hamburger{
  width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center;
  border:none;border-radius:8px;background:transparent;color:#fff;cursor:pointer
}
.hamburger:hover{ background:rgba(255,255,255,.08) }
.brand-img{ height:36px; display:block; }   /* tune to taste */
@media (min-width:640px){ .brand-img{ height:48px; } }

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:10px;
  font-size:13px;
  font-weight:600;
  text-decoration:none;
  color:#fff;
  gap:6px;
  transition:0.2s ease;
}

/* Hover effect */
.btn:hover{
  filter:brightness(1.15);
  transform:translateY(-1px);
}

/* Platform colors */
.btn.telegram{ background:#f44336 }
.btn.whatsapp{ background:#22c55e }
.btn.facebook{ background:#2563eb }

/* Small screens */
@media (max-width:420px){
  .btn{
    padding:6px 12px;
    font-size:12px;
  }
}
