@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&display=swap');

:root {
    --primary-yellow: #f9dc96;
    --accent-yellow: #F4D03F;
    --light-blue: #e3fbff;
    --dark: #1a1a1a;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-yellow);
    overflow-x: hidden;
    color: var(--dark);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: rgba(249, 220, 150, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.nav-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-logo:hover {
    transform: rotate(360deg) scale(1.1);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 0;
    background: var(--dark);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.social-icon:hover img {
    transform: scale(1.2) rotate(5deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.3) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.5; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
}

.hero h1 {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 2rem;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
    animation: slideDown 1s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.main-logo {
    position: relative;
    z-index: 1;
    animation: zoomIn 1.2s ease-out 0.3s backwards;
}

@keyframes zoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.main-logo img {
    width: clamp(250px, 40vw, 450px);
    height: auto;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

.main-logo img:hover {
    transform: scale(1.05) rotate(5deg);
}

.buttons {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 1;
    animation: slideUp 1s ease-out 0.6s backwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: scale(0.95);
}

.buy-now {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: var(--white);
}

.see-chart {
    background: var(--light-blue);
    color: var(--dark);
    border: 3px solid var(--dark);
}

/* Carousel */
.carousel-section {
    background: var(--dark);
    padding: 2rem 0;
    border-top: 4px solid var(--dark);
    border-bottom: 4px solid var(--dark);
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: fit-content;
    animation: scroll 25s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--primary-yellow);
    padding: 0 4rem;
    white-space: nowrap;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

@keyframes scroll {
    0% { 
        transform: translateX(0); 
    }
    100% { 
        transform: translateX(-50%); 
    }
}

/* About Section */
.about-section {
    background: var(--accent-yellow);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(0,0,0,0.05)"/></svg>');
    opacity: 0.3;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.about-text h2 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--dark);
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.about-text p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05) rotate(-2deg);
}

/* Tokenomics */
.tokenomics-section {
    background: var(--primary-yellow);
    padding: 6rem 2rem;
}

.tokenomics-section h2 {
    text-align: center;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: var(--dark);
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.tokenomics-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background: var(--light-blue);
    border-radius: 30px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--dark);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.info-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.contract-card {
    grid-column: 1 / -1;
    background: var(--dark);
    color: var(--primary-yellow);
}

.contract-card h3 {
    color: var(--primary-yellow);
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    word-break: break-all;
    background: rgba(249, 220, 150, 0.2);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.platform-logo,
.character-img2,
.pie-chart-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* How to Buy */
.roadmap-section {
    background: var(--accent-yellow);
    padding: 6rem 2rem;
}

.roadmap-section h2 {
    text-align: center;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: var(--dark);
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.roadmap-container {
    max-width: 1400px;
    margin: 0 auto;
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.phase-card {
    background: var(--light-blue);
    border-radius: 30px;
    padding: 2.5rem;
    text-align: center;
    border: 3px solid var(--dark);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.phase-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.phase-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.phase-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark);
}

.roadmap-image-container {
    background: var(--light-blue);
    border-radius: 30px;
    padding: 2rem;
    border: 3px solid var(--dark);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}

.roadmap-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 20px;
}

/* Contact */
.contact-section {
    background: var(--primary-yellow);
    padding: 6rem 2rem;
}

.contact-section h2 {
    text-align: center;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: var(--dark);
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--light-blue);
    border-radius: 30px;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--dark);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    min-height: 400px;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark);
}

.contact-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-social-links {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.contact-social-link {
    text-decoration: none;
}

.contact-social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.2s ease;
}

.contact-social-icon:hover {
    transform: scale(1.1);
}

.character-image {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    nav {
        padding: 1rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .tokenomics-grid {
        grid-template-columns: 1fr;
    }

    .phases-grid {
        grid-template-columns: 1fr;
    }

    .carousel-item {
        font-size: 3rem;
        padding: 0 2rem;
    }
}

@media (max-width: 480px) {
    .carousel-item {
        font-size: 2rem;
        padding: 0 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .phase-card h3 {
        font-size: 1.5rem;
    }

    .phase-card p {
        font-size: 1rem;
    }
}