@font-face {
    font-family: 'FF Pepe';
    src: url('fonts/file2.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FF Pepe';
    src: url('fonts/file.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Болотный зеленый (основной) */
    --swamp-green: #4a7c59;
    --swamp-green-dark: #3d6b4f;
    --swamp-green-light: #5a8c69;
    --swamp-green-darker: #2d4f3a;
    --swamp-bg: #1a2e1f;
    --swamp-bg-light: #243829;
    
    /* Кислотный зеленый (только для акцентов) */
    --acid-green: #00ff00;
    --acid-green-light: #33ff33;
    
    --text-white: #ffffff;
    --text-green: #6b9c7a;
    --block-green: #4a7c59;
    --block-green-light: #5a8c69;
    --block-shadow: rgba(74, 124, 89, 0.4);
    --acid-shadow: rgba(0, 255, 0, 0.3);
}

body {
    font-family: 'FF Pepe', 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--swamp-bg) 0%, var(--swamp-bg-light) 100%);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    direction: rtl;
    text-align: right;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'FF Pepe', 'Inter', sans-serif;
}

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

/* Snow Animation */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: #ffffff;
    font-size: 1em;
    animation: snowfall linear infinite;
    opacity: 0.7;
}

@keyframes snowfall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 46, 31, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--swamp-green);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--swamp-green-light);
    font-family: 'FF Pepe', 'Inter', sans-serif;
}

.pepe-emoji {
    font-size: 32px;
    animation: bounce 2s infinite;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--swamp-green-light);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--swamp-green-light);
    transition: width 0.3s;
}

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

.start-btn {
    background: var(--swamp-green);
    color: var(--text-white);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--block-shadow);
    font-family: 'FF Pepe', 'Inter', sans-serif;
}

.start-btn:hover {
    background: var(--swamp-green-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--block-shadow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

[dir="rtl"] .hero-content {
    text-align: center;
}

.pepe-blocks {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.block {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--swamp-green) 0%, var(--swamp-green-light) 100%);
    border: 3px solid var(--swamp-green-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px var(--block-shadow), inset 0 2px 10px rgba(90, 140, 105, 0.2);
    transform: rotate(-5deg);
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s;
}

.block:hover {
    transform: rotate(0deg) scale(1.1);
}

.block-1 { animation-delay: 0s; }
.block-2 { animation-delay: 0.5s; transform: rotate(5deg); }
.block-3 { animation-delay: 1s; transform: rotate(-3deg); }
.block-4 { animation-delay: 1.5s; transform: rotate(4deg); }

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

.pepe-frog {
    font-size: 60px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.hero-title {
    font-size: 120px;
    font-weight: 800;
    color: var(--swamp-green-light);
    text-shadow: 0 0 30px var(--swamp-green), 0 0 60px var(--swamp-green);
    margin: 20px 0;
    letter-spacing: 5px;
    font-family: 'FF Pepe', 'Inter', sans-serif;
}

.video-icon-container {
    margin: 40px 0;
}

.start-watching-btn {
    background: var(--swamp-green);
    color: var(--text-white);
    border: 3px solid var(--swamp-green-light);
    padding: 18px 50px;
    font-size: 24px;
    font-weight: 400;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px var(--block-shadow);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'FF Pepe', 'Inter', sans-serif;
}

.start-watching-btn:hover {
    background: var(--swamp-green-light);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px var(--block-shadow);
}

.start-watching-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.hero-description {
    font-size: 20px;
    color: var(--text-green);
    max-width: 600px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 24px;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-white);
    line-height: 1.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}


/* About Section */
.about {
    padding: 100px 0;
    background: var(--swamp-bg-light);
}

.section-title {
    font-size: 64px;
    font-weight: 800;
    text-align: center;
    color: var(--swamp-green-light);
    margin-bottom: 60px;
    text-shadow: 0 0 20px var(--swamp-green);
    font-family: 'FF Pepe', 'Inter', sans-serif;
}

.winter-title {
    color: var(--acid-green);
    text-shadow: 0 0 30px var(--acid-green), 0 0 60px var(--acid-green);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px var(--acid-green), 0 0 40px var(--acid-green);
    }
    to {
        text-shadow: 0 0 30px var(--acid-green), 0 0 60px var(--acid-green), 0 0 80px var(--acid-green);
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.pepe-blocks-inline {
    display: flex;
    gap: 20px;
}

.block-small {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--swamp-green) 0%, var(--swamp-green-light) 100%);
    border: 3px solid var(--swamp-green-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px var(--block-shadow);
    animation: float 3s ease-in-out infinite;
}

.block-small:nth-child(1) { animation-delay: 0s; }
.block-small:nth-child(2) { animation-delay: 0.7s; }
.block-small:nth-child(3) { animation-delay: 1.4s; }

.block-small .pepe-frog {
    font-size: 50px;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-white);
}

.about-text p {
    margin-bottom: 20px;
}

/* How to Start Section */
.how-to-start {
    padding: 100px 0;
    background: var(--swamp-bg);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 30px;
    background: var(--swamp-bg-light);
    border: 2px solid var(--swamp-green);
    border-radius: 20px;
    box-shadow: 0 8px 25px var(--block-shadow);
    transition: all 0.3s;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--block-shadow);
}

.step-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.block-step {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--swamp-green) 0%, var(--swamp-green-light) 100%);
    border: 3px solid var(--swamp-green-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px var(--block-shadow);
}

.block-step .pepe-frog {
    font-size: 40px;
}

.step h3 {
    font-size: 24px;
    color: var(--swamp-green-light);
    margin-bottom: 15px;
    font-family: 'FF Pepe', 'Inter', sans-serif;
}

.step p {
    color: var(--text-white);
    line-height: 1.6;
}

/* Winter Promo Section */
.winter-promo {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--swamp-bg) 0%, var(--swamp-bg-light) 50%, var(--swamp-bg) 100%);
    position: relative;
    overflow: hidden;
}

.winter-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.winter-text {
    margin-bottom: 60px;
}

.winter-text h3 {
    font-size: 36px;
    color: var(--swamp-green-light);
    margin-bottom: 20px;
    font-family: 'FF Pepe', 'Inter', sans-serif;
}

.winter-text p {
    font-size: 20px;
    color: var(--text-white);
    line-height: 1.8;
    margin: 15px 0;
}

.winter-highlight {
    color: var(--acid-green) !important;
    font-weight: 700;
    text-shadow: 0 0 10px var(--acid-green);
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Fireworks Animation */
.fireworks-container {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 40px 0;
    overflow: hidden;
}

.firework {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: firework-explode 1s ease-out forwards;
}

@keyframes firework-explode {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(20);
        opacity: 0;
    }
}

.firework-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    animation: particle-fly 1.5s ease-out forwards;
}

@keyframes particle-fly {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--dx), var(--dy)) scale(0);
        opacity: 0;
    }
}

/* Marquee (бегущая строка) */
.marquee-container {
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
    background: rgba(74, 124, 89, 0.1);
    padding: 20px 0;
    border-top: 2px solid var(--swamp-green);
    border-bottom: 2px solid var(--swamp-green);
}

.marquee {
    display: flex;
    gap: 60px;
    animation: marquee-scroll 20s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-size: 60px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(90, 140, 105, 0.5));
    animation: item-bounce 2s ease-in-out infinite;
}

.marquee-item:nth-child(1) { animation-delay: 0s; }
.marquee-item:nth-child(2) { animation-delay: 0.25s; }
.marquee-item:nth-child(3) { animation-delay: 0.5s; }
.marquee-item:nth-child(4) { animation-delay: 0.75s; }
.marquee-item:nth-child(5) { animation-delay: 1s; }

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

@keyframes item-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Telegram Button */
.telegram-button-container {
    margin-top: 50px;
    text-align: center;
}

.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
    color: var(--text-white);
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    font-family: 'FF Pepe', 'Inter', sans-serif;
}

.telegram-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.telegram-btn:hover::before {
    left: 100%;
}

.telegram-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.6);
    background: linear-gradient(135deg, #229ED9 0%, #0088cc 100%);
}

.telegram-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.telegram-icon {
    font-size: 28px;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--swamp-bg-light);
}

.benefits-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: var(--swamp-bg);
    border: 2px solid var(--swamp-green);
    border-radius: 20px;
    box-shadow: 0 8px 25px var(--block-shadow);
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: var(--swamp-green-light);
    box-shadow: 0 15px 40px var(--block-shadow);
}

.benefit-block {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--swamp-green) 0%, var(--swamp-green-light) 100%);
    border: 3px solid var(--swamp-green-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px var(--block-shadow);
    animation: float 3s ease-in-out infinite;
}

.benefit-block .pepe-frog {
    font-size: 50px;
}

.benefit-item h3 {
    font-size: 24px;
    color: var(--swamp-green-light);
    margin-bottom: 15px;
    font-family: 'FF Pepe', 'Inter', sans-serif;
}

.benefit-item p {
    color: var(--text-white);
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: var(--swamp-bg);
    border-top: 2px solid var(--swamp-green);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 32px;
    font-weight: 800;
    color: var(--swamp-green-light);
    margin-bottom: 30px;
    font-family: 'FF Pepe', 'Inter', sans-serif;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 20px auto;
    color: var(--text-white);
    line-height: 1.8;
    opacity: 0.8;
}

.footer-copyright {
    margin-top: 30px;
    color: var(--swamp-green-light);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        position: relative;
    }

    .nav {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 40px;
    }

    .about-content,
    .tokenomics-content {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .roadmap-phases {
        flex-direction: column;
        align-items: center;
    }

    .block {
        width: 80px;
        height: 80px;
    }

    .pepe-frog {
        font-size: 40px;
    }

    .fireworks-container {
        height: 200px;
    }

    .marquee-item {
        font-size: 40px;
    }

    .winter-text h3 {
        font-size: 28px;
    }

    .benefits-content {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

