/* Landing Page Specific Styles */
.tagline {
    font-size: 36px;
    max-width: 600px;
    margin-bottom: 20px;
    cursor: pointer;
}

.tagline a {
    display: block;
    text-decoration: none;
    border-bottom: none;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #ffd7d7 25%,
        #ffffff 35%,
        #ffffff 65%,
        #d7f7ff 75%,
        #ffffff 100%
    );
    background-size: 300% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shine 6s linear infinite;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 255, 255, 0.1);
}

.tagline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    background-size: 200% auto;
    animation: sparkle 4s linear infinite;
    opacity: 0.5;
    pointer-events: none;
}

.telegram-mafia {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 0.3s;
}

.telegram-mafia a {
    border-bottom: 1px solid white;
    position: relative;
}

.genesis-pass {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 0.4s;
}

.genesis-pass a {
    color: #ff3333;
    border-bottom: 1px solid #ff3333;
}

.genesis-pass a:hover {
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.4);
}

.links {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 0.5s;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .tagline {
        font-size: 28px;
    }
} 