* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial Black', Arial, sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    position: relative;
}

/* Page 1 - Home */
.page1 {
    background: linear-gradient(180deg, #445b7c 0%, #35536e 100%);
    position: relative;
    overflow: hidden;
}

.page1::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(100, 150, 200, 0.3) 0%, rgba(100, 150, 200, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.page1::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -10%;
    width: 55%;
    height: 65%;
    background: radial-gradient(ellipse at center, rgba(80, 130, 170, 0.25) 0%, rgba(80, 130, 170, 0.12) 45%, transparent 70%);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.navbar {
    width: 100%;
    max-width: 1200px;
    background: #20BB62;
    border-radius: 20px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    position: relative;
    z-index: 10;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-fallback {
    width: 50px;
    height: 50px;
    background: #6fb3d5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 0.8;
}

.buy-btn {
    background: #8bc34a;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.buy-btn:hover {
    transform: translateY(-2px);
}

.hero-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    width: 90%;
    max-width: 600px;
    aspect-ratio: 1;
    margin: 40px 0;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    object-fit: cover;
}

.hero-image-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #8bc34a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.hero-title {
    color: white;
    font-size: 4rem;
    text-align: center;
    margin: 20px 0;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    color: white;
    font-size: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Page 2 - How to Buy */
.page2 {
    background: #8bc34a;
    padding-top: 60px;
    padding-bottom: 60px;
}

.contract-bar {
    width: 100%;
    max-width: 600px;
    background: #20BB62;
    border-radius: 15px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.contract-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    word-break: break-all;
}

.copy-btn {
    background: #a4d96c;
    color: #333;
    border: none;
    padding: 10px 30px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.copy-btn:hover {
    transform: scale(1.05);
}

.section-title {
    color: white;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.steps-container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    background: #20BB62;
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.step-number {
    background: #a4d96c;
    color: #333;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-text {
    color: white;
    font-size: 1.3rem;
    line-height: 1.4;
}

/* Page 3 - Live Chart */
.page3 {
    background: linear-gradient(180deg, #445b7c 0%, #35536e 100%);
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page3::before {
    content: '';
    position: absolute;
    top: 5%;
    right: -12%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(100, 150, 200, 0.25) 0%, rgba(100, 150, 200, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
}

.page3::after {
    content: '';
    position: absolute;
    bottom: 0%;
    left: -12%;
    width: 55%;
    height: 55%;
    background: radial-gradient(ellipse at center, rgba(80, 130, 170, 0.22) 0%, rgba(80, 130, 170, 0.12) 45%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.chart-container {
    width: 90%;
    max-width: 1000px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    margin-top: 40px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.chart-placeholder {
    color: #666;
    font-size: 1.2rem;
    text-align: center;
    padding: 40px;
}

/* Page 4 - Gallery */
.page4 {
    background: #8bc34a;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Page 5 - Tokenomics */
.page5 {
    background: linear-gradient(180deg, #445b7c 0%, #35536e 100%);
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page5::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(100, 150, 200, 0.3) 0%, rgba(100, 150, 200, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.tokenomics-card {
    background: #20BB62;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    text-align: center;
}

.tokenomics-label {
    color: #e8f5e9;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.tokenomics-value {
    color: white;
    font-size: 1.3rem;
    line-height: 1.4;
}

/* Page 6 - Roadmap */
.page6 {
    background: #8bc34a;
    padding-top: 60px;
    padding-bottom: 60px;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

.roadmap-item {
    background: #20BB62;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 20px;
}

.roadmap-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: white;
    padding: 5px;
}

.roadmap-logo-fallback {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.roadmap-name {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
}

.gallery-subtitle {
    color: white;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

.gallery-item {
    background: #20BB62;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-item-inner {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    gap: 10px;
}

.gallery-placeholder-icon {
    font-size: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .nav-left {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .step-text {
        font-size: 1.1rem;
    }

    .contract-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .chart-container {
        height: 400px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .tokenomics-grid {
        grid-template-columns: 1fr;
    }

    .roadmap-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-link {
        font-size: 16px;
    }

    .buy-btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    .contract-text {
        font-size: 14px;
    }

    .hero-image-fallback {
        font-size: 2rem;
    }
}
