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

body {
    font-family: 'Arial Black', 'Arial Bold', sans-serif;
    background: #000;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 128, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 0, 0.1) 0%, transparent 50%);
    color: #fff;
    overflow-x: hidden;
}

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

/* Floating Emojis */
.floating-emojis {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.emoji {
    position: absolute;
    font-size: 3rem;
    animation: float 15s infinite ease-in-out;
    opacity: 0.3;
}

.emoji:nth-child(1) { left: 10%; animation-delay: 0s; }
.emoji:nth-child(2) { left: 30%; animation-delay: 2s; }
.emoji:nth-child(3) { left: 50%; animation-delay: 4s; }
.emoji:nth-child(4) { left: 70%; animation-delay: 6s; }
.emoji:nth-child(5) { left: 90%; animation-delay: 8s; }

@keyframes float {
    0%, 100% { transform: translateY(-100px) rotate(0deg); }
    50% { transform: translateY(100vh) rotate(360deg); }
}

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

h1 {
    font-size: 7rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff0080, #ff8c00, #00ff88, #00ccff, #ff0080);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite, textGlow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 30px rgba(255, 0, 128, 0.7));
    letter-spacing: 0.1em;
}

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

@keyframes textGlow {
    from { filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.5)); }
    to { filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.8)); }
}

.glitch {
    position: relative;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

/* Bull Mascot */
.bull-container {
    position: relative;
    margin: 3rem 0;
}

.bull-mascot {
    max-width: 450px;
    width: 100%;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.3), 0 0 80px rgba(0, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.bull-mascot:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 30px 80px rgba(255, 0, 128, 0.6), 0 0 100px rgba(0, 255, 255, 0.4);
    border-color: #ff0080;
}

.bull-mascot.shake {
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg) scale(1.1); }
    75% { transform: rotate(10deg) scale(1.1); }
}

.click-text {
    font-size: 1.2rem;
    margin-top: 1rem;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Meme Phrase */
.meme-phrase {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.meme-phrase.show {
    animation: showPhrase 2s ease-out;
}

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

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: bold;
    border: 3px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff0080, #ff8c00);
    color: white;
    border-image: linear-gradient(135deg, #ff0080, #ff8c00) 1;
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.5), 0 0 60px rgba(255, 140, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #00ff88, #00ccff);
    color: #000;
    border-image: linear-gradient(135deg, #00ff88, #00ccff) 1;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5), 0 0 60px rgba(0, 204, 255, 0.3);
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.6);
}

.btn-secondary:hover {
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.6);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 0, 128, 0.5), 0 0 40px rgba(255, 140, 0, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 0, 128, 0.8), 0 0 80px rgba(255, 140, 0, 0.5);
        transform: scale(1.02);
    }
}

/* Why Section */
.why-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 140, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-section h2, .tokenomics h2, .roadmap h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reason-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 128, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.reason-card:hover::before {
    left: 100%;
}

.reason-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: #ff0080;
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.4);
}

.reason-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.reason-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

/* Tokenomics */
.tokenomics {
    padding: 5rem 0;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.token-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                      linear-gradient(135deg, #ff0080, #00ffff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.4s ease;
    position: relative;
}

.token-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff0080, #ff8c00, #00ff88, #00ccff);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.token-card:hover::after {
    opacity: 1;
}

.token-card:hover {
    animation: shake-card 0.5s;
    box-shadow: 0 15px 50px rgba(255, 0, 128, 0.5);
}

@keyframes shake-card {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg) scale(1.05); }
    75% { transform: rotate(3deg) scale(1.05); }
}

.big-number {
    font-size: 2.5rem;
    color: #00ff00;
    margin: 1rem 0;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.subtitle {
    font-size: 0.9rem;
    color: #ffff00;
    font-style: italic;
}

/* Roadmap */
.roadmap {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 0, 128, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.roadmap-badge {
    min-width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.roadmap-badge.completed {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    border-color: #00ff88;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.roadmap-badge.current {
    background: linear-gradient(135deg, #ff6600, #ff0000);
    border-color: #ff6600;
    animation: pulse-roadmap 1.5s infinite;
    box-shadow: 0 0 40px rgba(255, 102, 0, 0.8);
}

@keyframes pulse-roadmap {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 102, 0, 0.6);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(255, 102, 0, 1);
    }
}

.roadmap-content {
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.roadmap-content:hover {
    border-color: rgba(255, 0, 128, 0.5);
    transform: translateX(10px);
}

.roadmap-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #ff0080, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.social-btn {
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 0, 128, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.social-btn:hover::before {
    width: 300px;
    height: 300px;
}

.social-btn:hover {
    background: rgba(255, 0, 128, 0.2);
    border-color: #ff0080;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
}

.social-btn span {
    position: relative;
    z-index: 1;
}

.disclaimer {
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #ffff00;
}

.copyright {
    margin-top: 2rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
        letter-spacing: 0.05em;
    }
    
    .tagline {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .bull-mascot {
        max-width: 320px;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .cta-buttons {
        gap: 1rem;
    }
    
    .why-section h2, .tokenomics h2, .roadmap h2 {
        font-size: 2rem;
    }
    
    .reason-icon {
        font-size: 3rem;
    }
    
    .reason-card h3 {
        font-size: 1.2rem;
    }
    
    .token-card {
        padding: 1.5rem;
    }
    
    .big-number {
        font-size: 2rem;
    }
    
    .roadmap-item {
        gap: 1rem;
    }
    
    .roadmap-badge {
        min-width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .roadmap-content h3 {
        font-size: 1.2rem;
    }
    
    .meme-phrase {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .floating-emojis .emoji {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .bull-mascot {
        max-width: 280px;
    }
    
    .why-section, .tokenomics, .roadmap {
        padding: 3rem 0;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

