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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background-color: #121212;
}

.header {
  width: 100%;
  background-color: #1a1a1a;
  color: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.navbar-brand a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.logo-img {
  height: 2.5rem;
  margin-right: 0.5rem;
}

.navbar-nav {
  display: flex;
  list-style: none;
}

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

.nav-item:not(:last-child)::after {
  content: "•";
  margin: 0 1rem;
  color: #00f5a0;
  font-size: 1.2rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #00f5a0;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 200;
}

.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger-menu span:nth-child(2) {
  width: 80%;
}

.hero {
  position: relative;
  width: 100%;
  background-color: #000;
  color: #fff;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  background-image: url("images/hero-img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 4rem;
  width: 100%;
  align-self: flex-start;
}

.update-badge {
  display: inline-block;
  position: relative;
  background-color: transparent;
  color: #00f5a0;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  margin-bottom: 3rem;
  font-weight: 500;
  border: 2px solid #00f5a0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-size: 5.5rem;
  line-height: 0.9;
  margin-bottom: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.title-white {
  display: block;
  color: #fff;
  margin-bottom: 0.5rem;
}

.title-yellow {
  display: block;
  color: #00f5a0;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: #00f5a0;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-steps {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  background-color: rgba(0, 0, 0, 0.7);
  border-top: 1px solid #333;
  backdrop-filter: blur(10px);
}

.step {
  flex: 1;
  padding: 1.8rem 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step:not(:last-child) {
  border-right: 1px solid #333;
}

.step h3 {
  color: #00f5a0;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.step p {
  color: #fff;
  font-size: 1rem;
}

.comparison {
  background: #1a1a1a;
  padding: 5rem 0;
  color: #fff;
  position: relative;
}

.comparison-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.comparison-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #fff;
}

.comparison-intro {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #c0c0c0;
}

.casino-link {
  color: #00f5a0;
  text-decoration: none;
  font-weight: 600;
}

.casino-link:hover {
  text-decoration: underline;
}

.casino-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.casino-card {
  background-color: #252525;
  border-radius: 2rem;
  width: 100%;
  max-width: 550px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 2rem;
  border: 1px solid #333;
  padding-bottom: 1.5rem;
}

.card-number {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #00f5a0;
  color: #000;
  font-size: 2.2rem;
  font-weight: 800;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  border: 5px solid #1a1a1a;
}

.card-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #1a1a1a;
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.rating-star {
  color: #00f5a0;
  font-size: 1.2rem;
}

.card-logo {
  height: 120px;
  margin: 3rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 2rem;
}

.card-logo img {
  max-height: 100%;
  max-width: 100%;
}

.card-logo[alt*="Casigo"] img {
  filter: brightness(0) invert(1);
}

.card-bonus {
  background-color: #1a1a1a;
  color: #fff;
  padding: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  width: 100%;
  margin: 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.card-details {
  display: flex;
  width: 100%;
  margin: 2rem 0;
  padding: 0 1rem;
}

.detail-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.5rem;
}

.detail-item:first-child {
  border-right: 1px solid #444;
}

.detail-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #c0c0c0;
  text-transform: uppercase;
}

.detail-value {
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff;
}

.claim-bonus-btn {
  background: #00f5a0;
  color: #000;
  padding: 1.2rem 0;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin: 0 1.5rem;
  width: calc(100% - 3rem);
  text-align: center;
  transition: opacity 0.3s, transform 0.2s ease;
  border: none;
  margin-top: auto;
}

.claim-bonus-btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.card-detailed-content {
  width: 100%;
  padding: 1.5rem 1.5rem 0;
}

.detail-features {
  display: flex;
  justify-content: space-around;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.feature-item {
  flex: 1;
  background-color: #1a1a1a;
  padding: 0.8rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  min-width: 100px;
}

.feature-icon {
  width: 1.8rem;
  height: 1.8rem;
  background-color: #00f5a0;
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
  flex-shrink: 0;
}

.feature-icon svg {
  stroke: #000;
}

.feature-text {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
  text-align: left;
}

.detail-description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #c0c0c0;
  text-align: left;
  font-size: 0.9rem;
}

.detail-ratings {
  margin-bottom: 1.5rem;
}

.rating-row {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.rating-label {
  flex: 0 0 30%;
  font-size: 0.8rem;
  font-weight: 700;
  color: #c0c0c0;
  text-align: left;
  text-transform: uppercase;
}

.rating-bar {
  flex: 1;
  height: 10px;
  background-color: #1a1a1a;
  border-radius: 5px;
  margin: 0 1rem;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: #00f5a0;
  border-radius: 5px;
}

.rating-score {
  flex: 0 0 60px;
  text-align: right;
  font-weight: 700;
  color: #fff;
}

.detail-pros-cons {
  display: flex;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.pros-section,
.cons-section {
  flex: 1;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: left;
}

.pros-section {
  background-color: #1a1a1a;
  border: 1px solid #00f5a0;
  color: #fff;
}

.cons-section {
  background-color: #333;
  color: #fff;
}

.pros-title,
.cons-title {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.pros-title {
  color: #00f5a0;
}

.cons-title {
  color: #c0c0c0;
}

.icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
}

.pros-list,
.cons-list {
  padding-left: 0;
  list-style: none;
  font-size: 0.9rem;
}

.pros-list li,
.cons-list li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 2rem;
}

.pros-list li::before, .cons-list li::before {
  content: "✓";
  font-family: monospace;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
}

.pros-list li::before {
  background-color: #00f5a0;
  color: #000;
}

.cons-list li::before {
  content: "✕";
  background-color: #555;
  color: #fff;
}

.detail-verdict {
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-radius: 1rem;
  color: #fff;
  text-align: left;
}

.verdict-title {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00f5a0;
  font-weight: 700;
}

.trophy-icon {
  margin-right: 0.5rem;
  width: 1.4rem;
  height: 1.4rem;
  display: inline-flex;
}

.final-comparison {
  background-color: #000;
  background-image: url("images/compare-img.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 6rem 0;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-attachment: fixed;
}

.final-comparison::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
}

.final-comparison-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.final-comparison-title {
  color: #00f5a0;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
}

.final-comparison-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.final-comparison-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.verdict-box {
  background-color: #1a1a1a;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border: 1px solid #00f5a0;
}

.verdict-title {
  color: #00f5a0;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

.verdict-list {
  list-style: none;
  padding: 0;
}

.verdict-item {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1.05rem;
}

.verdict-item:last-child {
  margin-bottom: 0;
}

.verdict-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #00f5a0;
  font-size: 1.5rem;
}

.choose-text {
  font-weight: 600;
}

.casino-link-verdict {
  color: #00f5a0;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}

.casino-link-verdict:hover {
  color: #fff;
  text-decoration: underline;
}

.faq-section {
  background: #1a1a1a;
  color: #fff;
  padding: 5rem 0;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #fff;
  font-weight: 700;
}

.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion {
  border: 1px solid #333;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #252525;
}

.accordion-header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  position: relative;
}

.accordion-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00f5a0;
  margin-right: 1.5rem;
  min-width: 2rem;
}

.accordion-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  flex: 1;
  margin: 0;
}

.accordion-toggle {
  background: none;
  border: none;
  color: #00f5a0;
  font-size: 1.5rem;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
}

.accordion-toggle .plus,
.accordion-toggle .minus {
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.accordion.active .accordion-toggle .plus {
  opacity: 0;
}

.accordion.active .accordion-toggle .minus {
  opacity: 1;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
  color: #c0c0c0;
  line-height: 1.6;
}

.accordion.active {
  background-color: #1a1a1a;
}

.accordion.active .accordion-content {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 4.5rem;
}

.tips-section {
  background-color: #121212;
  color: #fff;
  padding: 5rem 0;
  border-top: 1px solid #333;
}

.tips-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.tips-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00f5a0;
  margin-bottom: 2rem;
}

.tips-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3.5rem;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.tips-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.tip-item {
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-radius: 1rem;
  border-left: 3px solid #00f5a0;
  text-align: left;
}

.tip-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00f5a0;
  margin-bottom: 1rem;
}

.tip-text {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.footer {
  width: 100%;
}

.footer-top {
  background-color: #1a1a1a;
  padding: 2rem 0;
  color: #fff;
  border-top: 1px solid #333;
}

.footer-bottom {
  background-color: #121212;
  padding: 2rem 0;
  color: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav {
  width: 100%;
  margin-bottom: 1.5rem;
}

.footer-nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 1rem 1.5rem;
}

.footer-nav-item a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav-item a:hover {
  color: #00f5a0;
}

.footer-certification {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 1rem;
}

.cert-logo {
  height: 1.5rem;
  opacity: 0.9;
}

.age-restriction {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 2px solid #fff;
  font-weight: 700;
  font-size: 1rem;
}

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
  text-align: center;
  width: 100%;
  margin-top: 1.5rem;
  order: 3;
}

.legal-section {
  background-color: #121212;
  padding: 4rem 0;
  min-height: 70vh;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.legal-title {
  font-size: 2.5rem;
  color: #00f5a0;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.legal-content {
  background: #1a1a1a;
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid #333;
}

.legal-updated {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  text-align: right;
  font-style: italic;
}

.legal-section-block {
  margin-bottom: 2.5rem;
}

.legal-heading {
  color: #00f5a0;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
}

.legal-section-block p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #c0c0c0;
}

.legal-section-block strong {
  font-weight: 600;
  color: #fff;
}

.legal-list {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #c0c0c0;
}

.legal-list li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}

.legal-list li::before {
  content: "•";
  position: absolute;
  left: -0.2rem;
  color: #00f5a0;
  font-size: 1.2rem;
}

.navbar-brand {
  font-size: 30px;
}

@media (max-width: 768px) {
  .hamburger-menu { display: flex; }
  .navbar-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(18, 18, 18, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .navbar-nav.active {
    display: flex;
  }
  .nav-item:not(:last-child)::after {
    display: none;
  }
  .nav-item {
    margin: 1.5rem 0;
  }
  .detail-pros-cons {
    flex-direction: column;
  }

  .footer-bottom .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-steps {
    flex-wrap: wrap;
  }
  .footer-copyright {
    order: 0;
    margin-top: 0;
  }
  .detail-features {
    flex-wrap: wrap;
  }
  .footer-certification {
    flex-wrap: wrap;
  }
  .hero-title {
    font-size: 2.5rem;
  }
}