* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-icon span {
    width: 20px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-icon.active span:nth-child(2) {
    transform: rotate(-45deg);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
    padding: 0 20px;
}

.hero-content [data-animate] {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content [data-animate].visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-content [data-animate].exit {
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
}

.hero-content h1 {
    font-size: 5.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.hero-content h3 {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 24px;
    opacity: 0.8;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 32px;
    opacity: 0.7;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    background-color: #e0e0e0;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Features */
.features {
    padding: 140px 20px;
    background-color: #000;
}

.feature-item {
    max-width: 1400px;
    margin: 0 auto 120px;
    display: flex;
    align-items: center;
    gap: 64px;
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-item.reverse {
    flex-direction: row-reverse;
    transform: translateX(80px);
}

.feature-item.reverse.visible {
    transform: translateX(0);
}

.feature-image-wrapper {
    position: relative;
    width: 50%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    opacity: 0.9;
    filter: grayscale(80%);
    mask-image: radial-gradient(circle, transparent 0%, white 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, transparent 0%, white 30%, transparent 70%);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.7s cubic-bezier(0.4, 0, 0.2, 1), mask-image 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-image:hover {
    opacity: 1;
    filter: grayscale(0%);
    mask-image: none;
    -webkit-mask-image: none;
}

.feature-text h3 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-text p {
    font-size: 1.2rem;
    opacity: 0.7;
    max-width: 450px;
}

/* Explore */
.explore {
    padding: 140px 20px;
    background-color: #1a1a1a;
}

.explore h2 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 80px;
    text-align: center;
    opacity: 0;
    transform: scale(0.9) rotate(-3deg);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore h2.visible {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.explore-items {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.explore-item {
    display: flex;
    align-items: center;
    gap: 64px;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.explore-item.reverse {
    flex-direction: row-reverse;
}

.explore-image-wrapper {
    position: relative;
    width: 50%;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)) border-box;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15), inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.explore-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 14px;
    filter: grayscale(100%);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-item:hover .explore-image {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.explore-text {
    width: 50%;
}

.explore-text h3 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.explore-text p {
    font-size: 1.3rem;
    opacity: 0.7;
    max-width: 500px;
}

/* Sellers */
.sellers {
    padding: 140px 20px;
    background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
    text-align: center;
}

a {
  text-decoration: none;
  color: rgb(255, 255, 255); /* Или любой другой цвет */
}

.sellers-content {
    max-width: 1400px;
    margin: 0 auto;
}

.sellers [data-animate] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sellers [data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

.sellers [data-animate].exit {
    opacity: 0;
    transform: translateY(-50px);
}

.sellers h2 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.sellers p {
    font-size: 1.3rem;
    opacity: 0.7;
    margin-bottom: 48px;
}

.sellers-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 48px;
}

.stat-item {
    opacity: 0;
    transform: scale(0.9) rotate(-5deg);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item.visible {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.stat-item.exit {
    opacity: 0;
    transform: scale(0.9) rotate(5deg);
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.6;
}

/* Mission */
.mission {
    padding: 140px 20px;
    background-color: #000;
    text-align: center;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.mission-content.exit {
    opacity: 0;
    transform: translateY(-60px);
}

.mission-content h2 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 32px;
}

.mission-content p {
    font-size: 1.3rem;
    opacity: 0.7;
    margin-bottom: 24px;
}

/* Community */
.community {
    padding: 140px 20px;
    background-color: #000;
}

.community h2 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 64px;
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.community h2.visible {
    opacity: 1;
    transform: scale(1);
}

.community-items {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.community-item {
    display: flex;
    align-items: center;
    gap: 48px;
    opacity: 0;
    transform: perspective(1200px) rotateX(15deg);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.community-item.visible {
    opacity: 1;
    transform: perspective(1200px) rotateX(0deg);
}

.community-item.reverse {
    flex-direction: row-reverse;
}

.community-icon-wrapper {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), background 0.7s ease;
}

.community-item:hover .community-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 113, 227, 0.1);
}

.community-icon {
    width: 100px;
    height: 100px;
    stroke: #fff;
    transition: stroke 0.7s ease;
}

.community-item:hover .community-icon {
    stroke: #0071e3;
}

.community-text {
    flex: 1;
}

.community-text h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.community-text p {
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    padding: 40px 20px;
    background-color: #1a1a1a;
    text-align: center;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-item, .explore-item, .community-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-item.reverse, .explore-item.reverse, .community-item.reverse {
        flex-direction: column;
    }

    .feature-image-wrapper, .explore-image-wrapper {
        width: 100%;
        max-width: 600px;
    }

    .explore-text {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content h3 {
        font-size: 1.8rem;
    }

    .sellers-stats {
        flex-direction: column;
        gap: 32px;
    }

    .explore-text h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-icon {
        display: flex;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content h3 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .features, .explore, .sellers, .mission, .community {
        padding: 80px 20px;
    }

    .community-icon-wrapper {
        width: 150px;
        height: 150px;
    }

    .community-icon {
        width: 75px;
        height: 75px;
    }

    .explore-image {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content h3 {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .explore h2, .sellers h2, .mission h2, .community h2 {
        font-size: 2.2rem;
    }

    .explore-text h3, .community-text h3 {
        font-size: 2rem;
    }

    .explore-text p {
        font-size: 1.1rem;
    }

    .explore-image {
        height: 300px;
    }
}