@font-face {
  font-family: 'Mukta';
  src: url(/assets/fonts/Mukta/Mukta-Regular.ttf);
}

:root {
  --color-background: #2a1438;
  --color-card-dark: #3d1f52;
  --color-card-medium: #5a2d78;
  --color-card-light: #472465;
  --color-text: #faf8ff;
  --color-accent: #ff4081;
  --color-link: #e91e63;
  --color-link-hover: #f48fb1;
  --color-button: #00e676;
  --font-primary: 'Poppins', Arial, sans-serif;
  --border-radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.5;
}

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

a {
  text-decoration: none;
  color: var(--color-link);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-link-hover);
}

ul {
  list-style: none;
}

/* Header & Banner */
.disclaimer-banner {
  background-color: #000;
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
}

.disclaimer-banner p {
  margin-bottom: 5px;
}

.disclosure-link {
  text-decoration: underline;
  cursor: pointer;
}

header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-background);
}

.logo {
  display: block;
  max-width: 200px;
}

.logo img {
  width: 100%;
  height: auto;
}

/* Main Content */
.background-wrapper {
  background-image: url('../images/BG_Desktop-1.jpeg');
  background-size: cover;
  background-position: center;
  padding-bottom: 40px;
  overflow: hidden;
}

.page-header {
  padding-top: 18px;
  margin-bottom: 30px;
}

.title-wrapper {
  display: flex;
  flex-direction: column-reverse;
  align-items: baseline;
  margin-bottom: 20px;
}

h1 {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 30px;
  margin: 0;
}

.date {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.description {
  margin-bottom: 20px;
  line-height: 1.63;
  display: none;
}

.features-container {
  display: flex;
  justify-content: space-between;
  margin-top: 17px;
  padding-bottom: 3px;
}

.features {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-color: var(--color-card-dark);
  border: 1px solid #3d4160;
  border-radius: 16px;
  padding: 0 12px;
  align-items: center;
  max-height: 30px;
}

.feature {
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 17px 17px;
  padding-left: 24px;
}

.feature span {
  font-size: 10px;
}

.bonus-update {
  display: none;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: normal;
  background-color: var(--color-card-dark);
  border: 1px solid #3d4160;
  border-radius: 16px;
  margin-bottom: 2px;
}

.update-date {
  font-weight: normal;
}

/* Casino Cards */
.casino-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.casino-card {
  display: flex;
  flex-wrap: wrap;
  border-radius: var(--border-radius);
  position: relative;
  z-index: 1;
}

.casino-logo {
  width: 40%;
  background-color: var(--color-card-dark);
  border-top-left-radius: var(--border-radius);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.ribbon {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-accent);
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 5px 10px;
  text-transform: uppercase;
  border-top-left-radius: var(--border-radius);
}

.casino-logo img {
  height: 60px;
  max-height: 65px;
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 8px auto 0;
}

.mobile-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.score {
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}

.stars {
  display: flex;
  margin-top: 5px;
}

.star {
  width: 14px;
  height: 14px;
  background-color: gold;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  margin: 0 1px;
}

.star.half {
  background: linear-gradient(90deg, gold 50%, #555 50%);
}

.casino-info {
  width: 60%;
  background-color: var(--color-card-medium);
  border-top-right-radius: var(--border-radius);
  text-align: center;
  padding: 16px 9px;
  display: flex;
  flex-direction: column;
}

.info-content {
  display: flex;
  flex-direction: column;
}

.bonus-info {
  line-height: 1.3;
  font-size: 14px;
}

.bonus-amount {
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
}

.divider {
  display: none;
}

.rating-info {
  display: none;
}

.review-link {
  font-size: 14px;
  margin-top: 8px;
  display: inline-block;
}

.cta-buttons {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-bonus {
  display: inline-block;
  width: 144px;
  height: 40px;
  background-color: var(--color-button);
  color: white;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 10px;
  line-height: 40px;
  position: relative;
  padding-right: 24px;
  text-align: center;
}

.btn-bonus::after {
  content: "→";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-visit {
  font-size: 14px;
  margin-top: 16px;
  display: inline-block;
}

.terms-container {
  width: 100%;
  background-color: var(--color-card-light);
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  margin-top: auto;
}

.terms-content {
  text-align: center;
  padding: 8px 13px 9px;
  font-size: 12px;
}

.terms-short {
  display: block;
}

.terms-full {
  display: none;
}

.terms-content.show-full .terms-short {
  display: none;
}

.terms-content.show-full .terms-full {
  display: block;
}

.read-more {
  text-decoration: underline;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: var(--color-background);
  padding-top: 30px;
}

.quick-links {
  margin-bottom: 30px;
}

.quick-links h4 {
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-menu a {
  color: var(--color-text);
}

.footer-menu a:hover {
  text-decoration: underline;
}

.footer-bottom {
  background-color: var(--color-card-light);
  padding: 30px 0;
}

.footer-logo-container {
  margin-bottom: 20px;
}

.footer-logo {
  max-width: 180px;
}

.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.footer-certifications img {
  height: 40px;
  width: auto;
}

.footer-disclaimer {
  font-size: 12px;
  line-height: 1.5;
  color: #9b9b9b;
}

.footer-disclaimer p {
  margin-bottom: 15px;
}

.copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
}

/* Media Queries */
@media (min-width: 768px) {
  .title-wrapper {
    flex-direction: row;
    margin-bottom: 0;
  }
  
  h1 {
    font-size: 32px;
    display: inline-block;
    max-width: 100%;
  }
  
  .date {
    font-size: 30px;
    margin-left: 10px;
  }
  
  .description {
    display: block;
  }
  
  .features {
    width: auto;
    gap: 28px;
  }
  
  .feature span {
    font-size: 13px;
  }
  
  .bonus-update {
    display: block;
  }
  
  .casino-logo {
    width: 20%;
    border-bottom-left-radius: var(--border-radius);
    border-top-right-radius: 0;
    align-items: center;
  }
  
  .mobile-rating {
    display: none;
  }
  
  .casino-info {
    width: 80%;
    padding: 0;
    border-bottom-right-radius: var(--border-radius);
  }
  
  .info-content {
    flex-direction: row;
    padding: 16px 32px;
    justify-content: space-between;
    align-items: center;
  }
  
  .bonus-info {
    width: 224px;
    position: relative;
  }
  
  .divider {
    display: block;
    height: 100%;
    width: 1px;
    background-color: var(--color-card-dark);
  }
  
  .rating-info {
    display: block;
    width: 110px;
    position: relative;
  }
  
  .cta-buttons {
    margin-top: 0;
    position: relative;
  }
  
  .btn-bonus {
    width: 168px;
    height: 44px;
    line-height: 44px;
  }
  
  .terms-container {
    border-bottom-left-radius: 0;
  }
  
  .footer-logo-container,
  .footer-certifications {
    display: inline-block;
    vertical-align: middle;
  }
  
  .footer-logo-container {
    width: 30%;
    margin-bottom: 0;
  }
  
  .footer-certifications {
    width: 70%;
    padding-left: 20px;
  }
}


/* Policy Page Styles */
.policy-container {
  padding: 30px 0;
}

.policy-content {
  background-color: var(--color-card-light);
  border-radius: 16px;
  padding: 30px;
  margin: 0 0 30px;
  color: #ffffff;
}

.policy-content h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #ffffff;
}

.policy-content h2 {
  font-size: 22px;
  margin: 30px 0 15px;
  color: #63BCFF;
}

.policy-content h3 {
  font-size: 18px;
  margin: 20px 0 10px;
  color: #ffffff;
}

.policy-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.policy-content ul, .policy-content ol {
  margin: 15px 0;
  padding-left: 20px;
  list-style-type: disc;
}

.policy-content ol {
  list-style-type: decimal;
}

.policy-content li {
  margin-bottom: 8px;
}

.policy-content a {
  text-decoration: underline;
  color: #63BCFF;
}

.policy-content a:hover {
  color: #A5D8FF;
}

.policy-date {
  margin-bottom: 30px;
  font-style: italic;
  color: #9b9b9b;
}

@media (max-width: 768px) {
  .policy-content {
    padding: 20px;
  }
  
  .policy-content h1 {
    font-size: 24px;
  }
  
  .policy-content h2 {
    font-size: 20px;
  }
}


.feature {
  position: relative;
  padding-left: 24px;
}

.feature:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.feature-trusted:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M12 22a10 10 0 1 1 0-20 10 10 0 0 1 0 20zm0-2a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm-3.54-4.46a1 1 0 0 1 1.42-1.42L12 16.34l3.54-3.54a1 1 0 0 1 1.42 1.42l-4.24 4.24a1 1 0 0 1-1.42 0l-2.84-2.84z'/%3E%3C/svg%3E");
}

.feature-withdrawals:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M5 13h11.86l-3.63 4.36a1 1 0 0 0 1.54 1.28l5-6a1.19 1.19 0 0 0 .09-.15c0-.05.05-.08.07-.13A1 1 0 0 0 20 12a1 1 0 0 0-.07-.36c0-.05-.05-.08-.07-.13a1.19 1.19 0 0 0-.09-.15l-5-6A1 1 0 0 0 14 5a1 1 0 0 0-.64.23 1 1 0 0 0-.13 1.41L16.86 11H5a1 1 0 0 0 0 2z'/%3E%3C/svg%3E");
}

.feature-regulated:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M12 22a10 10 0 0 1-7.07-2.93A10 10 0 0 1 2 12c0-5.52 4.48-10 10-10s10 4.48 10 10-4.48 10-10 10zm-1-8h2v2h-2v-2zm0-10h2v8h-2V4z'/%3E%3C/svg%3E");
}