.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: "Rubik", sans-serif;
  background: linear-gradient(135deg, #1a1b47 0%, #2d1b69 50%, #4a1b6b 100%);
  color: white;
  line-height: 1.6;
  min-height: 100vh;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 27, 71, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;

}
.nav-logo span {
  font-family: Rubik;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;

  color: #fff;
}

.logo {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff6b35;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

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

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: url("../img/bg-1.png") center / cover no-repeat;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 500px;
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.hero-graphics {
  position: relative;
  text-align: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Floating elements */
.hero::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 60px;
  height: 80px;
  background: linear-gradient(45deg, #ff6b35, #ff8c42);
  border-radius: 8px;
  transform: rotate(15deg);
  opacity: 0.8;
}

.hero::after {
  content: "";
  position: absolute;
  top: 60%;
  right: 20%;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #8b5cf6, #a855f7);
  border-radius: 50%;
  opacity: 0.7;
}

/* Casinos Section */
.casinos {
  padding: 80px 0;
}

.casinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

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

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

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

.casino-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.casino-name.winamax {
  color: #ff4757;
}

.casino-name.netbet {
  color: #ddd;
}

.stars {
  color: #10b981;
  font-size: 1.2rem;
}

.pmu-sport {
  background: linear-gradient(45deg, #ff6b35, #ff8c42);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
}

.casino-offer {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.offer-text {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
}

.offer-amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b35;
  margin: 0.5rem 0;
}

.casino-features {
  list-style: none;
  margin-bottom: 2rem;
}

.casino-features li {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.casino-features li::before {
  content: "• ";
  color: #ff6b35;
  font-weight: bold;
}

.casino-btn {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b35, #ff8c42);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.casino-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* About Section */
.about {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.about-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

.about-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ff6b35;
}

.about-card-text {
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.about-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.about-link:hover {
  color: #ff8c42;
}

/* Guide Section */
.guide {
  padding: 80px 0;
}

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

.guide-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

.guide-step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.guide-step-text {
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.guide-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.guide-link:hover {
  color: #ff8c42;
}

/* Contact Form */
.contact {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: "Rubik", sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-submit {
  background: linear-gradient(45deg, #ff6b35, #ff8c42);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

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

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

.footer-warning {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
  text-align: left;
  padding-bottom: 24px;
  border-bottom: 1px solid #FFFFFF4D;
}

.age-restriction {
  flex-shrink: 0;
}

.age-icon {
  display: inline-block;
  background: #dc2626;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.footer-text {
  flex-grow: 1;
}

.footer-text p {
  margin-bottom: 1rem;
  opacity: 0.9;
  line-height: 1.6;
}

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

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-copyright {
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 27, 71, 0.98);
  backdrop-filter: blur(10px);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

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

.cookie-content p {
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: "Rubik", sans-serif;
}

.cookie-btn.accept {
  background: linear-gradient(45deg, #ff6b35, #ff8c42);
  color: white;
}

.cookie-btn.info {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 27, 71, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

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

  .nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

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

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

  .about-grid,
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-warning {
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cookie-btn {
    width: 100%;
    max-width: 300px;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }

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

  .section-title {
    font-size: 1.8rem;
  }

  .casinos,
  .about,
  .guide,
  .contact {
    padding: 60px 0;
  }

  .casino-card,
  .about-card,
  .guide-step {
    padding: 1.5rem;
  }

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

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

.casino-card,
.about-card,
.guide-step {
  animation: fadeInUp 0.6s ease forwards;
}

.casino-card:nth-child(2) {
  animation-delay: 0.1s;
}

.casino-card:nth-child(3) {
  animation-delay: 0.2s;
}

.casino-card:nth-child(4) {
  animation-delay: 0.3s;
}

.casino-logo {
  width: 60%;
}