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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ff0000;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Import elegant fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    animation: fadeInUp 1s ease 0.3s both;
    border: none;
    box-shadow: none;
    background: transparent;
}

/* Sections */
.section {
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.buy-section .section-content {
    grid-template-columns: 1fr 1fr;
}

.socials-section .section-content {
    grid-template-columns: 1fr 1fr;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Image Carousel */
.image-carousel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.carousel-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 200px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.carousel-container.top {
    height: 240px;
}

.carousel-container.bottom {
    height: 160px;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-image.active {
    opacity: 1;
}

/* Section Images */
.section-image {
    max-width: 100%;
    height: auto;
}

.buy-section .section-image {
    max-width: 150%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Tokenomics */
.tokenomics-section {
    text-align: center;
}

.tokenomics-bars {
    margin: 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tokenomics-item {
    margin-bottom: 2rem;
}

.tokenomics-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 1.1rem;
}

.progress-bar {
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    border-radius: 15px;
    transition: width 2s ease;
    width: 0;
}

.progress-fill.community {
    background: linear-gradient(90deg, #ffffff, #f0f0f0);
}

.progress-fill.team {
    background: linear-gradient(90deg, #ffffff, #f0f0f0);
}

/* X Button */
.x-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #ff0000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.x-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .buy-section .section-content {
        grid-template-columns: 1fr;
    }
    
    .socials-section .section-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .image-carousel {
        gap: 0.5rem;
    }
    
    .carousel-container {
        height: 150px;
    }
    
    .carousel-container.top {
        height: 180px;
    }
    
    .carousel-container.bottom {
        height: 120px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
}