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

body {
    font-family: 'Poppins', sans-serif;
    background: url('2025-10-17 01.19.02.jpg') center center/cover no-repeat fixed;
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.unicorns-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.unicorn {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: fall linear infinite;
    user-select: none;
}

.unicorn:nth-child(1) {
    left: 10%;
    animation-delay: -2s;
    animation-duration: 8s;
}

.unicorn:nth-child(2) {
    left: 20%;
    animation-delay: -5s;
    animation-duration: 10s;
}

.unicorn:nth-child(3) {
    left: 30%;
    animation-delay: -1s;
    animation-duration: 7s;
}

.unicorn:nth-child(4) {
    left: 40%;
    animation-delay: -6s;
    animation-duration: 9s;
}

.unicorn:nth-child(5) {
    left: 60%;
    animation-delay: -3s;
    animation-duration: 6s;
}

.unicorn:nth-child(6) {
    left: 70%;
    animation-delay: -8s;
    animation-duration: 8s;
}

.unicorn:nth-child(7) {
    left: 80%;
    animation-delay: -4s;
    animation-duration: 11s;
}

.unicorn:nth-child(8) {
    left: 90%;
    animation-delay: -7s;
    animation-duration: 9s;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 50px 0;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.logo-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.4);
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    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(255, 107, 107, 0.5);
}

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

.subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.95;
    color: #e0e0e0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


.hero-text {
    margin-bottom: 50px;
}

.hero-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #ffffff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.description {
    font-size: 1.2rem;
    font-weight: 500;
    color: #f0f0f0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

.token-info {
    margin-bottom: 40px;
}

.info-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contract {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    word-break: break-all;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e0e0e0;
    line-height: 1.4;
}

.copy-btn {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.buy-button, .community-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
    text-align: center;
}

.buy-button {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.community-button {
    background: linear-gradient(45deg, #48dbfb, #ff9ff3);
    color: white;
    box-shadow: 0 8px 25px rgba(72, 219, 251, 0.3);
}

.community-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(72, 219, 251, 0.4);
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 20px 0;
        text-align: center;
        justify-content: center;
    }
    
    .hero-content {
        padding: 30px;
        max-width: 90%;
        margin: 0;
    }
    
    .logo-container {
        justify-content: center;
    }
    
    .logo h1 {
        font-size: 2.8rem;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .hero-text h2 {
        font-size: 1.6rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .buy-button, .community-button {
        width: 100%;
        max-width: 250px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .contract {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .hero-text h2 {
        font-size: 1.6rem;
    }
    
    .hero-content {
        padding: 20px;
    }
    
}
