.policy,
.success {
  padding-block: 130px 60px;
  min-height: 92vh;
}

.success__text {
  margin-bottom: 30px;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;

  margin-bottom: 30px;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 14px;
}

.policy__text ul {
  padding-left: 20px;
}

.policy__link {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding-inline: 20px;
}

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

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-height: 100vh;
}

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

/* Warning Banner */
.warning-banner {
  background: #ffcc00;
  color: #000;
  text-align: center;
  padding: 10px;
  font-weight: 500;
  font-size: 14px;
}

/* Header */
.header {
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

/* Navigation */
.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-list a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: #ffcc00;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  background:      url('../img/hero-bg.png') center / cover no-repeat;
}


.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #e0e0e0;
  line-height: 1.8;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  background: #ffcc00;
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: bold;
  font-size: 1.2rem;
}

.feature h3 {
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  padding-left: 30px;
  text-align: left;
}

.feature h3::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url('../img/check.png') center / contain no-repeat;
}

/* Casino Cards */
.casinos {
  padding: 4rem 0;
}

.advertising-notice {
  text-align: center;
  margin-bottom: 3rem;
  color: #e0e0e0;
}

.advertising-notice p {
  margin-bottom: 0.5rem;
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.casino-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.casino-logo {
  margin-bottom: 1.5rem;
}

.casino-logo img {
  max-width: 150px;
  height: auto;
}

.casino-bonus {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.bonus-amount {
  color: #ffcc00;
  font-weight: 700;
  font-size: 1.3rem;
}

.casino-rating {
  margin-bottom: 2rem;
}

.rating-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.stars {
  margin-top: 0.5rem;
}

.star {
  color: #ffcc00;
  font-size: 1.2rem;
}

.star.half {
  position: relative;
}

.star.half::after {
  content: "★";
  position: absolute;
  left: 0;
  color: #666;
  width: 50%;
  overflow: hidden;
}

.casino-btn {
  background: #ffcc00;
  color: #000;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.casino-btn:hover {
  background: #e6b800;
  transform: scale(1.05);
}

/* Content Sections */
.about,
.regulated,
.bonuses,
.recommendations,
.criteria,
.confidence {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about h2,
.regulated h2,
.bonuses h2,
.recommendations h2,
.criteria h2,
.confidence h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.about p,
.regulated p,
.bonuses p,
.recommendations p,
.confidence p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
}

.criteria-list {
  list-style: none;
  padding-left: 0;
}

.criteria-list li {
  padding: 0.5rem 0;
  color: #e0e0e0;
  font-size: 1.1rem;
  position: relative;
  padding-left: 2rem;
}

.criteria-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffcc00;
  font-weight: bold;
}

/* Contact Form */
.contact-form {
  padding: 4rem 0;
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
}

.form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffcc00;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ccc;
}

.submit-btn {
  background: #ffcc00;
  color: #000;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #e6b800;
}

/* Footer */
.footer {
  background: rgba(26, 26, 46, 0.9);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  text-align: center;
}

.footer-disclaimer {
  margin-bottom: 2rem;
}

.footer-disclaimer p {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-links {
  margin-bottom: 2rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logos img {
  max-width: 200px;
  height: auto;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.footer-logos img:hover {
  filter: brightness(1);
}

.footer-copyright {
  color: #999;
  font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  padding: 2rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.cookie-content p {
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-accept {
  background: #ffcc00;
  color: #000;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-accept:hover {
  background: #e6b800;
}

.cookie-info {
  background: transparent;
  color: #ffffff;
  padding: 1rem 2rem;
  border: 2px solid #ffffff;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-info:hover {
  background: #ffffff;
  color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }

  .burger-menu {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .casino-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-links a {
    display: block;
    margin: 0.5rem 0;
  }

  .footer-logos {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-accept,
  .cookie-info {
    width: 100%;
    text-align: center;
  }

  .warning-banner {
    font-size: 12px;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .feature {
    padding: 1.5rem;
  }

  .casino-card {
    padding: 1.5rem;
  }

  .about,
  .regulated,
  .bonuses,
  .recommendations,
  .criteria,
  .confidence {
    padding: 2rem 0;
  }

  .about h2,
  .regulated h2,
  .bonuses h2,
  .recommendations h2,
  .criteria h2,
  .confidence h2 {
    font-size: 1.5rem;
  }

  .contact-form {
    padding: 2rem 0;
  }

  .cookie-popup {
    padding: 1rem;
  }

  .footer {
    padding: 2rem 0 1rem;
  }
}
