/* Базовые стили */
body {
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    background-color: #0c0f1a;
    color: white;
    overflow-x: hidden;
  }
  
  /* Космическая пыль */
  .stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url('https://raw.githubusercontent.com/VincentGarreau/particles.js/master/demo/media/stars.png') repeat top center;
    background-size: cover;
    animation: moveStars 100s linear infinite, blinkStars 2s infinite alternate;
    z-index: 0;
  }
  
  /* Навбар */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    background: radial-gradient(circle at top left, #150050, #000014);
    box-shadow: 0 4px 15px rgba(0, 0, 255, 0.2);
    position: relative;
    z-index: 10;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2rem;
    color: #d4a5ff;
  }
  .logo i.glowing {
    text-shadow: 0 0 10px #d4a5ff, 0 0 20px #8c52ff;
  }
  .nav-links {
    display: flex;
    gap: 40px;
  }
  .nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
  }
  .nav-links a:hover {
    color: #d4a5ff;
    transform: translateY(-4px) scale(1.05);
  }
  .buy-button a {
    padding: 14px 30px;
    background: linear-gradient(135deg, #d4a5ff, #8c52ff);
    color: #150050;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 15px 3px rgba(212, 165, 255, 0.5);
  }
  .buy-button a:hover {
    background: linear-gradient(135deg, #8c52ff, #d4a5ff);
    transform: scale(1.1);
  }
  
  /* Соц сети */
  .social-panel {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 9;
  }
  .social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1a1a2e;
    padding: 12px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 0 10px rgba(212, 165, 255, 0.4);
    transition: all 0.3s;
    overflow: hidden;
    width: 50px;
  }
  .social-link span {
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.3s;
  }
  .social-link:hover {
    width: 150px;
    background: linear-gradient(135deg, #8c52ff, #d4a5ff);
  }
  .social-link:hover span {
    opacity: 1;
  }
  
  /* Hero секция */
  .hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at top, #0c0f1a, #05050a);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeIn 2s ease-out forwards;
  }
  .hero-logo {
    width: 300px;
    border-radius: 20px;
    box-shadow: 0 0 40px #d4a5ff;
    animation: pulse 3s infinite alternate;
  }
  .hero-title {
    font-size: 3rem;
    color: #d4a5ff;
    text-shadow: 0 0 10px #8c52ff;
    animation: glowText 2s infinite alternate;
    margin: 10px 0;
  }
  .hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
  }
  .hero-button {
    margin-top: 20px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #d4a5ff, #8c52ff);
    color: #150050;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 15px 3px rgba(212, 165, 255, 0.5);
  }
  .hero-button:hover {
    background: linear-gradient(135deg, #8c52ff, #d4a5ff);
    transform: scale(1.1);
  }
  
  /* Разделительная линия */
  .divider {
    width: 90%;
    height: 2px;
    margin: 0px auto;
    background: linear-gradient(90deg, rgba(140, 82, 255, 0.5), rgba(212, 165, 255, 0.5), rgba(140, 82, 255, 0.5));
    box-shadow: 0 0 20px rgba(140, 82, 255, 0.5), 0 0 40px rgba(212, 165, 255, 0.1);
    border-radius: 50px;
  }
  
  
  /* Cosmic Hub секция */
  .cosmic-hub {
    padding: 80px 20px;
    background: radial-gradient(circle at center, #0f1624, #0c0f1a 70%);
    text-align: center;
    position: relative;
  }
  .hub-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
  }
  .hub-card {
    display: flex;
    align-items: center;
    background: #1a1a2e;
    border: 2px solid #8c52ff;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(140, 82, 255, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  .hub-card:hover {
    transform: scale(1.03);
  }
  .hub-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-right: 2px solid #8c52ff;
  }
  .hub-text {
    padding: 20px;
    text-align: left;
  }
  .hub-text h3 {
    font-size: 1.8rem;
    color: #d4a5ff;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #8c52ff;
  }
  .hub-text p {
    font-size: 1.2rem;
    color: #ccc;
  }
  
  /* Анимации */
  @keyframes moveStars { from { background-position: 0 0; } to { background-position: 0 2000px; }}
  @keyframes blinkStars { from { opacity: 0.8; } to { opacity: 1; }}
  @keyframes fadeIn { from {opacity: 0; transform: translateY(30px);} to {opacity: 1; transform: translateY(0);} }
  @keyframes glowText { from { text-shadow: 0 0 10px #d4a5ff, 0 0 20px #8c52ff; } to { text-shadow: 0 0 20px #d4a5ff, 0 0 30px #8c52ff; } }
  @keyframes pulse { from { box-shadow: 0 0 20px #d4a5ff; } to { box-shadow: 0 0 50px #8c52ff; } }
 

  .section-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: #d4a5ff;
    text-shadow: 0 0 15px #8c52ff, 0 0 25px #d4a5ff;
    animation: fadeIn 2s ease-out forwards;
  }
  
  .section-description {
    font-size: 1.4rem;
    color: #bbb;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    text-shadow: 0 0 10px #8c52ff;
    animation: fadeIn 2s ease-out forwards;
  }
  
 
  html {
    scroll-behavior: smooth;
  }
  .footer {
    background: radial-gradient(circle, #0c0f1a, #000014);
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: #ccc;
    border-top: 2px solid rgba(140, 82, 255, 0.3);
    box-shadow: 0 -5px 20px rgba(140, 82, 255, 0.2);
    position: relative;
  }
  
  
  .footer-left p {
    margin: 0;
    color: #d4a5ff;
    text-shadow: 0 0 5px #8c52ff;
    font-size: 1.2rem;
  }
  
  .footer-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-center i {
    font-size: 2rem;
    color: #d4a5ff;
    text-shadow: 0 0 10px #8c52ff, 0 0 20px #d4a5ff;
  }
  
  .footer-right {
    display: flex;
    gap: 20px;
  }
  
  .footer-social {
    color: #d4a5ff;
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
  }
  
  .footer-social:hover {
    color: #8c52ff;
    transform: scale(1.2);
  }
  
  /* Анимация для появления футера */
  [data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
  }
  
  [data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .astrotreats-content {
    padding: 20px 20px 80px 20px; /* сверху меньше паддинг */
    text-align: center;
    background: radial-gradient(circle, #0c0f1a 0%, #000014 100%);
  }
  
  
  .treats-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 0;
  }
  
  .treat-card {
    display: flex;
    align-items: center;
    background: #1a1a2e;
    border: 2px solid #8c52ff;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(140, 82, 255, 0.5);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .treat-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(212, 165, 255, 0.7);
  }
  
  .treat-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-right: 2px solid #8c52ff;
  }
  
  .treat-text {
    padding: 30px;
    text-align: left;
  }
  
  .treat-text h3 {
    font-size: 2rem;
    color: #d4a5ff;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #8c52ff;
  }
  
  .treat-text p {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 500px;
  }
  
  /* Mobile adaptation */
  @media (max-width: 768px) {
    .treat-card {
      flex-direction: column;
    }
  
    .treat-img {
      width: 100%;
      height: 200px;
      border-right: none;
      border-bottom: 2px solid #8c52ff;
    }
  
    .treat-text {
      text-align: center;
    }
  }
  .astrotreats-title i {
  color: #d4a5ff;
  text-shadow: 0 0 10px #8c52ff;
  margin-right: 10px;
}
/* Clawpath Section */
.clawpath-section {
    padding: 80px 20px;
    text-align: center;
    background: radial-gradient(circle, #0c0f1a 0%, #05050a 100%);
  }
  
  .section-description {
    font-size: 1.4rem;
    margin-bottom: 50px;
    color: #ccc;
    text-shadow: 0 0 10px #8c52ff;
    max-width: 800px;
    margin: 0 auto 50px auto;
  }
  
  .roadmap-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .roadmap-card {
    background: #1a1a2e;
    border: 2px solid #8c52ff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 0 20px rgba(140, 82, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .roadmap-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 30px rgba(212, 165, 255, 0.7);
  }
  
  .roadmap-icon {
    font-size: 2.5rem;
    color: #d4a5ff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #8c52ff;
  }
  
  .roadmap-card h3 {
    font-size: 1.8rem;
    color: #d4a5ff;
    margin-bottom: 10px;
  }
  
  .roadmap-card p {
    font-size: 1.2rem;
    color: #ccc;
  }
  /* Clawpath Section */
.clawpath-section {
    padding: 80px 20px;
    text-align: center;
    background: radial-gradient(circle, #0c0f1a 0%, #05050a 100%);
  }
  
  .roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto;
  }
  
  .roadmap-card {
    background: #1a1a2e;
    border: 2px solid #8c52ff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(140, 82, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  
  .roadmap-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 30px rgba(212, 165, 255, 0.7);
  }
  
  .step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #8c52ff, #d4a5ff);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #150050;
    box-shadow: 0 0 10px rgba(140, 82, 255, 0.6);
  }
  
  .roadmap-icon {
    font-size: 2.5rem;
    color: #d4a5ff;
    margin: 30px 0 20px;
    text-shadow: 0 0 10px #8c52ff;
  }
  
  .roadmap-card h3 {
    font-size: 1.8rem;
    color: #d4a5ff;
    margin-bottom: 15px;
  }
  
  .roadmap-card p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 90%;
    margin: 0 auto;
  }
  .copy-button {
    padding: 14px 30px;
    background: linear-gradient(135deg, #d4a5ff, #8c52ff);
    color: #150050;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    box-shadow: 0px 0px 15px 3px rgba(212, 165, 255, 0.5);
    transition: all 0.3s ease;
  }
  
  .copy-button:hover {
    background: linear-gradient(135deg, #8c52ff, #d4a5ff);
    transform: scale(1.05);
  }
  
  #copy-alert {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background: #8c52ff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 0 10px #8c52ff;
    font-weight: bold;
    z-index: 9999;
    animation: fadeOut 2s forwards;
  }
  
  @keyframes fadeOut {
    0% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; }
  }
  