/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img, video, iframe {
    cursor: none;
}
#banner-bg-video-mobile{
    display: none;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    background-image: url('images/arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#third_text_mobile{
    display: none;
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.nav-brand h2 {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    margin: 0;
}

.nav-brand {
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    flex-wrap: wrap;
    margin: 0 auto;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    cursor: none;
}

.nav-menu a:hover {
    color: #6366f1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Scroll Banner (1) */
.scroll-banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.scroll-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.scroll-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scroll-content p {
    font-size: 1.5rem;
    color: #a1a1aa;
    margin-bottom: 3rem;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.scroll-indicator span {
    color: #a1a1aa;
    font-weight: 500;
}

/* Scroll banner new layout */
.scroll-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-image {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.loading-video {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Parallax overlay */
.parallax-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax-content {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-20px);
}

.parallax-image,
.parallax-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease-in-out;
    cursor: none;
}

.parallax-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.parallax-loading {
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.parallax-arrow {
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Strange Image (2) */
.strange-image {
    min-height: 40vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.video-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    z-index: 1;
}

.strange-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-content {
    width: 100%;
    height: 40vh;
    position: relative;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.element {
    position: absolute;
    font-size: 3rem;
    color: #6366f1;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

.element-3 {
    top: 40%;
    left: 50%;
    animation-delay: 3s;
}

.element-4 {
    bottom: 30%;
    left: 30%;
    animation-delay: 4.5s;
}

/* Swap Section (3) */
#swap {
    position: relative;
}

.swap-container {
    max-width: 65%;
    margin: 0 auto;
    padding: 0 1rem;
}

.swap-container iframe {
    border-radius: 12px;
    background: transparent;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 100%;
    position: relative;
    z-index: 30;
    cursor: none;
}

.swap-video-left{
    position: absolute;
    transform: translateY(-50%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  
}
.about-video-left {
    position: absolute;
    transform: translateY(-50%);
}
.about-video-right {
    position: absolute;
    transform: translateY(-49%);
}

.swap-video-left {
    left: 0rem;
}

.about-video-left {
    left: -11rem;
    top: 67%;
}
.about-video-right {
    right: 1rem;
    top: 55%;
}
.swap-video-left video{
    width: 100%;
    height: 100%;
}
.about-video-left video {
    width: 100%;
    height: 85%;
    transform: rotate(20deg);
}
.about-video-right video {
    width: 99%;
    height: 80%;
    transform: rotate(11deg) scaleX(-1);
}

.swap-input {
    margin-bottom: 1.5rem;
}

.swap-input label {
    display: block;
    color: #a1a1aa;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.input-group input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px;
    color: #ffffff;
    font-size: 1rem;
}

.input-group select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px;
    color: #ffffff;
    font-size: 1rem;
    min-width: 100px;
}

.swap-arrow {
    text-align: center;
    margin: 1rem 0;
    font-size: 1.5rem;
    color: #6366f1;
}

.swap-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}



/* Gallery (4) - Dynamic Image Movement */
.gallery-grid {
    position: relative;
    width: 100vw;
    height: 80vh;
    margin-top: 4rem;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    z-index: 10;
}

.gallery-section {
    position: relative;
    overflow: hidden;
}

.gallery-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.gallery-item {
    position: absolute;
    width: 390px;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 20;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    cursor: none;
}

/* Gallery movement animations */
@keyframes galleryMove1 {
    0% {
        transform: translateX(-400px) translateY(-200px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(400px) translateY(200px);
        opacity: 0;
    }
}

@keyframes galleryMove2 {
    0% {
        transform: translateX(400px) translateY(-200px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(-400px) translateY(200px);
        opacity: 0;
    }
}

@keyframes galleryMove3 {
    0% {
        transform: translateX(-400px) translateY(200px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(400px) translateY(-200px);
        opacity: 0;
    }
}

@keyframes galleryMove4 {
    0% {
        transform: translateX(400px) translateY(200px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(-400px) translateY(-200px);
        opacity: 0;
    }
}

@keyframes galleryMove5 {
    0% {
        transform: translateX(-400px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(400px);
        opacity: 0;
    }
}

@keyframes galleryMove6 {
    0% {
        transform: translateX(400px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(-400px);
        opacity: 0;
    }
}

.tunnel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
    width: 100%;
}

.tunnel-item {
    position: absolute;
    width: 300px;
    height: 200px;
    opacity: 1;
    animation: randomTunnelMove 6s linear infinite;
    transform-origin: center;
    z-index: 10;
    pointer-events: auto;
}

.tunnel-item:hover {
    z-index: 20;
}

.tunnel-item:nth-child(2n) {
    width: 280px;
    height: 180px;
}

.tunnel-item:nth-child(3n) {
    width: 320px;
    height: 220px;
}

.tunnel-item[data-direction="top-left"] {
    animation: tunnelFromTopLeft 6s linear infinite;
}

.tunnel-item[data-direction="top-right"] {
    animation: tunnelFromTopRight 6s linear infinite;
}

.tunnel-item[data-direction="bottom-left"] {
    animation: tunnelFromBottomLeft 6s linear infinite;
}

.tunnel-item[data-direction="bottom-right"] {
    animation: tunnelFromBottomRight 6s linear infinite;
}

.tunnel-item[data-direction="left"] {
    animation: tunnelFromLeft 6s linear infinite;
}

.tunnel-item[data-direction="right"] {
    animation: tunnelFromRight 6s linear infinite;
}

.tunnel-item[data-direction="top"] {
    animation: tunnelFromTop 6s linear infinite;
}

.tunnel-item[data-direction="bottom"] {
    animation: tunnelFromBottom 6s linear infinite;
}

/* Additional animation classes */
.tunnel-item[data-animation="rotate"] {
    animation: tunnelRotate 6s linear infinite;
}

.tunnel-item[data-animation="scale"] {
    animation: tunnelScale 6s linear infinite;
}

.tunnel-item[data-animation="bounce"] {
    animation: tunnelBounce 6s linear infinite;
}

@keyframes tunnelFromTopLeft {
    0% {
        transform: translate(-100px, -100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, 100px);
        opacity: 0;
    }
}

@keyframes tunnelFromTopRight {
    0% {
        transform: translate(100px, -100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(-100px, 100px);
        opacity: 0;
    }
}

@keyframes tunnelFromBottomLeft {
    0% {
        transform: translate(-100px, 100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -100px);
        opacity: 0;
    }
}

@keyframes tunnelFromBottomRight {
    0% {
        transform: translate(100px, 100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(-100px, -100px);
        opacity: 0;
    }
}

@keyframes tunnelFromLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100px);
        opacity: 0;
    }
}

@keyframes tunnelFromRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(-100px);
        opacity: 0;
    }
}

@keyframes tunnelFromTop {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100px);
        opacity: 0;
    }
}

@keyframes tunnelFromBottom {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Additional random animations */
@keyframes tunnelRotate {
    0% {
        transform: translateX(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes tunnelScale {
    0% {
        transform: translateX(-100px) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100px) scale(1.5);
        opacity: 0;
    }
}

@keyframes tunnelBounce {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    40% {
        transform: translateX(-50px) translateY(-20px);
    }
    60% {
        transform: translateX(0px) translateY(0px);
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(100px);
        opacity: 0;
    }
}

.gallery-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.gallery-card:hover::before {
    left: 100%;
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.gallery-icon {
    font-size: 3.5rem;
    color: #6366f1;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-icon {
    transform: scale(1.1);
}

.gallery-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.gallery-card:hover h3 {
    color: #6366f1;
}

.gallery-card p {
    color: #a1a1aa;
    line-height: 1.6;
    font-size: 1rem;
}

/* Dynamic tunnel animation */
.tunnel-item {
    animation-delay: 0s;
    z-index: 10;
}

.tunnel-item:nth-child(even) {
    animation-delay: 0.5s;
}

.tunnel-item:nth-child(3n) {
    animation-delay: 1s;
}

.tunnel-item:nth-child(4n) {
    animation-delay: 1.5s;
}

/* Responsive gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

@keyframes tunnelMoveVerticalUp {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

@keyframes tunnelMoveVerticalDown {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100px);
        opacity: 0;
    }
}

/* Banner Text (5) */
.banner-text {
    min-height: 24vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
    gap: 60px;
}

.marquee-item {
    flex-shrink: 0;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-image {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2);
    transition: all 0.3s ease;
    max-height: 20vh;
}

.marquee-item:hover .marquee-image {
    filter: brightness(1) contrast(1);
    transform: scale(1.1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Добавляем медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
    .marquee-image {
        max-height: 15vh;
    }
    
    .marquee-item {
        margin: 0 15px;
    }
    
    .marquee {
        animation-duration: 15s;
    }
}

/* Social Links (6) */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: none;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

/* Banner Block (7) */
.banner-block {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.banner-block .container,
.banner-block .banner-content {
    position: relative;
    z-index: 2;
}

.banner-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.banner-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #a1a1aa;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #6366f1;
}

.btn-secondary:hover {
    background: #6366f1;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideUpFromBottom 1.2s ease-out 0.3s both;
}

.crypto-animation {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
    transform: translateY(20px);
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-title-image {
    max-width: 100%;
    height: auto;
    max-height: 140px;
    object-fit: contain;
}

.swap-title-image {
    max-width: 100%;
    height: auto;
    max-height: 140px;
    object-fit: contain;
}

/* Swap decorative images */
.swap-decorative-images {
    position: relative;
    width: 100%;
    height: 0;
    pointer-events: none;
    z-index: 5;
}

.swap-decorative {
    position: absolute;
    max-width: 300px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.swap-decorative:hover {
    opacity: 1;
}

.swap-decorative-1 {
    top: 407px;
    left: 106%;
}

.swap-decorative-2 {
    top: -179px;
    right: 98%;
    transform: rotate(15deg) scaleX(-1);
}

.swap-decorative-3 {
    bottom: -289px;
    left: 81%;
    transform: rotate(-1deg) scaleX(-1);
}

.swap-decorative-4 {
    top: 448px;
    right: 137%;
    transform: rotate(-21deg);
}

/* Responsive adjustments for swap decorative images */
@media (max-width: 768px) {
    .swap-decorative {
        max-width: 80px;
    }
    
    .swap-decorative-1 {
        top: 10px;
        left: 10px;
    }
    
    .swap-decorative-2 {
        top: 10px;
        right: 10px;
    }
    
    .swap-decorative-3 {
        bottom: -288px;
    left: 81%;
    transform: rotate(1deg) scaleX(-1);
    }
    
    .swap-decorative-4 {
        bottom: 10px;
        right: 10px;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 180px;
    width: 100%;
    position: relative;
}

.about-text {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto -13rem auto;
    color: #ffffff;
    z-index: 10;
    position: relative;
    font-family: Impact, Charcoal, sans-serif;
}

.about-text-columns {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-text-left,
.about-text-right {
    flex: 1;
    text-align: left;
}

.about-text-bottom {
    text-align: center;
    margin-top: 31% !important;
    width: 100%;
    max-width: none;
    z-index: 20;
    position: relative;
}

.about-text p,
.about-text-left p,
.about-text-right p {
    color: #39FF14 !important;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.4rem;
    font-family: Impact, Charcoal, sans-serif;
    text-align: left;
}

.about-text-bottom p {
    font-size: 1.6rem;
    text-align: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 2rem;
    z-index: 20;
    position: relative;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
    font-family: Impact, Charcoal, sans-serif;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: Impact, Charcoal, sans-serif;
}

.about-text ul {
    list-style: none;
}

.about-text li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #a1a1aa;
}

.about-text li i {
    color: #6366f1;
    margin-right: 1rem;
    font-size: 1.125rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #a1a1aa;
    font-weight: 500;
}

/* How to Buy Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step-content p {
    color: #a1a1aa;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-icon {
    font-size: 2rem;
    color: #6366f1;
}

/* Tokenomics Section */
.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tokenomics-chart {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.chart-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.chart-item:hover {
    transform: translateY(5px);
}

.chart-slice {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--color) 0deg calc(var(--percentage) * 3.6deg), rgba(255, 255, 255, 0.1) calc(var(--percentage) * 3.6deg) 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
}

.chart-slice::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: #000000;
    border-radius: 50%;
}

.chart-slice span {
    position: relative;
    z-index: 2;
    font-weight: 700;
    font-size: 1.125rem;
    color: #ffffff;
}

.chart-label {
    font-weight: 600;
    color: #ffffff;
}

.token-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.token-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.info-grid {
    display: grid;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-label {
    color: #a1a1aa;
    font-weight: 500;
}

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

/* FAQs Section */
.faqs-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.faq-question i {
    color: #6366f1;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #a1a1aa;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: none;
}

.footer-section ul li a:hover {
    color: #6366f1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: none;
}

.social-links a:hover {
    background: #6366f1;
    transform: translateY(2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #a1a1aa;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6366f1;
}

/* Additional bottom-up animations */
@keyframes slideUpFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: slideUpFromBottom 1s ease-out;
}

.section-header {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .scroll-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .scroll-left,
    .scroll-right {
        flex: none;
        width: 100%;
    }
    
    .scroll-image,
    .loading-video {
        max-height: 200px;
    }
    
    .nav {
        justify-content: space-between;
    }
    
    .nav-menu {
        display: none;
        gap: 1rem;
        margin: 0;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-chart {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .swap-container {
        max-width: 95%;
        padding: 0 0.5rem;
    }
    
    .swap-video-left,
    .about-video-left,
    .about-video-right {
        position: static;
        transform: none;
        width: 100%;
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .swap-container iframe {
        height: 500px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-link {
        width: 60px;
        height: 60px;
    }
}
@media (max-width: 1679px) and (min-width: 1440px) {
    .gallery-item {
        width: 240px;
        height: 240px;
    }
    .about-social-link img{
        width: 45px !important;
        height: 45px !important;
    }
    #banner-bg-video-mobile{
        display: none;
    }
    .text-stretch-container{
        width: 133% !important;
        margin-bottom: 47px !important;
    }
    #third_text_mobile{
        display: none;
    }
    .about-text-bottom {
        margin-top: 12% !important;
    }
    .marquee-image{
        height: 80%;
    }
    .gallery-item img {
        width: 240px;
        height: 240px;
    }
    .about-text {
        margin-top: -6%;
    }
    .swap-decorative {
        max-width: 215px;
    }
    .swap-decorative-2{
        top: -222px;
    right: 81%;
    transform: rotate(37deg) scaleX(-1);
    }
    .swap-decorative-4{
        top: 523px;
    right: 99%;
    transform: rotate(-21deg);
    }
    .swap-decorative-1{
        top: 490px;
        left: 90%;
    }
    .parallax-content {
        width: 125px;
        height: 125px;
        transform: translateX(-10px);
    }
    .swap-title-image,
    .gallery-title-image{
        max-height: 110px;
    }
    .about-video-left{
        left: -11rem;
        top: 58%;
    }
    .about-video-left video{
        width: 69%;
        height: 75%;
        transform: rotate(24deg);
    }
    .about-video-right{
        right: -39rem;
    top: 29%;
    }
    .about-video-right video{
        width: 58%;
        height: 75%;
        transform: rotate(1deg) scaleX(-1);
    }
    .about-text-columns {
        margin-left: 4%;
    }
}
@media (max-width: 1439px) {
    .swap-container {
        max-width: 80%;
        padding: 0 1rem;
    }
    .about-social-links{
        gap: 1rem;
        top: 67%;
    }
    #banner-bg-video-desc{
        display: none;
    }
    #banner-bg-video-mobile{
        display: block;
    }
    #third_text{
        display: none;
    }
    #third_text_mobile {
        display: contents;
    }
    .about-text-bottom{
        margin-bottom: 10%;
        margin-top: 29% !important;
    }
    .about-text{
        margin-top: -19%;
    }
    .marquee-image{
        max-height: 10dvh;
    }
    .text-stretch-container{
        width: 35% !important;
        left: 10% !important;
    }
    .marquee{
        gap: 30px;
        animation-duration: 30s;
    }
    .swap-video-right {
        width: 150px;
        height: 300px;
    }
    #swap {
        margin-bottom: 10%;
    }
    
    .swap-container iframe {
        height: 470px;
        width: 90%;
        margin: 0 auto;
        display: block;
    }
    .gallery-title-image,
    .swap-title-image{
        max-height: 97px;
    }
    
    .gallery-item {
        width: 140px;
        height: 140px;
    }
    
    .gallery-item img {
        width: 140px;
        height: 140px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .strange-video {
        width: 100%;
        height: 100%;
    }
    
    .parallax-content {
        width: 100px;
        height: 100px;
        transform: translateX(-10px);
    }
    
    .custom-cursor {
        display: none;
    }
    .whois-text{
        height: 50%;
        width: 50%;
    }
    
    .swap-decorative-1 {
        top: 471px;
        left: 59%;
        transform: translateX(-50%);
        z-index: 50;
        max-width: 140px;
        display: block;
        opacity: 0.8;
    }
    
    .swap-decorative-2 {
        top: -91px;
        left: 36%;
        z-index: 50;
        max-width: 120px;
        display: block;
        opacity: 0.8;
    }
    
    .swap-decorative-4 {
        top: 510px;
        left: -26px;
        z-index: 50;
        max-width: 120px;
        display: block;
        opacity: 0.8;
    }
    .swap-decorative-3 {
        bottom: -172px;
        left: 81%;
        transform: rotate(1deg) scaleX(-1);
    }
    .swap-video-left {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    
    .swap-video-left video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .about-video-left{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        z-index: 2;
        
    }
    .about-video-right{
        position: absolute;
        top: 50%;
        left: 37%;
        transform: translate(-50%, -50%);
        width: 300%;
        height: 37%;
        z-index: 2;
    }
    .about-video-left video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .about-video-right video {
        width: 120%;
        height: 150%;
        transform: rotate(106deg);
    }
    .about-video-left{
        display: none;
    }
    .about-video-right{
        position: absolute;
        top: 50%;
        left: 46%;
        transform: translate(-50%, -50%);
        width: 300%;
        height: 37%;
        z-index: 2;
    }
    .about-text-columns{
        flex-direction: column;
    }
    .whois-text {
        font-size: 1.1rem !important;
        width: auto !important;
        height: auto !important;
        margin: 444px 0px -10px -3px !important;
        display: block !important;
        text-align: center !important;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

.about-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12%;
    margin: 0;
    z-index: 10;
}

.about-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
    padding: 0;
    transition: transform 0.2s;
}

.about-social-link img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: transform 0.2s;
}

.about-social-link:hover {
    background: none;
    transform: scale(1.13);
    box-shadow: none;
}

.about-social-link:hover img {
    transform: scale(1.13);
}

@media (max-width: 768px) {
    .about-social-links {
        gap: 1rem;
    }
    .about-social-link {
        width: auto;
        height: auto;
    }
    .about-social-link img {
        width: 45px;
        height: 45px;
    }
}

.whois-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0 0 0;
}

.whois-text {
    font-family: Impact, Charcoal, sans-serif;
    font-size: 1.7rem;
    color: #fcfe81;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.1;
    text-shadow: 1px 1px 0 #e76b56, 2px 2px 0 #e76b56, 3px 3px 0 #e76b56, 4px 4px 0 #e76b56, 5px 5px 0 #e76b56, 6px 6px 0 #e76b56, 0 2px 0 #e76b56, 0 4px 0 #e76b56, 0 6px 8px #e76b56;
    transform: perspective(300px) rotateX(12deg) skewX(-8deg);
    font-weight: bold;
    padding: 0.5em 0.8em;
    background: transparent;
    display: ruby-text;
    margin-top: 83%;
    position: relative;
    cursor: none;
}

@media (max-width: 768px) {
    .whois-text {
        font-size: 1.5rem;
        padding: 0.3em 0.2em;
    }
}

.copy-notification {
    position: absolute;
    top: 92%;
    left: calc(100% + 20px);
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.95);
    color: #4ade80;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    border: 1px solid rgba(74, 222, 128, 0.3);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.copy-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(5px);
}

.text-stretch-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 215%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.7rem;
    text-align: center;
    color: #39FF14 !important;
    font-family: Impact, Charcoal, sans-serif;
    z-index: 20;
    padding: 0 2rem;
    margin: 0;
}

.text-char {
    flex: 1;
    text-align: center;
    font-size: 1.7rem;
    color: #39FF14 !important;
    font-family: Impact, Charcoal, sans-serif;
}

/* Специальные стили для пробелов */
.text-char:has-text(' ') {
    flex: 0.5;
}

@media (max-width: 768px) {
    
    .about-video-right {
        display: none !important;
    }
    #strange-image{
        display: none !important;
    }
    
    /* Нормальный скролл для мобильных */
    body {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Убираем автоматический скролл вниз на мобильных */
    .mobile-no-auto-scroll {
        scroll-behavior: auto;
    }
    .swap-video-left{
        display: none !important;
    }
    .about-video-left{
        display: none !important;
    }
    #gallery{
        display: none !important;
    }
}