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

body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background: white;
    color: #333;
    overflow-x: hidden;
}

header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.logo span {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-shadow: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(0,0,0,0.1);
}

.nav-links a:hover {
    background: rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

main {
    margin-top: 80px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

.hero-content {
    text-align: center;
    transform: rotate(180deg);
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    /* transform: rotate(180deg); */
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.hero-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
    transform: rotate(180deg);
}

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

.hero h1 {
    font-size: 4rem;
    color: #333;
    text-shadow: none;
    margin-bottom: 1rem;
    transform: rotate(180deg);
}

.tagline {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
    transform: rotate(180deg);
}

.description {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
    transform: rotate(180deg);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn.primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.btn.secondary {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
    box-shadow: 0 5px 15px rgba(78,205,196,0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}



section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(100px);
    animation: fallDown 2s ease-out forwards;
}

@keyframes fallDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section:nth-child(1) { animation-delay: 0.2s; }
section:nth-child(2) { animation-delay: 0.4s; }
section:nth-child(3) { animation-delay: 0.6s; }
section:nth-child(4) { animation-delay: 0.8s; }

section h2 {
    text-align: center;
    font-size: 3rem;
    color: #333;
    text-shadow: none;
    margin-bottom: 3rem;
    transform: rotate(180deg);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    text-align: center;
}



.community-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    text-align: center;
}

.about-text {
    max-width: 600px;
}

.about-text p {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    transform: rotate(180deg);
}

.about-image {
    max-width: 400px;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    /* box-shadow: 0 15px 35px rgba(0,0,0,0.3); */
}

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

.token-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.token-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,1);
}

.token-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transform: rotate(180deg);
}

.token-card p {
    color: #333;
    font-size: 1.8rem;
    font-weight: bold;
    transform: rotate(180deg);
}



.community-image {
    max-width: 400px;
    display: flex;
    justify-content: center;
}

.community-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.social-links {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102,126,234,0.4);
    transform: rotate(180deg);
}

.social-btn:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.6);
}

footer {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.9);
    color: #333;
    margin-top: 2rem;
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .community-content {
        flex-direction: column;
    }
    
    .nav-links {
        display: none;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
}
