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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.floating-images {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-img {
    position: absolute;
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 200px) rotate(90deg);
    }
    50% {
        transform: translate(-50px, 400px) rotate(180deg);
    }
    75% {
        transform: translate(150px, 100px) rotate(270deg);
    }
}

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.title {
    font-size: 4rem;
    font-weight: bold;
    color: #00BFFF;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.6),
                 0 0 40px rgba(0, 191, 255, 0.4),
                 0 4px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 4px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(0, 191, 255, 0.6),
                     0 0 40px rgba(0, 191, 255, 0.4),
                     0 4px 8px rgba(0, 0, 0, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(0, 191, 255, 0.9),
                     0 0 60px rgba(0, 191, 255, 0.6),
                     0 6px 12px rgba(0, 0, 0, 0.5);
    }
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.center-image {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

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

.center-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.social-section {
    margin: 1rem 0;
}

.twitter-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(29, 161, 242, 0.9);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.twitter-link:hover {
    background: rgba(29, 161, 242, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contract-section {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    max-width: 550px;
    width: auto;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.contract-section:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.contract-section:active {
    transform: translateY(-1px) scale(1);
    transition: all 0.1s ease;
}

.ca-label {
    color: #00BFFF;
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.contract-address {
    color: #87CEEB;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    word-break: break-all;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    80% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .center-image img {
        max-width: 300px;
    }
    
    .contract-address {
        font-size: 0.7rem;
    }
    
    .ca-label {
        font-size: 1rem;
    }
    
    .floating-img {
        width: 50px;
        height: 50px;
    }
    
    .contract-section {
        flex-direction: column;
        gap: 5px;
        padding: 1rem;
    }
}

