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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d1b2a 25%, #1a2a3a 50%, #2d4a3a 75%, #1a3a2a 100%);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

/* Заголовок и логотип */
.header {
    text-align: center;
    margin-bottom: 2rem;
    z-index: 20;
}

.main-image {
    width: 300px;
    height: 300px;
    margin-bottom: 1rem;
    border-radius: 50%;
    /* background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57); */
    background-clip: padding-box;
    padding: 3px;
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.4),
        0 0 60px rgba(0, 212, 170, 0.3),
        0 0 90px rgba(0, 168, 204, 0.2);
    animation: imageGlow 2s ease-in-out infinite alternate;
    transition: transform 0.3s ease;
}

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

@keyframes imageGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(0, 255, 136, 0.4),
            0 0 60px rgba(0, 212, 170, 0.3),
            0 0 90px rgba(0, 168, 204, 0.2);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(0, 255, 136, 0.6),
            0 0 80px rgba(0, 212, 170, 0.5),
            0 0 120px rgba(0, 168, 204, 0.4);
    }
}

.logo {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(45deg, #00ff88, #00d4aa, #00a8cc, #0088cc, #0066aa);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.5rem;
    color: #00d4aa;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.4);
}

.description {
    font-size: 1rem;
    color: #00a8cc;
    opacity: 0.9;
}

.contract-address {
    cursor: pointer;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    transition: all 0.3s ease;
    user-select: all;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    display: inline-block;
    margin-left: 0.5rem;
}

.contract-address:hover {
    background: rgba(0, 212, 170, 0.2);
    border-color: rgba(0, 212, 170, 0.5);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
    transform: scale(1.02);
}

.contract-address:active {
    transform: scale(0.98);
    background: rgba(0, 212, 170, 0.3);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Социальные ссылки */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.social-link::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 ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link.twitter {
    background: linear-gradient(45deg, #00ff88, #00d4aa, #00a8cc, #0088cc, #0066aa);
    background-size: 400% 400%;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    animation: gradientShift 3s ease-in-out infinite;
}

.social-link.twitter:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 255, 136, 0.5),
        0 0 30px rgba(0, 212, 170, 0.4),
        0 0 50px rgba(0, 168, 204, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    animation-duration: 1s;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.social-link.telegram {
    background: linear-gradient(45deg, #00a8cc, #0088cc, #0066aa, #00d4aa, #00ff88);
    background-size: 400% 400%;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
    animation: gradientShift 3s ease-in-out infinite reverse;
}

.social-link.telegram:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 168, 204, 0.5),
        0 0 30px rgba(0, 136, 204, 0.4),
        0 0 50px rgba(0, 102, 170, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    animation-duration: 1s;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.social-link.alert-bot {
    background: linear-gradient(45deg, #feca57, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    color: white;
    box-shadow: 0 4px 15px rgba(254, 202, 87, 0.3);
    animation: gradientShift 3s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
}

.social-link.alert-bot:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(254, 202, 87, 0.5),
        0 0 30px rgba(255, 107, 107, 0.4),
        0 0 50px rgba(78, 205, 196, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    animation-duration: 1s;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

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

/* Контейнер для волн */
.waves-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Базовые стили для волн */
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(78, 205, 196, 0.3) 25%, 
        rgba(69, 183, 209, 0.5) 50%, 
        rgba(150, 206, 180, 0.3) 75%, 
        transparent 100%);
    border-radius: 50% 50% 0 0;
    animation: waveMove 4s ease-in-out infinite;
    filter: blur(1px);
    box-shadow: 0 0 50px rgba(78, 205, 196, 0.3);
    will-change: transform, filter, box-shadow;
    transition: transform 0.2s ease-out, filter 0.2s ease-out, box-shadow 0.2s ease-out;
}

/* Индивидуальные настройки для каждой волны */
.wave-1 {
    height: 80px;
    animation-delay: 0s;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 107, 0.4) 25%, 
        rgba(78, 205, 196, 0.6) 50%, 
        rgba(69, 183, 209, 0.4) 75%, 
        transparent 100%);
    box-shadow: 0 0 60px rgba(255, 107, 107, 0.4);
}

.wave-2 {
    height: 100px;
    animation-delay: -1s;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(69, 183, 209, 0.3) 25%, 
        rgba(150, 206, 180, 0.5) 50%, 
        rgba(254, 202, 87, 0.3) 75%, 
        transparent 100%);
    box-shadow: 0 0 70px rgba(69, 183, 209, 0.3);
}

.wave-3 {
    height: 120px;
    animation-delay: -2s;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(150, 206, 180, 0.4) 25%, 
        rgba(254, 202, 87, 0.6) 50%, 
        rgba(255, 107, 107, 0.4) 75%, 
        transparent 100%);
    box-shadow: 0 0 80px rgba(150, 206, 180, 0.4);
}

.wave-4 {
    height: 90px;
    animation-delay: -3s;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(254, 202, 87, 0.3) 25%, 
        rgba(255, 107, 107, 0.5) 50%, 
        rgba(78, 205, 196, 0.3) 75%, 
        transparent 100%);
    box-shadow: 0 0 90px rgba(254, 202, 87, 0.3);
}

.wave-5 {
    height: 110px;
    animation-delay: -1.5s;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(78, 205, 196, 0.2) 25%, 
        rgba(69, 183, 209, 0.4) 50%, 
        rgba(150, 206, 180, 0.2) 75%, 
        transparent 100%);
    box-shadow: 0 0 100px rgba(78, 205, 196, 0.2);
}

/* Анимация движения волн */
@keyframes waveMove {
    0% {
        transform: translateX(-50%) translateY(0) scaleY(1);
    }
    25% {
        transform: translateX(-50%) translateY(-10px) scaleY(1.1);
    }
    50% {
        transform: translateX(-50%) translateY(0) scaleY(1);
    }
    75% {
        transform: translateX(-50%) translateY(-5px) scaleY(0.9);
    }
    100% {
        transform: translateX(-50%) translateY(0) scaleY(1);
    }
}

/* Анимация градиента для логотипа */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Частицы */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 20px;
    height: 30px;
    background: radial-gradient(ellipse at center, 
        rgba(255, 107, 107, 0.9) 0%, 
        rgba(254, 202, 87, 0.8) 20%, 
        rgba(78, 205, 196, 0.7) 40%, 
        rgba(69, 183, 209, 0.5) 60%, 
        rgba(150, 206, 180, 0.3) 80%, 
        transparent 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: lavaFloat 8s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(255, 107, 107, 0.6),
        0 0 60px rgba(254, 202, 87, 0.4),
        inset 0 0 20px rgba(78, 205, 196, 0.3);
    filter: blur(0.5px);
    will-change: transform, opacity, border-radius;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, border-radius 0.3s ease-out;
}
.lava-particle {
    position: absolute;
    width: 20px;
    height: 30px;
    background: radial-gradient(ellipse at center, 
        rgba(255, 107, 107, 0.9) 0%, 
        rgba(254, 202, 87, 0.8) 20%, 
        rgba(78, 205, 196, 0.7) 40%, 
        rgba(69, 183, 209, 0.5) 60%, 
        rgba(150, 206, 180, 0.3) 80%, 
        transparent 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    /* animation: lavaFloat 8s ease-in-out infinite; */
    box-shadow: 
        0 0 30px rgba(255, 107, 107, 0.6),
        0 0 60px rgba(254, 202, 87, 0.4),
        inset 0 0 20px rgba(78, 205, 196, 0.3);
    filter: blur(0.5px);
    will-change: transform, opacity, border-radius;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, border-radius 0.3s ease-out;
}
.particle:nth-child(1) {
    top: 80%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 12s;
    width: 25px;
    height: 35px;
}

.particle:nth-child(2) {
    top: 70%;
    left: 75%;
    animation-delay: -3s;
    animation-duration: 10s;
    width: 18px;
    height: 28px;
}

.particle:nth-child(3) {
    top: 85%;
    left: 45%;
    animation-delay: -6s;
    animation-duration: 14s;
    width: 22px;
    height: 32px;
}

.particle:nth-child(4) {
    top: 90%;
    left: 25%;
    animation-delay: -2s;
    animation-duration: 11s;
    width: 16px;
    height: 26px;
}

.particle:nth-child(5) {
    top: 75%;
    left: 65%;
    animation-delay: -4s;
    animation-duration: 13s;
    width: 20px;
    height: 30px;
}

@keyframes lavaFloat {
    0% {
        transform: translateY(0) translateX(0) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-40px) translateX(20px) scale(1.2) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-80px) translateX(-10px) scale(0.9) rotate(180deg);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-50px) translateX(30px) scale(1.3) rotate(270deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0) translateX(0) scale(1) rotate(360deg);
        opacity: 0.6;
    }
}

/* Эффекты при наведении курсора */
.wave:hover {
    filter: blur(0px) brightness(2.5) saturate(2);
    box-shadow: 0 0 200px rgba(78, 205, 196, 1), 0 0 300px rgba(69, 183, 209, 0.8);
    transform: translateX(-50%) translateY(-25px) scaleY(1.5);
    transition: all 0.2s ease;
    z-index: 10;
}

/* Адаптивность */
@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .wave {
        height: 60px;
    }
    
    .wave-1 { height: 50px; }
    .wave-2 { height: 60px; }
    .wave-3 { height: 70px; }
    .wave-4 { height: 55px; }
    .wave-5 { height: 65px; }
}
