/* ===== Variables ===== */
:root {
    --primary: #FF6B9D;
    --primary-dark: #E84A7F;
    --secondary: #7C4DFF;
    --accent: #FFD93D;
    --success: #6BCB77;
    --info: #4D96FF;

    --bg-gradient: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 50%, #E6F4FF 100%);
    --card-bg: rgba(255, 255, 255, 0.9);
    --text: #2D3748;
    --text-light: #718096;
    --white: #FFFFFF;

    --shadow: 0 10px 40px rgba(124, 77, 255, 0.15);
    --shadow-hover: 0 20px 60px rgba(124, 77, 255, 0.25);

    --radius: 20px;
    --radius-sm: 12px;

    --font: 'Nunito', sans-serif;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-gradient);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--text);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text);
}

.navbar .logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(124, 77, 255, 0.2) 100%);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.2) 0%, rgba(255, 107, 157, 0.2) 100%);
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(107, 203, 119, 0.2) 0%, rgba(77, 150, 255, 0.2) 100%);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

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

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3);
    animation: bounce 3s ease-in-out infinite;
}

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

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-desc {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contract-box {
    background: var(--card-bg);
    padding: 20px 30px;
    border-radius: var(--radius);
    display: inline-block;
    box-shadow: var(--shadow);
}

.contract-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 600;
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contract-address code {
    font-size: 0.9rem;
    color: var(--text);
    word-break: break-all;
}

.copy-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: scale(1.1);
}

/* ===== About Section ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon i {
    font-size: 2rem;
    color: var(--white);
}

.about-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text);
}

.about-card p {
    color: var(--text-light);
}

/* ===== Tokenomics Section ===== */
.tokenomics {
    background: linear-gradient(135deg, #FFF0F3 0%, #F5E6FF 100%);
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.token-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.token-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.token-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.token-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.token-list {
    list-style: none;
    text-align: left;
}

.token-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #E2E8F0;
    display: flex;
    justify-content: space-between;
}

.token-list li span {
    font-weight: 700;
    color: var(--primary);
}

.fee-display {
    margin: 30px 0;
}

.fee-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fee-label {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
}

.fee-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Liquidity Lock */
.liquidity-lock {
    margin-top: 40px;
}

.lock-badge {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--radius);
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    box-shadow: 0 10px 40px rgba(26, 26, 46, 0.3);
}

.lock-badge > i {
    font-size: 2.5rem;
    color: var(--success);
    animation: pulse 2s infinite;
}

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

.lock-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lock-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
}

.lock-detail {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.lock-shield {
    background: linear-gradient(135deg, var(--success) 0%, #4D96FF 100%);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
}

.lock-shield i {
    font-size: 1.2rem;
}

/* ===== Impact Section ===== */
.milestone-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 50px;
}

.milestone-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.milestone-icon i {
    font-size: 2.5rem;
}

.milestone-card h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.budget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.budget-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.budget-card:hover {
    transform: translateY(-10px);
}

.budget-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--success) 0%, var(--info) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.budget-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.budget-card h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.budget-card > p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.budget-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.budget-card ul {
    list-style: none;
    text-align: left;
}

.budget-card ul li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px dashed #E2E8F0;
}

/* ===== Roadmap Section ===== */
.roadmap {
    background: linear-gradient(135deg, #E6F4FF 0%, #F0E6FF 100%);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.timeline-icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.timeline-icon.completed {
    background: linear-gradient(135deg, var(--success) 0%, var(--info) 100%);
}

.timeline-icon.completed i {
    color: var(--white);
}

.timeline-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex: 1;
}

.timeline-content h3 {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.timeline-content h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content ul li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-content ul li i {
    color: var(--success);
}

/* ===== Whitepaper Section ===== */
.whitepaper-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    align-items: center;
}

.whitepaper-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    text-align: center;
}

.whitepaper-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whitepaper-icon i {
    font-size: 2.5rem;
}

.whitepaper-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.whitepaper-card p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.whitepaper-card .btn {
    background: var(--white);
    color: var(--primary);
}

.whitepaper-highlights {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.whitepaper-highlights h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--text);
}

.whitepaper-highlights ul {
    list-style: none;
}

.whitepaper-highlights ul li {
    padding: 15px 0;
    border-bottom: 1px dashed #E2E8F0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
}

.whitepaper-highlights ul li i {
    color: var(--success);
    font-size: 1.2rem;
}

/* ===== FAQ Section ===== */
.faq {
    background: linear-gradient(135deg, #FFF5F7 0%, #F5E6FF 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
}

/* ===== Buy Section ===== */
.buy {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    color: var(--white);
}

.buy h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.buy p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.buy .btn {
    background: var(--white);
    color: var(--primary);
}

/* ===== Footer ===== */
.footer {
    background: #1A1A2E;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-brand h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.contract-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.contract-link:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 10px;
    font-size: 0.8rem !important;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .timeline-icon i {
        font-size: 1.2rem;
    }

    .contract-address {
        flex-direction: column;
    }

    .contract-address code {
        font-size: 0.75rem;
    }
}

/* ===== Scroll Animations ===== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}
