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

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background: #0a0a0a;
    min-height: 100vh;
    position: relative;
}

/* Размытое фиолетовое пятно в центре */
.crypto-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center,
        rgba(76, 29, 149, 0.4) 0%,
        rgba(76, 29, 149, 0.3) 20%,
        rgba(76, 29, 149, 0.2) 40%,
        rgba(76, 29, 149, 0.1) 60%,
        transparent 80%);
    filter: blur(40px);
    z-index: -1;
    animation: floatBlur 15s ease-in-out infinite;
}

@keyframes floatBlur {
    0%, 100% {
        transform: scale(1) translate(0, 0);
    }
    33% {
        transform: scale(1.1) translate(-20px, 10px);
    }
    66% {
        transform: scale(0.9) translate(20px, -10px);
    }
}

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

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

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

.meme-image-container {
    margin-bottom: 40px;
    animation: float 3s ease-in-out infinite;
    text-align: center;
}

.meme-title {
    font-size: 72px;
    font-weight: bold;
    color: #fff;
    margin-top: 20px;
    text-shadow: 0 0 20px rgba(76, 175, 80, 0.8),
                 0 0 40px rgba(76, 175, 80, 0.6),
                 0 0 60px rgba(76, 175, 80, 0.4);
    letter-spacing: 3px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(76, 175, 80, 0.8),
                     0 0 40px rgba(76, 175, 80, 0.6),
                     0 0 60px rgba(76, 175, 80, 0.4);
    }
    to {
        text-shadow: 0 0 25px rgba(76, 175, 80, 1),
                     0 0 50px rgba(76, 175, 80, 0.8),
                     0 0 75px rgba(76, 175, 80, 0.6);
    }
}

.meme-image {
    max-width: 100%;
    width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

/* Social Buttons */
/* Token Field */
.token-field {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.token-content {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(251, 146, 60, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    min-width: 350px;
}

.token-label {
    color: #fb923c;
    font-weight: bold;
    font-size: 16px;
}

.token-address {
    color: rgba(255, 255, 255, 0.8);
    font-family: monospace;
    font-size: 14px;
    flex: 1;
}

.copy-btn {
    background: transparent;
    border: 1px solid #fb923c;
    color: #fb923c;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(251, 146, 60, 0.1);
    transform: scale(1.05);
}

.social-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    width: 230px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 20px;
    color: white;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(251, 146, 60, 0.4);
    border-color: #fb923c;
    background: rgba(251, 146, 60, 0.1);
}

.social-btn.twitter {
    background: #0d0d0d;
    border: 2px solid #fb923c;
    color: #fb923c;
    animation: none;
}

.social-btn.buy {
    background: #0d0d0d;
    border: 2px solid #fb923c;
    color: #fb923c;
    animation: none;
}

@keyframes goldGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

.stats-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.stats-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-style: italic;
}

.stats-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    min-width: 150px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.video-container {
    max-width: 560px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

video {
    width: 100%;
    height: auto;
    display: block;
}

/* Description Section */
.description {
    padding: 80px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.description h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.description p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .meme-image {
        width: 300px;
    }

    .social-buttons {
        gap: 15px;
    }

    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .description h2 {
        font-size: 36px;
    }

    .description p {
        font-size: 16px;
    }

    .description-content {
        padding: 25px;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .meme-image {
        width: 250px;
    }

    .social-buttons {
        gap: 10px;
    }

    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .social-btn.buy {
        padding: 0 20px;
        font-size: 14px;
    }
}