/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #111204;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
     position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    min-height: 100vh;
}

/* Header */
.header {
    display: flex;
    justify-content: center;
    padding: 55px 20px 0;
     background: none; /* Убедиться, что нет фона */
    z-index: 10;
}

.logo-card {
    background-color: #222222;
    border-radius: 25px;
    padding: 22px 36px;
    display: inline-block;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    line-height: 44.8px;
}

.logo-cash {
    color: white;
}

.logo-hammer {
    color: #509efd;
}

/* Main content */
.main-content {
    position: relative;
    z-index: 2;
}

/* Hero section */
.hero-section {
    position: relative;
    text-align: center;
    padding: 172px 20px 0;
    margin-bottom: 90px;
    background: none;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 103px;
    letter-spacing: -2.4px;
    margin-bottom: 120px;
    position: relative;
    z-index: 3;
}

.hero-description {
    font-size: 18px;
    line-height: 25.2px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 564px;
    margin: 0 auto;
}
.hero-content {
  margin-top: -300px;
}
/* Stars */


/* Glow effect */
.glow-effect {
    position: absolute;
    width: 416px;
    height: 309px;
    background: rgba(80, 158, 253, 0.4);
    border-radius: 208px / 154.5px;
    filter: blur(174px);
    top: 329px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Contacts separator */
.contacts-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px 104px;
    gap: 24px;
}

.separator-line {
    height: 1px;
    background-color: #509efd;
    flex: 1;
    max-width: 200px;
}

.separator-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.9px;
    color: white;
    white-space: nowrap;
}

/* Support sections */
.support-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.support-card {
    max-width: 470px;
}

.support-title {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -0.48px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    line-height: normal;
}

.support-description {
    font-size: 24px;
    letter-spacing: -0.06px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    margin-bottom: 48px;
}

.support-button {
    background-color: #509efd;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 261px;
    height: 56px;
}

.support-button:hover {
    background-color: #4085e0;
}

.support-button:active {
    transform: translateY(1px);
}

/* Background glow */
.background-glow {
    position: absolute;
    width: 120vw; /* шире экрана специально */
    height: 60vh;
    background: rgba(80, 158, 253, 0.25);
    border-radius: 50% / 50%;
    filter: blur(12vw);
    top: 140vh; /* регулируй по вкусу */
    left: 50%;
    transform: translateX(-50%); /* центрируем по горизонтали */
    z-index: 0;
    pointer-events: none; /* чтобы не мешал кликам */
}

/* Responsive design */


@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
        line-height: 60px;
        letter-spacing: -1.5px;
        margin-bottom: 60px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 22px;
        padding: 0 20px;
    }
    
    .hero-section {
        padding: 100px 20px 0;
        margin-bottom: 60px;
    }
    
    .support-sections {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 20px;
    }
    
    .support-card {
         margin-bottom: 40px; /* отступ между карточками */
    }
    
    .support-title {
        font-size: 36px;
        margin-bottom: 32px;
    }
    
    .support-description {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .support-button {
       .support-button {
      width: 100%;
      max-width: 240px; /* уже */
      height: 48px;      /* ниже */
      font-size: 14px;   /* меньше текст */
      padding: 12px 24px;
      margin-top: 8px;
  }

    }
    
    .contacts-separator {
        margin: 0 20px 60px;
        gap: 16px;
    }
    
    .separator-text {
        font-size: 16px;
        letter-spacing: 1.5px;
    }
    
    
    
    .glow-effect {
        width: 300px;
        height: 200px;
        top: 250px;
    }
    
    .background-glow {
        width: 100%;
        height: 500px;
        top: 800px;
        left: -50%;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 30px 20px 0;
    }
    
    .logo-card {
        padding: 16px 24px;
    }
    
    .logo-text {
        font-size: 24px;
        line-height: 32px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 45px;
        margin-bottom: 40px;
    }
    
    .hero-section {
        padding: 60px 20px 0;
        margin-bottom: 40px;
    }
    
    .support-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .support-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .contacts-separator {
        margin: 0 20px 40px;
    }
    
    .separator-text {
        font-size: 14px;
    }
    
    .star-large {
        width: 60px;
        height: 60px;
        top: 150px;
        right: 10px;
        
    }
    
    .star-small-1,
    .star-small-2 {
        width: 12px;
        height: 12px;
    }
    
    .star-small-1 {
        top: 300px;
        right: 30px;
    }
    
    .star-small-2 {
        top: 280px;
        left: 30px;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 120px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-blur {
    position: absolute;
    width: 416px;
    height: 309px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(80, 157, 253, 0.5);
    border-radius: 208px / 154.5px;
    filter: blur(130px);
    z-index: 0;
}

.star {
    position: absolute;
    width: 159px;
    height: 159px;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.star-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
      top: calc(35% - 300px);
}

.star-2 {
    bottom: 30%;
    right: 25%;
    width: 24px;
    height: 24px;
    animation-delay: 2s;
    bottom: calc(20% + 300px);
}

.star-3 {
    bottom: 20%;
    left: 25%;
    width: 23px;
    height: 23px;
    animation-delay: 4s;
     bottom: calc(10% + 300px);
}

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

@media (min-width: 769px) {
  .support-button--partner {
    margin-top: 30px;
  }
}
