/* Glass Morphism UI Components */
.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px 0 rgba(31, 38, 135, 0.25);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    top: 0;
    left: 0;
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    width: 100%;
    height: var(--header-height);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-inner {
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 8px;
    position: relative;
}

.logo-inner::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.brand-name {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 22px;
}

.brand-first {
    color: var(--primary-color);
}

.brand-x {
    color: var(--secondary-color);
}

.nav-options {
    display: flex;
    align-items: center;
    gap: 20px;
}

.earnings-data {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.realtime-dot {
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

.theme-switcher {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-switcher:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.auth-button {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -10px var(--secondary-color);
}

/* Hero Section Enhancements */
.hero-text-container {
    position: relative;
    z-index: 5;
}

.gradient-text {
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 15px;
    font-weight: 500;
    margin: 6px;
    transition: all 0.3s ease;
}

.feature-chip:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-chip i {
    color: var(--primary-color);
}

.cta-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 700;
    font-size: 18px;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 0 auto;
    min-width: 220px;
}

.primary-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -15px rgba(26, 43, 109, 0.5);
}

.primary-btn:hover::before {
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.users-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    margin: 0 auto;
}

.avatars-stack {
    display: flex;
    align-items: center;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
    background-size: cover;
    background-position: center;
    margin-right: -12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.avatar:hover {
    transform: translateY(-3px) scale(1.1);
    z-index: 2;
}

.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.users-indicator p {
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-dark);
    margin: 0;
}

/* Floating Elements */
.hero-visual {
    position: relative;
    height: 500px;
    margin-top: 40px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.float-earnings {
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.float-users {
    top: 60%;
    right: 10%;
    animation-delay: 0.5s;
}

.float-crypto {
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.float-review {
    position: absolute;
    bottom: 10%;
    right: 0;
    width: 250px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.float-review:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float-content {
    display: flex;
    flex-direction: column;
}

.float-title {
    font-size: 12px;
    opacity: 0.8;
}

.float-value {
    font-size: 18px;
    font-weight: 700;
}

.stars {
    color: #FFC700;
    margin-bottom: 10px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.review-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* AI Brain Visualization */
.ai-brain {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.brain-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.brain-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://via.placeholder.com/500/1a2b6d/ffffff?text=AI') no-repeat center center;
    background-size: contain;
    opacity: 0.7;
    animation: pulse-brain 3s ease-in-out infinite;
}

.brain-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes pulse-brain {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        opacity: 0.5;
        transform: scale(0.95);
    }
}

/* Section Title Styling */
.section-title-container {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.title-accent {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.title-accent::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.section-subtitle {
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 18px;
    color: var(--neutral-dark);
    opacity: 0.8;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Cursor Effects */
#cursor-blur {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(114, 9, 183, 0.15) 0%,
        rgba(114, 9, 183, 0) 70%
    );
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: background 0.3s ease;
}

#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
}

/* Step Items */
.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    height: calc(100% - 20px);
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--neutral-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.step-content {
    flex: 1;
    padding: 0 0 0 10px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.step-description {
    color: var(--neutral-medium);
    font-size: 16px;
}

/* Testimonial Cards */
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.user-stats {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    color: var(--neutral-medium);
}

.user-earned {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-body {
    margin-bottom: 20px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(6, 214, 160, 0.1);
    border-radius: 100px;
    color: #06d6a0;
    font-size: 13px;
    font-weight: 600;
    border: none;
}

.verified-badge:hover {
    background: rgba(6, 214, 160, 0.2);
    color: #06d6a0;
    border: none;
}

/* Footer Styling */
.site-footer {
    padding-top: 60px;
    background-color: var(--neutral-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-dark);
    transition: all 0.3s ease;
    border: none;
}

.social-link:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.link-group h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group li {
    margin-bottom: 10px;
}

.link-group a {
    color: var(--neutral-dark);
    opacity: 0.7;
    transition: all 0.2s ease;
    border: none;
}

.link-group a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateX(3px);
    border: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: var(--neutral-medium);
}

.footer-apps {
    display: flex;
    gap: 15px;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    color: var(--neutral-dark);
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
}

.app-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    color: var(--primary-color);
    border: none;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(30deg);
    border-radius: 60px;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.secure-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

/* Glow Effect for Final CTA */
.glow-btn {
    box-shadow: 0 0 15px rgba(114, 9, 183, 0.5);
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 15px rgba(114, 9, 183, 0.5);
    }
    100% {
        box-shadow: 0 0 30px rgba(114, 9, 183, 0.8);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Section Spacing */
section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-visual {
        margin-top: 40px;
        transform: scale(0.9);
    }
    
    .float-card {
        padding: 15px;
        font-size: 14px;
    }
    
    .float-review {
        width: 220px;
        padding: 12px;
    }
    
    .ai-brain {
        transform: scale(0.8);
    }
    
    section {
        padding: 70px 0;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }

    /* Улучшение плавающих элементов */
    .floating-elements {
        position: relative;
        z-index: 1;
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    .glass-nav {
        padding: 10px 0;
    }
    
    .nav-options .earnings-data {
        display: none;
    }
    
    .feature-chip {
        margin-bottom: 10px;
    }
    
    .hero-visual {
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }
    
    .ai-brain {
        transform: scale(0.7);
    }
    
    section {
        padding: 50px 0;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Центрирование кнопок */
    .primary-btn, .secondary-btn, .glow-btn, .auth-button {
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
    }

    /* Улучшение плавающих карт */
    .float-card, .float-review {
        position: relative;
        transform: none !important;
        margin-bottom: 20px;
        left: 0 !important;
        top: 0 !important;
    }

    /* Центрирование карт */
    .card-3d {
        margin-left: auto;
        margin-right: auto;
    }

    /* Улучшение подписей и текста */
    .float-title, .float-value, .hero-subtitle, .section-subtitle {
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .nav-wrapper {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        height: auto;
        min-height: 60px;
        padding: 10px 0;
    }
    
    .logo-container {
        margin-bottom: 0;
    }
    
    .hero-visual {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    
    .float-card {
        display: none;
    }
    
    .float-review {
        position: static;
        margin: 0 auto 20px;
        transform: none !important;
        width: 100%;
        max-width: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }

    /* Улучшение выравнивания отзывов */
    .testimonial-card {
        text-align: center;
    }

    .testimonial-author {
        justify-content: center;
    }

    /* Улучшение видимости и доступности */
    .step-item, .feature-card, .why-card, .testimonial-card {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: none !important;
    }

    /* Улучшение доступности кнопок */
    .auth-button, .theme-switcher {
        margin: 0 5px;
    }
    
    .nav-options {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }
    
    .brand-name {
        font-size: 18px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .logo-container {
        margin-left: 5px;
    }
}

/* Улучшения для изображений и карточек */
.hero-image-container, .earnings-image-container, .cta-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Улучшение выравнивания для меток в карточках */
.float-title, .float-value, .stat-label, .stat-value, 
.feature-title, .feature-description, .testimonial-title, 
.testimonial-content, .why-title, .why-description {
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Улучшение плавающих элементов для лучшей видимости */
@media (max-width: 1200px) {
    .floating-elements {
        transform: scale(0.8);
    }
}

/* Улучшения для предотвращения перекрытия */
.cta-container {
    position: relative;
    z-index: 5;
}

.primary-btn, .secondary-btn {
    position: relative;
    z-index: 2;
}

/* Улучшенная доступность и видимость для мобильных устройств */
@media (hover: none) {
    .feature-card:hover, .testimonial-card:hover, .why-card:hover, .offer-card:hover {
        transform: none !important;
    }

    .card-3d:hover {
        transform: none !important;
    }
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    z-index: 1;
}

.hero-image {
    width: 80%;
    max-width: 380px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    position: relative;
    z-index: 5;
}

.hero-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.earnings-badge {
    position: absolute;
    bottom: -15px;
    right: 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.earnings-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.earnings-text {
    display: flex;
    flex-direction: column;
}

.earnings-amount {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.earnings-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Earnings Section Image */
.earnings-image-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    z-index: 1;
}

.earnings-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    position: relative;
    z-index: 5;
}

.earnings-image:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.completed-badge {
    position: absolute;
    top: 20px;
    right: 5%;
    background: white;
    color: var(--primary-color);
    padding: 15px 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1s;
}

.completed-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(6, 214, 160, 0.1);
    color: #06d6a0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.completed-text {
    display: flex;
    flex-direction: column;
}

.completed-amount {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
}

.completed-label {
    font-size: 14px;
    color: #000000;
}

/* Web3 Image Section */
.web3-image-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.web3-image-container {
    position: relative;
    max-width: 600px;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.web3-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.web3-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: all 0.5s ease;
}

.web3-image:hover {
    transform: scale(1.05);
}

.crypto-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 15px 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.crypto-badge-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.crypto-badge-text {
    display: flex;
    flex-direction: column;
}

.crypto-badge-amount {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.crypto-badge-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .hero-image {
        max-width: 320px;
    }
    
    .earnings-image {
        max-width: 350px;
    }
    
    .web3-image-container {
        max-width: 400px;
    }
    
    .crypto-badge, .completed-badge, .earnings-badge {
        padding: 10px 15px;
    }
    
    .crypto-badge-icon, .completed-icon, .earnings-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-image {
        max-width: 260px;
    }
    
    .earnings-image {
        max-width: 280px;
    }
    
    .web3-image-container {
        max-width: 300px;
    }
    
    .crypto-badge, .completed-badge, .earnings-badge {
        right: 10px;
        padding: 8px 12px;
        gap: 8px;
    }
    
    .crypto-badge-icon, .completed-icon, .earnings-icon {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    
    .crypto-badge-amount, .completed-amount, .earnings-amount {
        font-size: 18px;
    }
}

/* CTA Image Container */
.cta-image-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.cta-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.cta-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: all 0.5s ease;
}

.bonus-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.75s;
}

.bonus-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff7b00, #ff4500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.bonus-text {
    display: flex;
    flex-direction: column;
}

.bonus-amount {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    color: #ff4500;
}

.bonus-label {
    font-size: 14px;
    color: #000000;
}

/* Update media queries to include CTA image */
@media (max-width: 768px) {
    .cta-image-container {
        max-width: 400px;
    }
    
    .bonus-badge {
        padding: 10px 15px;
    }
    
    .bonus-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .cta-image-container {
        max-width: 300px;
    }
    
    .bonus-badge {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        padding: 8px 12px;
        gap: 8px;
    }
    
    .bonus-icon {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    
    .bonus-amount {
        font-size: 18px;
    }
}

/* Обеспечиваем отступ для контента под фиксированной навигацией */
.main-header {
    padding-top: var(--header-height);
}

/* Улучшения для hero-section на ПК-версии */
.hero-section .row {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-text-container {
    max-width: 800px;
    margin: 0 auto;
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 15px;
    font-weight: 500;
    margin: 6px;
    transition: all 0.3s ease;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 700;
    font-size: 18px;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 0 auto;
    min-width: 220px;
}

.users-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    margin: 0 auto;
}

/* Поддержка выравнивания для всех размеров экрана */
@media (min-width: 768px) {
    .hero-section .container {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .hero-text-container {
        padding: 0 15px;
    }
    
    .feature-chip {
        margin: 4px;
    }
}

@media (max-width: 576px) {
    .feature-chip {
        padding: 8px 15px;
        font-size: 14px;
        margin: 3px;
    }
} 