* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ff6b35;
    --dark-bg: #ffd700;
    --card-bg: rgba(0, 0, 0, 0.1);
    --text-primary: #1a1a1a;
    --text-secondary: #333333;
    --glow-color: #ffed4e;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #f4d03f 100%);
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.circle1 {
    width: 500px;
    height: 500px;
    background: #ffed4e;
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.circle2 {
    width: 400px;
    height: 400px;
    background: #ffa500;
    top: 50%;
    right: -200px;
    animation-delay: 5s;
}

.circle3 {
    width: 600px;
    height: 600px;
    background: #f4d03f;
    bottom: -300px;
    left: 30%;
    animation-delay: 10s;
}

.circle4 {
    width: 450px;
    height: 450px;
    background: #ffcc00;
    top: 20%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -100px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 100px) scale(0.9);
    }
}

/* Particles */
#particles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Container */
.container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    z-index: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-container {
    position: relative;
    margin-bottom: 40px;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--primary-color);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Title with Glitch Effect */
.title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    background: linear-gradient(45deg, #1a1a1a, #8B4513, #654321);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.glitch {
    position: relative;
    display: inline-block;
}

.glitch:hover {
    animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

.subtitle {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.tagline {
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 600;
    min-height: 40px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.typing-text {
    display: inline-block;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Glass Effect */
.glass-effect {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.glass-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px 0 rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 0, 0, 0.4);
}

/* About Section */
.about {
    margin: 80px 0;
}

.about-card {
    padding: 50px;
    text-align: center;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;rgba(0, 0, 0, 0.1)rgba(72, 255, 0, 0.1)rgba(251, 255, 0, 0.1)rgba(251, 255, 2, 0.1)rgba(251, 255, 2, 0.856)rgb(251, 255, 2)
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.section-title i {
    margin-right: 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Section */
.features {
    margin: 80px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.feature-card:hover .feature-icon {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Social Section */
.social-section {
    margin: 80px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn::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-btn:hover::before {
    left: 100%;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(240, 185, 11, 0.4);
}

.social-btn i {
    font-size: 1.5rem;
}

.social-btn.twitter:hover {
    border-color: #1da1f2;
    background: rgba(29, 161, 242, 0.1);
}

.social-btn.telegram:hover {
    border-color: #0088cc;
    background: rgba(0, 136, 204, 0.1);
}

.social-btn.dexscreener:hover {
    border-color: #00b894;
    background: rgba(0, 184, 148, 0.1);
}

.social-btn.dextools:hover {
    border-color: #05a3c7;
    background: rgba(5, 163, 199, 0.1);
}

/* Tokenomics Section */
.tokenomics {
    margin: 80px 0;
}

.tokenomics-card {
    padding: 50px;
    text-align: center;
}

.iframe-container {
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.token-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    padding: 30px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.25);
    border-color: #1a1a1a;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.6);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-left"] {
    transform: perspective(2500px) rotateY(-100deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(2500px) rotateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .logo {
        width: 180px;
        height: 180px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-card, .tokenomics-card {
        padding: 30px 20px;
    }

    .iframe-container {
        height: 500px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero {
        min-height: 80vh;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .logo {
        width: 150px;
        height: 150px;
    }

    .iframe-container {
        height: 400px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}
