.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;
}

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

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

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

/* Responsible Gaming Banner */
.responsible-banner {
  background-color: #c41e3a;
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Navigation */
.navbar {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  position: sticky;
  top: 44px;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

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

.nav-menu a:hover {
  color: #00d4aa;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #00d4aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Poker Sites */
.poker-sites .container {
  padding-block: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

@media (min-width: 1200px) {
  .poker-sites .container {
    padding-block: 96px 48px;
  }
}

.poker-site {
  background: linear-gradient(
    135deg,
    rgba(45, 45, 75, 0.9) 0%,
    rgba(35, 35, 65, 0.9) 100%
  );
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.site-header {
  text-align: center;
  margin-bottom: 25px;
}

.site-header img {
  height: 36px;
}

.site-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.terms {
  font-size: 0.9rem;
  color: #aaaaaa;
  margin-bottom: 25px;
}

.rating-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.rating-label,
.score-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #cccccc;
}

.stars {
  display: flex;
  gap: 2px;
}

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

.star.half {
  background: linear-gradient(90deg, #ffd700 50%, #666 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.score-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.score {
  font-size: 2rem;
  font-weight: 800;
  color: #00d4aa;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, #c41e3a 0%, #a01729 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #00d4aa 0%, #009688 100%);
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 212, 170, 0.4);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-outline:hover {
  background: #ffffff;
  color: #1a1a2e;
}

/* Guide Section */
.guide {
  padding: 100px 0;
  background: linear-gradient(135deg, #2d2d4b 0%, #1a1a2e 100%);
}

.guide h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
}

.guide-item {
  margin-bottom: 40px;
}

.guide-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #00d4aa;
}

.guide-item p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.testimonials h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial {
  background: linear-gradient(
    135deg,
    rgba(45, 45, 75, 0.9) 0%,
    rgba(35, 35, 65, 0.9) 100%
  );
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial .stars {
  margin-bottom: 15px;
}

.testimonial h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #00d4aa;
}

.testimonial p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
}

/* Contact Form */
.contact-form {
  padding: 100px 0;
  background: linear-gradient(135deg, #2d2d4b 0%, #1a1a2e 100%);
}

.contact-form h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
}

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

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #ffffff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00d4aa;
  box-shadow: 0 0 0 2px rgba(0, 212, 170, 0.2);
}

/* Footer */
.footer {
  background: #0f0f23;
  padding: 60px 0 30px;
}

.responsible-gaming {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #404f63;
}

.age-restriction {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .age-restriction {
    align-items: center;
  }
}

.age-icon {
  background: #c41e3a;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.responsible-text h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.responsible-text p {
  color: #cccccc;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid #404f63;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #404f63;
}

.footer-logos img {
  height: 40px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-logos img:hover {
  opacity: 1;
}

.copyright {
  text-align: center;
  padding-top: 30px;
}

.copyright p {
  color: #888888;
  font-size: 0.9rem;
}

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

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

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

.cookie-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.cookie-content p {
  color: #cccccc;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 84px;
    flex-direction: column;
    background: rgba(26, 26, 46, 0.98);
    width: 100%;
    height: calc(100vh - 84px);
    text-align: center;
    transition: 0.3s;
    padding: 50px 0;
    gap: 20px;
  }

  .nav-menu.active {
    left: 0;
  }

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

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .poker-sites .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .poker-site {
    min-width: auto;
  }

  .guide h2,
  .testimonials h2,
  .contact-form h2 {
    font-size: 2rem;
  }

  .age-restriction {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .footer-logos {
    gap: 20px;
  }

  .footer-logos img {
    height: 30px;
  }

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

  .cookie-buttons .btn {
    width: 100%;
  }
}

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

  .responsible-banner {
    font-size: 12px;
    padding: 10px 15px;
  }

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

  .poker-site {
    padding: 20px;
  }

  .guide,
  .testimonials,
  .contact-form {
    padding: 60px 0;
  }

  .guide h2,
  .testimonials h2,
  .contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .testimonial {
    padding: 20px;
  }
}

/* Additional animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.poker-site {
  animation: fadeInUp 0.6s ease forwards;
}

.poker-site:nth-child(2) {
  animation-delay: 0.2s;
}

.header {
  padding-block: 12px;

  background-color: #b30017;
}

@media (min-width: 1200px) {
  .header {
    padding-block: 23px;
  }
}

.header__title {
  font-family: Montserrat;
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;

  color: #fff;

  margin-bottom: 12px;
}
.header__path {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__path span {
  font-family: Montserrat;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;

  line-height: 140%;
  letter-spacing: 0%;

  color: #fff;
}

.policy__disclaimer {
  margin-bottom: 40px;
}