/* ======= Google Fonts ======= */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Roboto:wght@400;500;700&display=swap');

/* ======= Reset ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: 'Roboto', sans-serif;
  background: #fef9f5;
  color: #0b1f3a;
  line-height: 1.6;
}
h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
  color: #0b1f3a;
  text-shadow: 1px 1px 0 #f3c96b;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ======= Container ======= */
.container, .cuar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ======= Header ======= */
.cuar-header {
  background: #0b1f3a;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.cuar-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.cuar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.cuar-logo:hover { opacity: 0.8; }
.cuar-logo img {
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
.cuar-logo:hover img { transform: rotate(8deg) scale(1.05); }
.cuar-logo-text {
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 1px;
}
.cuar-logo-text i { opacity: 0.8; font-style: normal; }
.cuar-logo-text em {
  font-weight: 800;
  background: linear-gradient(90deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ======= Navigation ======= */
.cuar-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
.cuar-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: .5px;
  position: relative;
  transition: color .3s;
  color: #e0e8f5;
}
.cuar-nav a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  width: 0%; height: 2px;
  background: #fff;
  transition: width .3s ease;
}
.cuar-nav a:hover::after, .cuar-nav a.active::after { width: 100%; }
.cuar-nav a:hover { color: #fff; }

/* ======= Burger ======= */
.cuar-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 200;
}
.cuar-burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.5s cubic-bezier(0.77,0.2,0.05,1);
  transform-origin: center;
}
.cuar-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 7px);
}

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

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

/* ======= Hero Section ======= */
.cuar-hero-creative {
  background: linear-gradient(135deg, #e0e8f5, #a1b2d7);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cuar-hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.cuar-hero-left {
  flex: 1 1 500px;
}

.cuar-hero-right {
  flex: 1 1 400px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  backdrop-filter: blur(8px);
}

.cuar-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cuar-benefits-list li {
  font-size: 1rem;
  font-weight: 500;
  color: #0e1f4a;
  position: relative;
  padding-left: 28px;
  
}

.cuar-benefits-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 1.2rem;
}

.cuar-hero-left h1 {
  font-size: 2.8rem;
  color: #1e3a8a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cuar-hero-left p {
  font-size: 1.1rem;
  color: #0e1f4a;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Hero buttons */
.cuar-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cuar-btn-primary {
  background: #1e3a8a;
  color: #fff;
  padding: 12px 25px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
}
.cuar-btn-primary:hover {
  background: #2e4bbf;
}

.cuar-btn-outline {
  border: 2px solid #c0c6d9;
  color: #1e3a8a;
  padding: 12px 25px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
}
.cuar-btn-outline:hover {
  background: rgba(192,198,217,0.2);
}
/* ======= Buttons ======= */
.cuar-btn {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.cuar-btn-primary {
  background: linear-gradient(90deg, #fff 0%, #ccc 100%);
  color: #000;
  box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}
.cuar-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(255,255,255,0.4); }
.cuar-btn-outline {
  border: 2px solid #fff; background: transparent; color: #fff;
}
.cuar-btn-outline:hover { background: #fff; color: #000; transform: translateY(-3px); }

/* ======= Offers Section ======= */
.cuar-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

/* Карточка Bwin */
.cuar-offer-card-bwin {
  background: linear-gradient(145deg, #1e3a8a, #a1b0c9);
  border-radius: 25px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cuar-offer-card-bwin::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255,255,255,0.05);
  transform: rotate(45deg);
  pointer-events: none;
}

/* Hover эффект */
.cuar-offer-card-bwin:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

/* Header */
.cuar-offer-header {
  text-align: center;
  margin-bottom: 15px;
}

.cuar-offer-logo {
  max-width: 120px;
  transition: transform 0.3s ease;
}

.cuar-offer-card-bwin:hover .cuar-offer-logo {
  transform: scale(1.1);
}

/* Body */
.cuar-offer-title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
}

.cuar-subtitle {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 15px;
}

/* Features */
.cuar-features {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.cuar-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.cuar-icon {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Payments */
.cuar-payment {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Footer */
.cuar-offer-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.cuar-rating{
  margin-right: 30px;
}
.cuar-stars {
  color: #f1c40f;
  font-size: 1.1rem;
  
}

.cuar-score {
  font-weight: 700;
  margin-left: 5px;
}

.cuar-btn {
  background: #f1c40f;
  color: #1e3a8a;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cuar-btn:hover {
  background: #e67e22;
}

.cuar-responsible-parallax {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
}

/* Фоновое изображение с параллакс эффектом */
.cuar-responsible-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/responsible-bg.jpg') center/cover no-repeat;
  transform: translateZ(0);
  will-change: transform;
  transition: transform 0.3s ease-out;
  z-index: 1;
}
.cuar-age-popup {
  position: fixed;
  inset: 0;
  background: rgba(30, 58, 138, 0.85);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cuar-age-popup.active {
  opacity: 1;
  pointer-events: all;
}

.cuar-age-card {
  background: #1e3a8a;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 450px;
  color: #fff;
  box-shadow: 0 15px 50px rgba(0,0,0,0.4);
  position: relative;
}

.cuar-age-card h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #c0c6d9;
}
.age18-page {
  background-color: #f5f7fa; /* светлый фон для контраста */
  padding: 60px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  color: #0b1f3a;
}

.age18-page .cuar-container {
  max-width: 900px;
  margin: 0 auto;
}

.age18-page h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c0392b; /* акцентный красный для важности */
  margin-bottom: 30px;
}

.age18-page p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.age18-page a {
  color: #2980b9;
  text-decoration: underline;
}

.age18-page a:hover {
  color: #1c5980;
}

/* Для кнопок или ссылок к ресурсам */
.age18-page .cuar-btn {
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.age18-page .cuar-btn-primary {
  background-color: #c0392b;
  color: #fff;
  border: none;
}

.age18-page .cuar-btn-primary:hover {
  background-color: #a83224;
}

.age18-page .cuar-btn-outline {
  background-color: transparent;
  color: #c0392b;
  border: 2px solid #c0392b;
}

.age18-page .cuar-btn-outline:hover {
  background-color: #c0392b;
  color: #fff;
}
.cuar-age-card p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cuar-age-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.cuar-age-close:hover {
  transform: rotate(90deg);
}

.cuar-age-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cuar-btn-primary {
  background: #ffd700;
  color: #1e3a8a;
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s;
}

.cuar-btn-primary:hover {
  background: #e6c200;
}

.cuar-btn-outline {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  padding: 12px 25px;
  border-radius: 12px;
  transition: all 0.3s;
}

.cuar-btn-outline:hover {
  background: #fff;
  color: #1e3a8a;
}
/* Полупрозрачный градиентный слой */
.cuar-responsible-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 58, 138, 0.6); /* серебристо-синий градиент */
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0 20px;
  text-align: center;
}

/* Контент */
.cuar-responsible-content {
  max-width: 600px;
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
}

/* Анимация появления */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.cuar-responsible-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffd700; /* золотой акцент */
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.cuar-responsible-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.cuar-btn-responsible {
  padding: 12px 30px;
  background: linear-gradient(90deg, #c0c6d9, #1e3a8a);
  color: #ffffff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cuar-btn-responsible:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}
section {
  padding: 5% 0;
}

.cuar-about {
  padding: 80px 0;
  background: #f5f7fa;
}

.cuar-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.cuar-about-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.cuar-about-row.cuar-reverse {
  flex-direction: row-reverse;
}

.cuar-about-text {
  flex: 1;
  min-width: 300px;
}

.cuar-about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1e3a8a;
}

.cuar-about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.cuar-about-img {
  flex: 1;
  min-width: 300px;
}

.cuar-about-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.cuar-faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}
.cuar-offers .cuar-title {
  color: #000;
}
.cuar-faq-grid {
  display: grid;
  gap: 20px;
}

/* Карточка FAQ */
.cuar-faq-vertical {
  padding: 80px 0;
  background: #f0f4fa;
}

.cuar-faq-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 50px;
  color: #1e3a8a;
}

.cuar-faq-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cuar-faq-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s;
}

.cuar-faq-card:hover {
  transform: translateY(-5px);
}

.cuar-faq-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  cursor: default;
}

.cuar-faq-icon {
  font-size: 1.8rem;
}

.cuar-faq-card-body {
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}
.cuar-guide-modern {
  background: #f0f4fa;
  padding: 80px 0;
  font-family: "Inter", sans-serif;
  color: #1e3a8a;
}

.cuar-guide-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
  font-size: 1.1rem;
  color: #4b5563;
}

.cuar-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.cuar-guide-block {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px 30px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.07);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cuar-guide-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.cuar-step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #c0c6d9;
  color: #1e3a8a;
  font-weight: bold;
  font-size: 1.2rem;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.cuar-guide-block h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.cuar-guide-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
}

.cuar-final {
  grid-column: span 2;
  background: #e5e7eb;
  text-align: center;
}

.cuar-checklist {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.cuar-checklist li {
  position: relative;
  text-align: left;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #1e3a8a;
}

.cuar-checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c0c6d9;
  font-weight: bold;
}
.cuar-footer {
  background: linear-gradient(180deg, #1e2a38, #283a50);
  color: #c0c6d9;
  padding: 60px 20px 30px;
  font-family: 'Inter', sans-serif;
}

.cuar-footer a {
  color: #c0c6d9;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cuar-footer a:hover {
  color: #ffffff;
}

.cuar-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.cuar-footer-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffffff;
}

.cuar-footer-text p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
}

.cuar-btn.cuar-btn-primary {
  background-color: #c0c6d9;
  color: #1e2a38;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cuar-btn.cuar-btn-primary:hover {
  background-color: #ffffff;
  color: #1e2a38;
}

/* Seals / Parceiros */
.cuar-footer-seals h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.cuar-footer-seals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.cuar-footer-seals-grid a img.cuar-seal {
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.cuar-footer-seals-grid a img.cuar-seal:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Warning */
.cuar-footer-warning {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  margin: 30px 0;
}

.cuar-footer-warning p {
  font-size: 14px;
  line-height: 1.6;
}

/* Footer Menu */
.cuar-footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 25px;
}

.cuar-footer-menu a {
  font-size: 14px;
  letter-spacing: 0.5px;
}

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

/* Bottom */
.cuar-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #a0a8b8;
}
/* ======= Responsive ======= */
@media(max-width:1024px){
  .cuar-hero-left h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 27px!important;
  }
  .cuar-guide-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .cuar-final {
    grid-column: span 1;
  }
  .cuar-hero-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .cuar-hero-right {
    width: 100%;
    margin-top: 30px;
  }
  .cuar-faq-card-header h3{font-size:17px;}
  .cuar-responsible-parallax{height:500px;}
  .cuar-responsible-content h2{font-size:2rem;}
  .cuar-responsible-content p{font-size:1rem;}
}
@media(max-width:768px){
  .cuar-nav.active ul li:nth-child(1) { transition-delay: 0.05s; }
.cuar-nav.active ul li:nth-child(2) { transition-delay: 0.1s; }
.cuar-nav.active ul li:nth-child(3) { transition-delay: 0.15s; }
.cuar-nav.active ul li:nth-child(4) { transition-delay: 0.2s; }
.cuar-nav.active ul li:nth-child(5) { transition-delay: 0.25s; }

  .cuar-burger { display:flex; }
  .cuar-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(11, 31, 58, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.77,0.2,0.05,1);
  flex-direction: column;
  gap: 30px;
  z-index: 150;
  opacity: 0;
  pointer-events: none;
}
  .cuar-nav.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
  .cuar-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.cuar-nav a:hover {
  color: #f3c96b;
}.cuar-nav ul li {
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.cuar-nav.active ul li {
  transform: translateY(0);
  opacity: 1;
}
.cuar-nav a {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
  .cuar-hero-title { font-size:2.5rem; }
  .cuar-hero-subtitle { font-size:1.1rem; }
}
@media(max-width:576px){
  .btn-bonus{font-size:0.85rem; padding:8px 16px;}
}
