/* Reset & Base */
* {margin:0;padding:0;box-sizing:border-box;font-family:'Inter',sans-serif;}
body.vuu-body {background:#1f1f2f;color:#fff;line-height:1.6;scroll-behavior:smooth;}
a {text-decoration:none;color:inherit;}
.vuu-container {width:90%;max-width:1200px;margin:0 auto;}

/* Header */
.vuu-header {position:fixed;width:100%;top:0;left:0;background:rgba(31,34,51,0.85);backdrop-filter:blur(10px);z-index:999;transition:0.3s;}
.vuu-header-inner {display:flex;justify-content:space-between;align-items:center;padding:15px 0;}
.vuu-logo {font-weight:700;font-size:1.5rem;color:#ffd84d;}
.vuu-nav ul {display:flex;gap:25px;list-style:none;}
.vuu-nav ul li a {color:#fff;font-weight:500;transition:0.3s;}
.vuu-nav ul li a:hover {color:#ffd84d;}
.vuu-burger {display:none;flex-direction:column;gap:4px;cursor:pointer;}
.vuu-burger span {height:3px;width:25px;background:#fff;border-radius:2px;transition:0.4s;}
.vuu-burger.vuu-active span:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
.vuu-burger.vuu-active span:nth-child(2){opacity:0;}
.vuu-burger.vuu-active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px);}
.vuu-nav ul.vuu-open {
  display: flex;           /* обязательно */
  flex-direction: column;
  position: absolute;
  top: 120px;
  right: 20px;
  background: rgba(31,34,51,0.95);
  padding: 15px;
  border-radius: 8px;
  gap: 15px;
  z-index: 998;            /* чтобы меню было поверх */
}
.vuu-nav ul {
  transition: all 0.3s ease;
}
/* Hero */
.vuu-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.vuu-hero-bg {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  filter: brightness(0.5) blur(3px);
  z-index: 0;
  transform: scale(1.05);
}

.vuu-hero-overlay {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: linear-gradient(135deg, rgba(29,27,59,0.6), rgba(44,46,95,0.6));
  z-index: 1;
}

.vuu-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease forwards;
}

.vuu-hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffd84d, #12d1b1, #ffd84d);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientShift 3s ease infinite;
}

.vuu-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ddd;
  line-height: 1.5;
}

.vuu-hero-btn {
  display: inline-block;
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  color: #0a3a36;
  background: linear-gradient(135deg,#ffd84d,#12d1b1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.vuu-hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* Animated floating shapes */
.vuu-hero-animated-shapes span {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  background: rgba(255,216,77,0.2);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.vuu-hero-animated-shapes span:nth-child(1){left:10%; animation-delay:0s;}
.vuu-hero-animated-shapes span:nth-child(2){left:25%; animation-delay:1.5s;}
.vuu-hero-animated-shapes span:nth-child(3){left:50%; animation-delay:0.5s;}
.vuu-hero-animated-shapes span:nth-child(4){left:70%; animation-delay:2s;}
.vuu-hero-animated-shapes span:nth-child(5){left:85%; animation-delay:1s;}

@keyframes float {
  0%,100% {transform: translateY(0) rotate(0deg);}
  50% {transform: translateY(-40px) rotate(45deg);}
}
@keyframes fadeInUp {
  0 {opacity:0; transform:translateY(40px);}
  100 {opacity:1; transform:translateY(0);}
}
@keyframes gradientShift {
  0% {background-position:0% 50%;}
  50% {background-position:100% 50%;}
  100% {background-position:0% 50%;}
}
/* Features */
.vuu-casino-features {padding:80px 0;background:linear-gradient(135deg,#1f2233,#2e3160);}
.vuu-casino-features .vuu-section-title {
  text-align:center;
  font-size:2.5rem;
  color:#ffd84d;
  margin-bottom:50px;
  text-shadow:0 2px 8px rgba(0,0,0,0.6);
}

.vuu-features-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

/* Feature Card */
.vuu-feature-card {
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
  border-radius:20px;
  padding:25px;
  text-align:center;
  color:#fff;
  box-shadow:0 15px 30px rgba(0,0,0,0.35);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  position:relative;
  overflow:hidden;
}

.vuu-feature-card::before {
  content:"";
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:radial-gradient(circle at center, rgba(255,216,77,0.15), transparent 70%);
  transform:scale(0);
  transition: transform 0.5s;
  z-index:0;
  border-radius:50%;
}

.vuu-feature-card:hover::before {transform:scale(1);}

.vuu-feature-card:hover {
  transform:translateY(-5px);
  box-shadow:0 25px 45px rgba(0,0,0,0.5);
  background:rgba(255,255,255,0.08);
}

.vuu-feature-icon {
  font-size:3rem;
  margin-bottom:15px;
  position:relative;
  z-index:1;
  animation: bounce 2s infinite;
}

.vuu-feature-card h3 {
  font-size:1.5rem;
  margin-bottom:10px;
  color:#ffd84d;
  position:relative;
  z-index:1;
}

.vuu-feature-card p {
  font-size:0.95rem;
  color:#fff;
  line-height:1.6;
  position:relative;
  z-index:1;
}

/* Bounce animation for icons */
@keyframes bounce {
  0%,100% {transform: translateY(0);}
  50% {transform: translateY(-8px);}
}


/* Offers */
.vuu-offers {padding:60px 0;background:linear-gradient(135deg,#1f2233,#2e3160);}
.vuu-offers .vuu-container {max-width:1200px;margin:0 auto;}

/* Offer Card */
.vuu-offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #2a2c44, #1f2233);
  border-radius: 16px;
  overflow: hidden;
  padding: 20px;
  margin: 30px 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

.vuu-offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.vuu-offer-accent {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg,#ffd84d,#12d1b1);
}

.vuu-offer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}

.vuu-offer-left, .vuu-offer-center, .vuu-offer-right {
  flex: 1 1 250px;
}

.vuu-offer-logo-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.vuu-offer-logo-bg {
  position: absolute;
  top: -10px; left: -10px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, rgba(255,216,77,0.2), rgba(18,209,177,0.2));
  border-radius: 50%;
  z-index: 0;
  animation: pulse 3s infinite ease-in-out;
}

.vuu-offer-logo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.1);
  z-index: 1;
}

.vuu-offer-title-rating h3 {
  margin: 0 0 6px 0;
  font-size: 1.4rem;
  color: #ffd84d;
}

.vuu-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
}

.vuu-rating span {
  margin-left: 6px;
  font-weight: 600;
  color: #fff;
}

.vuu-offer-center p {
  color: #ccc;
  line-height: 1.5;
}

.vuu-warning {
  font-size: 0.8rem;
  color: #ff6b6b;
  margin-top: 6px;
}

.vuu-offer-right h4 {
  color: #ffd84d;
  margin-bottom: 10px;
}

.vuu-payments ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vuu-payments ul li {
  background: rgba(18,209,177,0.15);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
  color: #fff;
}

.vuu-bonus .vuu-btn {
  display: inline-block;
  margin-top: 10px;
  width: 100%;
  padding: 12px 0;
  border-radius: 12px;
  font-weight: 600;
  color: #0a3a36;
  background: linear-gradient(135deg,#ffd84d,#12d1b1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.vuu-bonus .vuu-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.vuu-terms {
  margin-top: 6px;
  font-size: 0.75rem;
  color: #aaa;
}

/* Анимация фонового круга */
@keyframes pulse {
  0%, 100% {transform: scale(1);}
  50% {transform: scale(1.15);}
}

/* Декоративные фигуры */
.vuu-offer-shapes span {
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  background: rgba(255,216,77,0.2);
  border-radius: 50%;
  animation: floatShapes 6s ease-in-out infinite;
}

.vuu-offer-shapes span:nth-child(1){top:10%; left:15%; animation-delay:0s;}
.vuu-offer-shapes span:nth-child(2){top:30%; left:80%; animation-delay:1s;}
.vuu-offer-shapes span:nth-child(3){top:60%; left:40%; animation-delay:2s;}

@keyframes floatShapes {
  0%,100% {transform: translateY(0);}
  50% {transform: translateY(-20px);}
}

/* Left Block */
.vuu-offer-left {flex:2;display:flex;flex-direction:column;gap:15px;}
.vuu-offer-logo {background:linear-gradient(135deg, rgba(255,216,77,0.18), rgba(18,209,177,0.18)); padding:12px; border-radius:16px; display:inline-block; border:1px solid rgba(255,255,255,0.1);}
.vuu-offer-logo img {height:60px;width:auto;border-radius:10px;background:#fff;padding:6px;border:1px solid rgba(0,0,0,0.1);}
.vuu-offer-meta h3 {color:#ffd84d;font-size:1.5rem;margin-bottom:6px;}
.vuu-rating {color:#ffd84d;font-weight:600;display:flex;align-items:center;margin-bottom:8px;}
.vuu-rating i{margin-right:3px;}
.vuu-rating span{color:#fff;margin-left:6px;font-weight:500;}
.vuu-offer-meta p{color:#fff;font-size:0.9rem;line-height:1.4;}
.vuu-warning{font-size:0.8rem;color:#ff6b6b;margin-top:6px;}

/* Right Block */
.vuu-offer-right {flex:1;background:rgba(0,0,0,0.6);padding:20px;border-radius:16px;display:flex;flex-direction:column;justify-content:space-between;backdrop-filter:blur(8px);}
.vuu-payments h4, .vuu-bonus h4{color:#ffd84d;margin-bottom:10px;}
.vuu-payments ul{list-style:none;display:flex;flex-wrap:wrap;gap:6px;padding:0;margin:0;color:#fff;font-size:.85rem;}
.vuu-payments ul li{background:linear-gradient(90deg, rgba(18,209,177,0.2), rgba(255,216,77,0.2));border:1px solid rgba(18,209,177,0.3);padding:5px 10px;border-radius:999px;}

/* Bonus Button */
.vuu-btn{display:inline-block;width:100%;text-align:center;padding:12px 0;background:linear-gradient(135deg,#ffd84d,#12d1b1);color:#0a3a36;font-weight:600;border-radius:12px;transition:0.3s;}
.vuu-btn:hover{opacity:0.9;transform:scale(1.03);}
.vuu-terms{color:#aaa;font-size:0.75rem;margin-top:6px;}

/* About */
.vuu-about {
  padding: 100px 0;
  background: linear-gradient(135deg, #1f2233, #2e3160);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.vuu-about-header h2 {
  font-size: 2.5rem;
  color: #ffd84d;
  margin-bottom: 15px;
}

.vuu-about-lead {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 720px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.vuu-about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.vuu-about-text {
  flex: 1 1 400px;
}

.vuu-about-text p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #e0e0e0;
}

.vuu-about-features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
}

.vuu-about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #f0f0f5;
  background: rgba(255,255,255,0.05);
  padding: 12px 16px;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.vuu-about-features li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.vuu-about-visual {
  flex: 1 1 400px;
  position: relative;
}

.vuu-about-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.4);
  transition: transform 0.4s, box-shadow 0.4s;
}

.vuu-about-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.vuu-about-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.vuu-about-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  color: #ffd84d;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

.vuu-about-cta {
  margin-top: 60px;
}

.vuu-about-cta .vuu-btn {
  padding: 14px 30px;
  font-weight: 600;
  background: linear-gradient(135deg, #ffd84d, #12d1b1);
  color: #1f2233;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.vuu-about-cta .vuu-btn:hover {
  opacity: 0.85;
}
/* FAQ */
.vuu-faq {padding:80px 0;background:#121229;}
.vuu-faq-item {margin-bottom:20px;border-radius:12px;overflow:hidden;box-shadow:0 8px 20px rgba(0,0,0,0.3);}
.vuu-faq-question {width:100%;padding:15px 20px;background:linear-gradient(90deg,#12d1b1,#ffd84d);color:#0a3a36;font-weight:600;display:flex;justify-content:space-between;align-items:center;cursor:pointer;border:none;font-size:1rem;transition:0.3s;}
.vuu-faq-question:hover {background:linear-gradient(90deg,#ffd84d,#12d1b1);color:#fff;}
.vuu-faq-answer {max-height:0;overflow:hidden;background:#1f2233;color:#e0e0e0;padding:0 20px;transition:max-height 0.4s ease,padding 0.4s ease;}
.vuu-faq-item.active .vuu-faq-answer {padding:15px 20px;max-height:500px;}
.vuu-faq-question span {transition:0.3s;}
.vuu-faq-item.active .vuu-faq-question span {transform:rotate(45deg);color:#ffd84d;}

/* Footer */
.vuu-footer {
  background: rgba(31,34,51,0.85);
  color: #fff;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
}

.vuu-footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.vuu-footer a:hover {
  color: #000;
}

.vuu-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.vuu-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.4rem;
}

.vuu-footer-age {
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 8px;
}

.vuu-footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.vuu-footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vuu-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vuu-footer-column ul li {
  margin-bottom: 6px;
}

.vuu-footer-seals {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.vuu-seal {
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.vuu-seal:hover {
  transform: scale(1.1);
}

.vuu-footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}
.top-banner {    background-color: #12d1b1;
    color: #333;
    text-align: center;
    font-size: 14px;
    padding: 5px 0;
}
.vuu-responsible {
  background: linear-gradient(135deg, #1e3a8a, #12d1b1);
  color: #fff;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

.vuu-responsible .vuu-section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ffd700, #12d1b1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vuu-responsible .vuu-lead {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px auto;
  text-align: center;
  line-height: 1.6;
  opacity: 0.9;
}

/* Сетка блоков */
.vuu-responsible-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Блоки контента */
.vuu-block {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vuu-block h3 {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.vuu-block ul {
  padding-left: 20px;
  list-style-type: disc;
  line-height: 1.6;
}

.vuu-block a {
  color: #12d1b1;
  text-decoration: underline;
  transition: color 0.3s;
}

.vuu-block a:hover {
  color: #ffd700;
}

/* Hover эффекты */
.vuu-block:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Последний блок на всю ширину */
.vuu-block:last-child {
  grid-column: 1 / -1;
}
.vuu-responsible {
    padding-top: 200px;
  }
/* Animations */
@keyframes fadeUp{0%{opacity:0;transform:translateY(20px);}100%{opacity:1;transform:translateY(0);}}
@media(max-width: 900px){
  
  .vuu-responsible .vuu-section-title {
    font-size: 2rem;
  }

  .vuu-responsible .vuu-lead {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .vuu-about-content {
    flex-direction: column;
  }
  .vuu-about-features {
    grid-template-columns: 1fr;
  }
  .vuu-offer-inner{
    flex-direction: column;
    align-items: center;
  }
  .vuu-offer-left, .vuu-offer-center, .vuu-offer-right{
    width: 100%;
  }
}
@media(max-width:768px){
  .vuu-features-grid{grid-template-columns:1fr;}
  .vuu-casino-features .vuu-section-title{font-size:2rem;}
  .vuu-nav ul{display:none;}
  .vuu-burger{display:flex;}
  .vuu-features-grid,.vuu-offers-grid{grid-template-columns:1fr;}
  .vuu-hero h1{font-size:2rem;}
  .vuu-hero p{text-align:center;}
}
