:root{
  --bg:#ffffff;
  --fg:#0c1222;
  --muted:#5d6b85;
  --brand:#2563eb;
  --brand-600:#1d4ed8;
  --brand-700:#1e40af;
  --card:#f6f8ff;
  --accent-1:#3b82f6;
  --accent-2:#8b5cf6;
  --accent-3:#06b6d4;
  --accent-4:#f59e0b;
  --accent-5:#ef4444;
  --accent-6:#10b981;
}

*{box-sizing:border-box}
html,body,#root{height:100%}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  color:var(--fg);
  min-height:100svh;
  position:relative;
  background: linear-gradient(135deg, #f8fbff 0%, #f0f8ff 20%, #eef7ff 40%, #f2f9ff 60%, #f6fbff 80%, #f8fbff 100%);
  overflow-x: hidden;
  overflow-y: visible;
}

/* Декоративные фоновые элементы */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(139, 92, 246, 0.03) 0%, transparent 60%),
    radial-gradient(circle at 40% 70%, rgba(6, 182, 212, 0.025) 0%, transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.02) 0%, transparent 60%);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 10% 10%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 90%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.03) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}


a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(59, 130, 246, 0.08),
    0 2px 16px rgba(139, 92, 246, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  z-index: 1;
}

.header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    transparent 30%, 
    transparent 70%, 
    rgba(255, 255, 255, 0.05) 100%);
  z-index: 0;
  pointer-events: none;
}

.header .container {
  padding: 16px 24px;
  position: relative;
  z-index: 2;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'Helvetica', 'Arial', sans-serif;
  font-weight: bold;
  font-size: 32px;
  color: var(--fg);
}

.logo-text {
  color: var(--fg);
}

.logo-dot {
  color: var(--brand);
  margin-left: 2px;
}

.nav-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-btn {
  background: transparent;
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--fg);
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  transition: left 0.5s;
  z-index: 1;
  pointer-events: none;
}

.nav-btn:hover::before {
  left: 100%;
}

.nav-btn:hover {
  background: rgba(37, 99, 235, 0.05);
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.2),
    0 8px 32px rgba(59, 130, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  z-index: 1;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: all 0.2s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.modal-body {
  padding: 0 24px 24px;
}

.modal-body p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.container{overflow:visible}
.nav{display:flex;align-items:center;justify-content:space-between;padding:16px 0}
.brand{display:none}
.brand-dot{display:none}
.brand-name{display:none}

.hero{
  padding:32px 0;
  margin-top: 80px; /* Отступ для фиксированного хедера */
}


.hero .content{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:32px;
  align-items:center;
  position: relative;
  z-index: 1;
}

.hero-left h1{
  font-size:44px;
  line-height:1.1;
  margin:0 0 24px;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 30%, #8b5cf6 70%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.sub{font-size:18px;color:var(--muted);margin-bottom:24px}
.cta{display:flex;gap:16px;flex-wrap:wrap;margin-top:32px}
.btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  border:0;
  border-radius:20px;
  padding:20px 32px;
  font-weight:700;
  font-size:16px;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
  cursor:pointer;
  text-decoration:none;
  min-height: 64px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
  z-index: 1;
  pointer-events: none;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover{
  transform:translateY(-3px) scale(1.02);
}

.btn.appstore{
  background: linear-gradient(135deg, #1d1d1f 0%, #2c2c2e 50%, #1d1d1f 100%);
  color: #ffffff;
  box-shadow: 
    0 4px 14px rgba(0,0,0,0.25),
    0 1px 3px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.btn.appstore::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255,255,255,0.08) 0%, 
    transparent 30%, 
    transparent 70%, 
    rgba(255,255,255,0.03) 100%);
  border-radius: 20px;
  pointer-events: none;
}

.btn.appstore::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255,255,255,0.2) 20%, 
    rgba(255,255,255,0.3) 50%, 
    rgba(255,255,255,0.2) 80%, 
    transparent 100%);
  border-radius: 20px 20px 0 0;
  pointer-events: none;
}

.btn.appstore:hover{
  background: linear-gradient(135deg, #252528 0%, #343437 50%, #252528 100%);
  box-shadow: 
    0 6px 20px rgba(0,0,0,0.3),
    0 2px 6px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255,255,255,0.15);
}

.btn.appstore:hover::before {
  background: linear-gradient(135deg, 
    rgba(255,255,255,0.12) 0%, 
    transparent 30%, 
    transparent 70%, 
    rgba(255,255,255,0.05) 100%);
}

.btn.appstore:hover::after {
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255,255,255,0.25) 20%, 
    rgba(255,255,255,0.4) 50%, 
    rgba(255,255,255,0.25) 80%, 
    transparent 100%);
}

.btn.rustore{
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 50%, #1e40af 100%);
  color:#fff;
  box-shadow:0 12px 35px rgba(37,99,235,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
}

.btn.rustore::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%, rgba(255,255,255,0.03) 100%);
  border-radius: 20px;
  pointer-events: none;
}

.btn.rustore:hover{
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-700) 50%, #1e3a8a 100%);
  box-shadow:0 16px 45px rgba(37,99,235,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-4px) scale(1.03);
}

.btn.tg{
  background: linear-gradient(135deg, #229ED9 0%, #2AABEE 60%, #72d4ff 120%);
  color:#fff;
  box-shadow:0 10px 30px rgba(34,158,217,0.4);
  padding:16px 24px;
  border-radius:18px;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn.tg:hover{
  filter:saturate(1.1) brightness(1.05);
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 15px 40px rgba(34,158,217,0.5);
}
.tg-icon{width:20px;height:20px}
.store-icon{
  width:28px;
  height:28px;
  object-fit: contain;
  filter: brightness(1.1);
  transition: transform 0.3s ease;
}
.btn:hover .store-icon{
  transform: scale(1.1);
}
.phone-frame{
  background: transparent;
  border-radius: 32px;
  padding: 0;
  border: 0;
  max-width: 360px;
  margin: 0 auto;
  position: relative;
}


.phone-inner{
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.phone-inner img{
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
}


.section{
  padding:36px 0;
  border-top:0;
  overflow:visible;
}


/* Remove border line between compact sections */
.section.compact .glass{
  border:0;
  position: relative;
  z-index: 1;
}
.section .content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:center;
  position: relative;
  z-index: 1;
}

.section .phone-frame{max-width:300px}
.hero .phone-frame{max-width:520px}

/* Ensure proper layering */
.hero .glass,
.section .glass {
  position: relative;
  z-index: 1;
}

/* All sections now use glass effect */
.section .container {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border-radius: 24px;
  box-shadow: 
    0 8px 32px rgba(59, 130, 246, 0.08),
    0 2px 16px rgba(139, 92, 246, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.section .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  z-index: 1;
}

.section .container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    transparent 30%, 
    transparent 70%, 
    rgba(255, 255, 255, 0.05) 100%);
  border-radius: 24px;
  z-index: 0;
  pointer-events: none;
}


/* Compact visual variant: shorter block, image crops from bottom and touches edges */
.section.compact{padding:18px 0}
.section.compact .content{gap:16px}
.visual-edge{position:relative;border-radius:20px;overflow:hidden;width:70%;margin:0 auto}
.visual-edge img{display:block;width:100%;height:560px;object-fit:cover;object-position:top center;margin:0}

/* Remove bottom spacing under the image in compact sections */
.section.compact .glass{padding-bottom:0}

/* Liquid Glass Effect */
.glass{
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border-radius: 24px;
  box-shadow: 
    0 8px 32px rgba(59, 130, 246, 0.08),
    0 2px 16px rgba(139, 92, 246, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
  padding: 24px;
  overflow: hidden;
}

.glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  z-index: 1;
}

.glass::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    transparent 30%, 
    transparent 70%, 
    rgba(255, 255, 255, 0.05) 100%);
  border-radius: 24px;
  z-index: 0;
  pointer-events: none;
}

.eyebrow{
  font-weight:700;
  color:var(--brand);
  letter-spacing:.02em;
  margin-bottom:8px;
  text-transform: uppercase;
  font-size: 14px;
}

.h2{
  font-size:30px;
  margin:0 0 10px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.p{
  color:var(--muted);
  font-size:17px;
  line-height: 1.6;
}

.badge-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}

.badge{
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
  color: var(--brand-700);
  padding:8px 14px;
  border-radius:20px;
  font-weight:600;
  font-size:13px;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}


.app-desc{padding:44px 0}
.app-desc h3{font-size:28px;margin:0 0 12px}
.bullet{
  margin:8px 0;
  color:var(--fg);
}

.footer{
  padding:32px 0;
  color:var(--muted);
  font-size:14px;
  border-top:1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  z-index: 1;
}
.footer-links{display:flex;gap:16px;flex-wrap:wrap}
.text-link{
  color:var(--muted);
  background:transparent;
  border:0;
  padding:8px 12px;
  margin:0;
  font:inherit;
  cursor:pointer;
  text-decoration:none;
  border-radius: 8px;
  position: relative;
}

.text-link:hover{
  color:var(--fg);
  background: rgba(255,255,255,0.1);
}



@media (max-width: 960px){
  .hero .content{grid-template-columns:1fr;gap:16px}
  .hero-left h1{font-size:36px}
  .section .content{grid-template-columns:1fr}
  
  /* Hide visuals in compact sections on tablets and small screens */
  .section.compact .visual-edge,
  .section.compact .phone-frame {
    display: none;
  }
  
  /* Header responsive */
  .nav-buttons {
    gap: 16px;
  }
  
  .nav-btn {
    padding: 10px 20px;
    font-size: 15px;
  }
  
  .logo {
    font-size: 28px;
  }
}

@media (max-width: 768px){
  .container{padding:18px}
  .hero-left h1{font-size:28px}
  /* Stack all content vertically on small screens */
  .hero .content, .section .content{display:flex;flex-direction:column;align-items:stretch;gap:12px}
  .hero .content > div, .section .content > div{flex:1 1 0}
  
  /* Make sections more compact on mobile */
  .section {
    padding: 20px 0;
  }
  
  .section .h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .section .p {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .section .eyebrow {
    font-size: 12px;
    margin-bottom: 6px;
  }
  
  .phone-frame{max-width:220px}
  .section .phone-frame{max-width:200px}
  /* Hide visuals completely on mobile for compact sections */
  .section.compact .visual-edge,
  .section.compact .phone-frame {
    display: none;
  }
  /* Buttons and CTAs tighter but keep horizontal */
  .cta{flex-direction:row;gap:12px;flex-wrap:wrap;justify-content:center}
  .btn{
    padding:16px 24px;
    font-size:15px;
    border-radius:16px;
    min-height: 56px;
    justify-content: center;
  }
  .btn.appstore{
    border-radius: 14px;
  }
  .btn.appstore::before,
  .btn.appstore::after {
    border-radius: 14px;
  }
  .btn.appstore::after {
    border-radius: 14px 14px 0 0;
  }
  .store-icon{
    width:24px;
    height:24px;
  }
  /* Telegram block and footer switch to column */
  .section .container.glass{display:flex;flex-direction:column;align-items:stretch;gap:12px;justify-content:initial;padding: 16px}
  .footer .container.glass{display:flex;flex-direction:column;align-items:flex-start;gap:12px;justify-content:initial}
  
  
  
  
  /* Modal mobile */
  .modal-content {
    margin: 20px;
    max-width: none;
  }
  
  .modal-header {
    padding: 20px 20px 0;
  }
  
  .modal-body {
    padding: 0 20px 20px;
  }
}

@media (max-width: 360px){
  .container{padding:16px}
  .hero-left h1{font-size:26px}
  .h2{font-size:26px}
  .p{font-size:16px}
  .hero .content, .section .content{gap:8px}
  .phone-frame{max-width:200px}
  .section .phone-frame{max-width:180px}
}

/* Анимированные фоновые фигуры */
.floating-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.4;
  filter: blur(0px);
  will-change: transform;
}

.shape:nth-child(1) {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(59, 130, 246, 1) 0%, rgba(99, 102, 241, 0.6) 50%, transparent 100%);
  border-radius: 50%;
  top: 15%;
  left: 10%;
  animation: float1 20s infinite ease-in-out;
}

.shape:nth-child(2) {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(139, 92, 246, 1) 0%, rgba(168, 85, 247, 0.5) 50%, transparent 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 25%;
  right: 15%;
  animation: float2 25s infinite ease-in-out;
}

.shape:nth-child(3) {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(99, 102, 241, 1) 0%, rgba(139, 92, 246, 0.5) 50%, transparent 100%);
  border-radius: 50%;
  bottom: 20%;
  left: 20%;
  animation: float3 18s infinite ease-in-out;
}

.shape:nth-child(4) {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(168, 85, 247, 1) 0%, rgba(59, 130, 246, 0.4) 50%, transparent 100%);
  border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
  top: 60%;
  right: 25%;
  animation: float4 22s infinite ease-in-out;
}

.shape:nth-child(5) {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(59, 130, 246, 1) 0%, rgba(99, 102, 241, 0.5) 50%, transparent 100%);
  border-radius: 50%;
  top: 40%;
  left: 5%;
  animation: float5 16s infinite ease-in-out;
}

.shape:nth-child(6) {
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(139, 92, 246, 1) 0%, rgba(168, 85, 247, 0.4) 50%, transparent 100%);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  bottom: 10%;
  right: 10%;
  animation: float6 24s infinite ease-in-out;
}

.shape:nth-child(7) {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(6, 182, 212, 1) 0%, rgba(14, 165, 233, 0.5) 50%, transparent 100%);
  border-radius: 50%;
  top: 70%;
  left: 70%;
  animation: float7 19s infinite ease-in-out;
}

.shape:nth-child(8) {
  width: 85px;
  height: 85px;
  background: radial-gradient(circle, rgba(245, 158, 11, 1) 0%, rgba(251, 191, 36, 0.5) 50%, transparent 100%);
  border-radius: 25% 75% 75% 25% / 25% 25% 75% 75%;
  top: 10%;
  left: 50%;
  animation: float8 21s infinite ease-in-out;
}

.shape:nth-child(9) {
  width: 95px;
  height: 95px;
  background: radial-gradient(circle, rgba(16, 185, 129, 1) 0%, rgba(34, 197, 94, 0.5) 50%, transparent 100%);
  border-radius: 50%;
  bottom: 30%;
  left: 60%;
  animation: float9 17s infinite ease-in-out;
}

.shape:nth-child(10) {
  width: 75px;
  height: 75px;
  background: radial-gradient(circle, rgba(239, 68, 68, 1) 0%, rgba(248, 113, 113, 0.5) 50%, transparent 100%);
  border-radius: 35% 65% 65% 35% / 35% 35% 65% 65%;
  top: 50%;
  left: 80%;
  animation: float10 23s infinite ease-in-out;
}

@keyframes float1 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(90deg);
  }
  50% {
    transform: translateY(-40px) translateX(-5px) rotate(180deg);
  }
  75% {
    transform: translateY(-20px) translateX(-10px) rotate(270deg);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) translateX(15px) rotate(120deg);
  }
  66% {
    transform: translateY(-15px) translateX(-20px) rotate(240deg);
  }
}

@keyframes float3 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) translateX(20px) rotate(180deg);
  }
}

@keyframes float4 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-35px) translateX(-10px) rotate(90deg);
  }
  75% {
    transform: translateY(-10px) translateX(25px) rotate(270deg);
  }
}

@keyframes float5 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  40% {
    transform: translateY(-30px) translateX(15px) rotate(144deg);
  }
  80% {
    transform: translateY(-5px) translateX(-20px) rotate(288deg);
  }
}

@keyframes float6 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  30% {
    transform: translateY(-20px) translateX(-15px) rotate(108deg);
  }
  60% {
    transform: translateY(-40px) translateX(10px) rotate(216deg);
  }
  90% {
    transform: translateY(-10px) translateX(20px) rotate(324deg);
  }
}

@keyframes float7 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) translateX(20px) rotate(90deg);
  }
  50% {
    transform: translateY(-30px) translateX(-10px) rotate(180deg);
  }
  75% {
    transform: translateY(-5px) translateX(-25px) rotate(270deg);
  }
}

@keyframes float8 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  40% {
    transform: translateY(-25px) translateX(15px) rotate(144deg);
  }
  80% {
    transform: translateY(-10px) translateX(-20px) rotate(288deg);
  }
}

@keyframes float9 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) translateX(-15px) rotate(120deg);
  }
  66% {
    transform: translateY(-35px) translateX(25px) rotate(240deg);
  }
}

@keyframes float10 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  20% {
    transform: translateY(-30px) translateX(10px) rotate(72deg);
  }
  40% {
    transform: translateY(-15px) translateX(-25px) rotate(144deg);
  }
  60% {
    transform: translateY(-40px) translateX(5px) rotate(216deg);
  }
  80% {
    transform: translateY(-5px) translateX(20px) rotate(288deg);
  }
}



