/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background: #1c1c1c;
    min-height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* Хедер */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hamburger-btn {
  display: none; /* убираем на больших экранах */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  transition: all 0.2s ease;
}

/* Остальное без изменений */
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.reward-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 4px;
}


@media (max-width: 768px) {
  nav,
  .search-btn {
    display: none;
  }
  
  .hamburger-btn {
    display: flex; /* показываем только на мобилке */
  }
}у

/* Десктопная навигация */
nav,
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
    background: #2a2a2a;
    padding: 6px;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 40px;
}

/* Мобильное выпадающее меню */
.mobile-nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    width: 200px;
    border-radius: 12px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
    z-index: 999;
}

.mobile-nav-menu.active {
    display: flex;
}

@media (max-width: 768px) {
  nav,
  .desktop-nav,
  .search-btn {
    display: none !important;
  }
  
  .hamburger-btn {
    display: flex;
  }
}
.nav-menu.active {
    display: flex;
}

.nav-menu .nav-item {
    padding: 12px 16px;
    border-bottom: 1px solid #2a2a2a;
    width: 100%;
    text-align: left;
    color: #fff;
    background: transparent;
}

.nav-menu .nav-item:last-child {
    border-bottom: none;
}


/* Лого */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
}

nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
    background: #2a2a2a;
    padding: 6px;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 40px;
}

.nav-item {
    color: #d4d4d4;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 11px;
    font-size: 14.5px;
    font-weight: 500;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    outline: none;
    white-space: nowrap;
}

.nav-item:hover {
    background: #3a3a3a;
    color: #ffffff;
}

.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 4.5px solid currentColor;
    margin-left: 2px;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #2a2a2a;
    border: none;
    color: #d4d4d4;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.search-btn:hover {
    background: #3a3a3a;
    color: white;
}

.download-btn {
    background: #ab9ef2;
    color: #000;
    padding: 11px 26px;
    border-radius: 21px;
    border: none;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.download-btn:hover {
    background: #fff;
}

.download-btn:active {
    transform: translateY(0);
}

.hero-banner {
    position: relative;
    height: 190px;
    padding: 0;
    background-image: url('assets/backup.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.25;
    z-index: -2;
}

.hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 30, 0.55);
    z-index: -1;
}

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

.hero-text {
    flex: 1;
    color: white;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.beta-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 80px 120px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-align: center;
}

.connect-section {
    position: relative;
    padding: 40px 48px;
    background: #1a1a1a;
    z-index: 1;
}

.connect-card {
    max-width: 1200px;
    margin: -60px auto 0 auto;
    background: #1a1a1a;
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid #2a2a2a;
    position: relative;
    z-index: 10;
}

.diamond-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diamond-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    animation:
        float 3s ease-in-out infinite,
        slowRotate 5s ease-in-out infinite,
        softGlow 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.03);
    }
}

@keyframes slowRotate {
    0% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
    100% {
        transform: rotate(-2deg);
    }
}

@keyframes softGlow {
    0%, 100% {
        filter: drop-shadow(0 8px 24px rgba(0, 212, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 12px 32px rgba(0, 212, 255, 0.6));
    }
}

.connect-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.connect-description {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 32px;
}

.connect-wallet-btn {
    background: #0d8ee0;
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.connect-wallet-btn:hover {
    background: #0b7bc4;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(13, 142, 224, 0.3);
}

.tasks-section {
    padding: 60px 48px;
    background: #1a1a1a;
}

.tasks-heading {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tasks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.task-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
    border: 1px solid #2a2a2a;
}

.task-card:hover {
    border-color: #3a3a3a;
}

.task-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.task-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    padding: 20px 20px 12px;
    margin: 0;
}

.task-reward {
    padding: 0 20px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.reward-label {
    color: #888;
}

.reward-value {
    color: #ffffff;
    font-weight: 600;
}

.task-btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background: #2a2a2a;
    border: none;
    border-radius: 10px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    cursor: not-allowed;
    transition: all 0.2s ease;
}

.task-btn:not(.disabled) {
    background: #0d8ee0;
    color: white;
    cursor: pointer;
}

.task-btn:not(.disabled):hover {
    background: #0b7bc4;
    transform: translateY(-1px);
}

/* Footer Section */
.footer-section {
    background: #1a1a1a;
    padding: 60px 48px 32px;
    color: #ffffff;
}

.footer-container {
    background-color: #28282c;
    border-radius: 24px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.newsletter-section {
    background: #34343a;
    border-radius: 24px;
    padding: 50px 80px;
    max-width: 900px;
    display: flex;
    align-items: end;
    justify-content: flex-end;
    gap: 90px;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 60px;
}

.newsletter-content {
    flex: 0 0 auto;
    max-width: 550px;
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 60px;
}

.newsletter-side-logo {
    margin-top: -150px;
    width: 100px;
    height: auto;
    flex-shrink: 0;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 600;
    color: #b0b0b0;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.newsletter-description {
    font-size: 15.5px;
    color: #e0e0e0;
    line-height: 1.5;
    font-weight: 400;
}

.signup-btn {
    background: #ffffff;
    color: #000000;
    padding: 14px 42px;
    border-radius: 28px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 180px;
    width: max-content;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.column-title {
    font-size: 14px;
    font-weight: 600;
    color: #888888;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-list a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.link-list a:hover {
    color: #ffffff;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3a3a3a;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.status-text {
    font-size: 13px;
    color: #d4d4d4;
    font-weight: 500;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    font-size: 14px;
    color: #888888;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

/* ============================================ */
/* RESPONSIVE STYLES - ALL BREAKPOINTS */
/* ============================================ */

/* Large Desktop: 1440px+ */
@media (min-width: 1440px) {
    header {
        padding: 18px 80px;
    }
    
    .hero-banner {
        height: 240px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .connect-section,
    .tasks-section,
    .footer-section {
        padding-left: 80px;
        padding-right: 80px;
    }
}

/* Desktop: 1280px - 1439px */
@media (max-width: 1439px) and (min-width: 1280px) {
    .footer-links {
        gap: 140px;
    }
    
    .hero-description {
        font-size: 16px;
    }
}

/* Desktop: 1024px - 1279px */
@media (max-width: 1279px) and (min-width: 1024px) {
    nav {
        max-width: 520px;
        margin: 0 32px;
    }
    
    .hero-title {
        font-size: 39px;
    }
    
    .hero-description {
        font-size: 15.5px;
    }
    
    .newsletter-section {
        padding: 42px 65px;
        gap: 65px;
    }
    
    .footer-links {
        gap: 110px;
    }
}

/* Tablet Landscape: 900px - 1023px */
@media (max-width: 1023px) and (min-width: 900px) {
    header {
        padding: 15px 36px;
    }
    
    nav {
        max-width: 480px;
        margin: 0 24px;
    }
    
    .nav-item {
        padding: 9px 15px;
        font-size: 14px;
    }
    
    .logo {
        font-size: 21px;
    }
    
    .logo-img {
        height: 52px;
    }
    
    .hero-banner {
        height: 170px;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-description {
        font-size: 15px;
        max-width: 100%;
    }
    
    .connect-card {
        margin-top: -45px;
        padding: 42px 32px;
    }
    
    .connect-title {
        font-size: 25px;
    }
    
    .tasks-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 17px;
    }
    
    .newsletter-section {
        padding: 36px 45px;
        gap: 52px;
    }
    
    .newsletter-title {
        font-size: 29px;
    }
    
    .footer-links {
        gap: 90px;
    }
}

/* Tablet: 768px - 899px */
@media (max-width: 899px) and (min-width: 768px) {
    header {
        padding: 13px 28px;
    }
    
    nav {
        max-width: 420px;
        margin: 0 18px;
    }
    
    .nav-item {
        padding: 8px 13px;
        font-size: 13px;
    }
    
    .logo {
        font-size: 19px;
    }
    
    .logo-img {
        height: 48px;
    }
    
    .hero-banner {
        height: 155px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 35px;
        padding: 0 28px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-description {
        font-size: 14.5px;
        max-width: 100%;
    }
    
    .connect-section {
        padding: 38px 28px;
    }
    
    .connect-card {
        margin-top: -38px;
        padding: 38px 28px;
    }
    
    .connect-title {
        font-size: 23px;
    }
    
    .tasks-section {
        padding: 48px 28px;
    }
    
    .tasks-grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        gap: 15px;
    }
    
    .footer-section {
        padding: 48px 28px 26px;
    }
    
    .newsletter-wrapper {
        gap: 28px;
    }
    
    .newsletter-side-logo {
        width: 75px;
        margin-top: -115px;
    }
    
    .newsletter-section {
        padding: 33px 38px;
        gap: 48px;
    }
    
    .newsletter-title {
        font-size: 27px;
    }
    
    .newsletter-description {
        font-size: 14.2px;
    }
    
    .footer-links {
        gap: 75px;
    }
    
    .footer-bottom {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
}

/* Mobile Landscape: 640px - 767px */
@media (max-width: 767px) and (min-width: 640px) {
    header {
        padding: 12px 26px;
    }
    
    nav {
        display: none;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo-img {
        height: 46px;
    }
    
    .right-section {
        gap: 10px;
    }
  
    .search-btn {
        width: 39px;
        height: 39px;
    }
    
    .hero-banner {
        height: 145px;
    }
    
    .hero-content {
        padding: 0 26px;
    }
    
    .hero-title {
        font-size: 29px;
        gap: 12px;
    }
    
    .hero-description {
        font-size: 14.2px;
        max-width: 100%;
    }
    
    .beta-badge {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .connect-section {
        padding: 32px 26px;
    }
    
    .connect-card {
        margin-top: -32px;
        padding: 36px 26px;
        border-radius: 20px;
    }
    
    .diamond-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 20px;
    }
    
    .connect-title {
        font-size: 22px;
    }
    
    .connect-description {
        font-size: 14.2px;
    }
    
    .connect-wallet-btn {
        padding: 12px 30px;
        font-size: 14.2px;
    }
    
    .tasks-section {
        padding: 42px 26px;
    }
    
    .tasks-heading {
        font-size: 18.5px;
        margin-bottom: 20px;
    }
    
    .tasks-grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        gap: 14px;
    }
    
    .task-image {
        height: 165px;
    }
    
    .footer-section {
        padding: 42px 26px 24px;
    }
    
    .newsletter-wrapper {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 48px;
    }
    
    .newsletter-side-logo {
        margin-top: 0;
        width: 72px;
    }
    
    .newsletter-section {
        padding: 32px 26px;
        gap: 32px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 48px;
    }
    
    .newsletter-title {
        font-size: 25px;
    }
    
    .newsletter-description {
        font-size: 14px;
    }
    
    .signup-btn {
        padding: 12px 38px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 32px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        justify-items: start;
    }
    
    .column-title {
        font-size: 13.2px;
    }
    
    .link-list {
        gap: 10px;
    }
    
    .link-list a {
        font-size: 14.2px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
    
    .footer-bottom-links {
        gap: 22px;
    }
}

/* Mobile Portrait: 480px - 639px */
@media (max-width: 639px) and (min-width: 480px) {
    header {
        padding: 10px 22px;
    }
    
    .logo-img {
        height: 42px;
    }
    
    .logo {
        font-size: 17px;
        gap: 10px;
    }

    
    .search-btn {
        width: 37px;
        height: 37px;
    }
    
    .hero-banner {
        height: 140px;
    }
    
    .hero-content {
        padding: 0 22px;
    }
    
    .hero-title {
        font-size: 26px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .hero-description {
        font-size: 14px;
        max-width: 100%;
    }
    
    .connect-section {
        padding: 27px 22px;
    }
    
    .connect-card {
        margin-top: -20px ;
        padding: 32px 22px;
        border-radius: 19px;
    }
    
    .diamond-icon {
        width: 58px;
        height: 58px;
    }
    
    .connect-title {
        font-size: 21px;
    }
    
    .connect-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .tasks-section {
        padding: 37px 22px;
    }
    
    .tasks-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }
    
    .task-image {
        height: 155px;
    }
    
    .footer-section {
        padding: 37px 22px 22px;
    }
    
    .footer-container {
        padding: 17px;
        border-radius: 21px;
    }
    
    .newsletter-section {
        padding: 27px 22px;
        margin-bottom: 42px;
        border-radius: 21px;
    }
    
    .newsletter-side-logo {
        width: 65px;
    }
    
    .newsletter-title {
        font-size: 23px;
    }
    
    .newsletter-description {
        font-size: 13.7px;
    }
    
    .signup-btn {
        padding: 11px 34px;
        font-size: 14.2px;
    }
    
    .footer-links {
        gap: 37px 27px;
        margin-bottom: 42px;
    }
    
    .status-badge {
        padding: 7px 15px;
    }
}

/* Small Mobile: 375px - 479px */
@media (max-width: 479px) and (min-width: 375px) {
    header {
        padding: 9px 18px;
    }
    
    .logo-img {
        height: 38px;
    }
    
    .logo {
        font-size: 15.5px;
    }

    
    .search-btn {
        width: 35px;
        height: 35px;
    }
    
    .hero-banner {
        height: 110px;
    }
    
    .hero-content {
        padding: 0 18px;
    }
    
    .hero-title {
        font-size: 23px;
    }
    
    .hero-description {
        font-size: 13.5px;
        max-width: 100%;
    }
    
    .connect-card {
        margin-top: -20px ;

        padding: 27px 18px;
    }
    
    .connect-title {
        font-size: 19px;
    }
    
    .connect-description {
        font-size: 13.2px;
    }
    
    .connect-wallet-btn {
        padding: 11px 26px;
        font-size: 13.2px;
    }
    
    .tasks-section {
        padding: 32px 18px;
    }
    
    .tasks-heading {
        font-size: 17.5px;
    }
    
    .task-card h3 {
        font-size: 15.5px;
        padding: 17px 17px 11px;
    }
    
    .task-reward {
        padding: 0 17px 15px;
        font-size: 13.2px;
    }
    
    .task-btn {
        width: calc(100% - 34px);
        margin: 0 17px 17px;
        padding: 11px;
        font-size: 13.2px;
    }
    
    .task-image {
        height: 145px;
    }
    
    .footer-section {
        padding: 32px 18px 18px;
    }
    
    .footer-container {
        padding: 15px;
    }
    
    .newsletter-section {
        padding: 24px 18px;
    }
    
    .newsletter-side-logo {
        width: 62px;
    }
    
    .newsletter-title {
        font-size: 21px;
    }
    
    .newsletter-description {
        font-size: 13.2px;
    }
    
    .footer-links {
        gap: 32px 22px;
    }
    
    .column-title {
        font-size: 12.5px;
        margin-bottom: 17px;
    }
    
    .link-list a {
        font-size: 13.2px;
    }
    
    .copyright {
        font-size: 12.5px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-bottom-links a {
        font-size: 12.5px;
    }
}

/* Extra Small Mobile: 320px - 374px */
@media (max-width: 374px) {
    header {
        padding: 8px 14px;
    }
    
    .logo-img {
        height: 34px;
    }
    
    .logo {
        font-size: 14px;
    }
        
    .search-btn {
        width: 33px;
        height: 33px;
    }
    
    .hero-banner {
        height: 95px;
    }
    
    .hero-content {
        padding: 0 14px;
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 12.5px;
        max-width: 100%;
    }
    
    .connect-section {
        padding: 22px 14px;
    }
    
    .connect-card {
 
        margin-top: -20px ;

        padding: 24px 14px;
        border-radius: 16px;
    }
    
    .diamond-icon {
        width: 50px;
        height: 50px;
    }
    
    .connect-title {
        font-size: 17px;
    }
    
    .connect-description {
        font-size: 12.5px;
        margin-bottom: 24px;
    }
    
    .connect-wallet-btn {
        padding: 10px 22px;
        font-size: 12.5px;
    }
    
    .tasks-section {
        padding: 28px 14px;
    }
    
    .tasks-heading {
        font-size: 16px;
    }
    
    .task-card h3 {
        font-size: 14.5px;
        padding: 15px 15px 9px;
    }
    
    .task-reward {
        padding: 0 15px 13px;
        font-size: 12.5px;
    }
    
    .task-btn {
        width: calc(100% - 30px);
        margin: 0 15px 15px;
        padding: 10px;
        font-size: 12.5px;
    }
    
    .task-image {
        height: 135px;
    }
    
    .footer-section {
        padding: 28px 14px 14px;
    }
    
    .footer-container {
        padding: 13px;
        border-radius: 18px;
    }
    
    .newsletter-section {
        padding: 20px 14px;
        border-radius: 18px;
    }
    
    .newsletter-side-logo {
        width: 55px;
    }
    
    .newsletter-title {
        font-size: 18px;
    }
    
    .newsletter-description {
        font-size: 12.5px;
    }
    
    .signup-btn {
        padding: 10px 28px;
        font-size: 13px;
    }
    
    .footer-links {
        gap: 28px 18px;
        margin-bottom: 35px;
    }
    
    .column-title {
        font-size: 11.5px;
        margin-bottom: 15px;
    }
    
    .link-list a {
        font-size: 12.5px;
    }
    
    .link-list {
        gap: 8px;
    }
    
    .copyright {
        font-size: 11.5px;
    }
    
    .footer-bottom-links a {
        font-size: 11.5px;
    }
}
/* ============================================ */
/* FOOTER RESPONSIVE STYLES */
/* ============================================ */

/* Large Desktop: 1440px+ */
@media (min-width: 1440px) {
    .footer-section {
        padding: 70px 80px 40px;
    }
    
    .newsletter-section {
        padding: 55px 90px;
        gap: 100px;
    }
    
    .footer-links {
        gap: 200px;
    }
}

/* Desktop: 1280px - 1439px */
@media (max-width: 1439px) and (min-width: 1280px) {
    .footer-links {
        gap: 140px;
    }
    
    .newsletter-section {
        padding: 50px 80px;
        gap: 90px;
    }
}

/* Desktop: 1024px - 1279px */
@media (max-width: 1279px) and (min-width: 1024px) {
    .newsletter-section {
        padding: 42px 65px;
        gap: 70px;
    }
    
    .footer-links {
        gap: 110px;
    }
    
    .newsletter-side-logo {
        width: 90px;
        margin-top: -140px;
    }
}

/* Tablet Landscape: 900px - 1023px */
@media (max-width: 1023px) and (min-width: 900px) {
    .footer-section {
        padding: 55px 36px 28px;
    }
    
    .newsletter-section {
        padding: 36px 45px;
        gap: 52px;
    }
    
    .newsletter-title {
        font-size: 29px;
    }
    
    .newsletter-side-logo {
        width: 85px;
        margin-top: -130px;
    }
    
    .footer-links {
        gap: 90px;
    }
}

/* Tablet: 768px - 899px */
@media (max-width: 899px) and (min-width: 768px) {
    .footer-section {
        padding: 48px 28px 26px;
    }
    
    .newsletter-wrapper {
        gap: 28px;
        margin-bottom: 55px;
    }
    
    .newsletter-side-logo {
        width: 75px;
        margin-top: -115px;
    }
    
    .newsletter-section {
        padding: 33px 38px;
        gap: 48px;
    }
    
    .newsletter-title {
        font-size: 27px;
    }
    
    .newsletter-description {
        font-size: 14.2px;
    }
    
    .footer-links {
        gap: 75px;
    }
    
    .footer-bottom {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
}

/* Mobile Landscape: 640px - 767px */
@media (max-width: 767px) and (min-width: 640px) {
    .footer-section {
        padding: 42px 26px 24px;
    }
    
    .footer-container {
        padding: 18px;
    }
    
    /* Newsletter становится вертикальным */
    .newsletter-wrapper {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 48px;
    }
    
    .newsletter-side-logo {
        margin-top: 0;
        width: 72px;
    }
    
    .newsletter-section {
        padding: 32px 26px;
        gap: 32px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 48px;
        max-width: 100%;
    }
    
    .newsletter-content {
        max-width: 100%;
    }
    
    .newsletter-title {
        font-size: 25px;
    }
    
    .newsletter-description {
        font-size: 14px;
    }
    
    .signup-btn {
        padding: 12px 38px;
        width: 100%;
        max-width: 200px;
    }
    
    /* Footer Links - 2 колонки */
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 32px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        justify-items: start;
    }
    
    .column-title {
        font-size: 13.2px;
    }
    
    .link-list {
        gap: 10px;
    }
    
    .link-list a {
        font-size: 14.2px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
    
    .footer-bottom-links {
        gap: 22px;
    }
}

/* Mobile Portrait: 480px - 639px */
@media (max-width: 639px) and (min-width: 480px) {
    .footer-section {
        padding: 37px 22px 22px;
    }
    
    .footer-container {
        padding: 17px;
        border-radius: 21px;
    }
    
    /* Newsletter */
    .newsletter-wrapper {
        flex-direction: column;
        align-items: center;
        margin: 0 0 42px 0;
    }
    
    .newsletter-side-logo {
        margin-top: 0;
        width: 65px;
    }
    
    .newsletter-section {
        padding: 27px 22px;
        margin: 0 0 42px 0;
        border-radius: 21px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
        gap: 28px;
    }
    
    .newsletter-content {
        max-width: 100%;
    }
    
    .newsletter-title {
        font-size: 23px;
    }
    
    .newsletter-description {
        font-size: 13.7px;
    }
    
    .signup-btn {
        padding: 11px 34px;
        font-size: 14.2px;
        width: 100%;
        max-width: 180px;
    }
    
    /* Footer Links - 2 колонки */
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 37px 27px;
        margin: 0 0 42px 0;
        width: 100%;
        justify-items: start;
    }
    
    .column-title {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .link-list {
        gap: 10px;
    }
    
    .link-list a {
        font-size: 13.5px;
    }
    
    .status-badge {
        padding: 7px 15px;
        margin-bottom: 25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
        padding-top: 25px;
    }
    
    .copyright {
        font-size: 13px;
    }
    
    .footer-bottom-links {
        flex-direction: row;
        gap: 20px;
    }
    
    .footer-bottom-links a {
        font-size: 13px;
    }
}

/* Small Mobile: 375px - 479px */
@media (max-width: 479px) and (min-width: 375px) {
    .footer-section {
        padding: 32px 18px 18px;
    }
    
    .footer-container {
        padding: 15px;
        border-radius: 20px;
    }
    
    /* Newsletter */
    .newsletter-wrapper {
        flex-direction: column;
        align-items: center;
        margin: 0 0 38px 0;
    }
    
    .newsletter-side-logo {
        margin-top: 0;
        width: 62px;
    }
    
    .newsletter-section {
        padding: 24px 18px;
        margin: 0 0 38px 0;
        border-radius: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
        gap: 24px;
    }
    
    .newsletter-content {
        max-width: 100%;
    }
    
    .newsletter-title {
        font-size: 21px;
        margin-bottom: 10px;
    }
    
    .newsletter-description {
        font-size: 13.2px;
        line-height: 1.4;
    }
    
    .signup-btn {
        padding: 11px 32px;
        font-size: 13.5px;
        width: 100%;
        max-width: 160px;
    }
    
    /* Footer Links - 2 колонки плотнее */
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 22px;
        margin: 0 0 38px 0;
        width: 100%;
        justify-items: start;
    }
    
    .column-title {
        font-size: 12.5px;
        margin-bottom: 14px;
    }
    
    .link-list {
        gap: 9px;
    }
    
    .link-list a {
        font-size: 13.2px;
    }
    
    .status-badge {
        padding: 7px 14px;
        margin-bottom: 22px;
    }
    
    .status-text {
        font-size: 12px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-top: 22px;
    }
    
    .copyright {
        font-size: 12.5px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-bottom-links a {
        font-size: 12.5px;
    }
}

/* Extra Small Mobile: 320px - 374px */
@media (max-width: 374px) {
    .footer-section {
        padding: 28px 14px 14px;
    }
    
    .footer-container {
        padding: 13px;
        border-radius: 18px;
    }
    
    /* Newsletter */
    .newsletter-wrapper {
        flex-direction: column;
        align-items: center;
        margin: 0 0 32px 0;
    }
    
    .newsletter-side-logo {
        margin-top: 0;
        width: 55px;
    }
    
    .newsletter-section {
        padding: 20px 14px;
        margin: 0 0 32px 0;
        border-radius: 18px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
        gap: 20px;
    }
    
    .newsletter-content {
        max-width: 100%;
    }
    
    .newsletter-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .newsletter-description {
        font-size: 12.5px;
        line-height: 1.4;
    }
    
    .signup-btn {
        padding: 10px 28px;
        font-size: 13px;
        width: 100%;
        max-width: 140px;
    }
    
    /* Footer Links - 2 колонки компактно */
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 18px;
        margin: 0 0 35px 0;
        width: 100%;
        justify-items: start;
    }
    
    .column-title {
        font-size: 11.5px;
        margin-bottom: 13px;
    }
    
    .link-list {
        gap: 8px;
    }
    
    .link-list a {
        font-size: 12.5px;
    }
    
    .status-badge {
        padding: 6px 12px;
        margin-bottom: 20px;
    }
    
    .status-dot {
        width: 7px;
        height: 7px;
    }
    
    .status-text {
        font-size: 11.5px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding-top: 20px;
    }
    
    .copyright {
        font-size: 11.5px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom-links a {
        font-size: 11.5px;
    }
}