/* --- General Setup --- */
:root {
    --hype-green: #00FF00;
    --grief-lavender: #E6E6FA;
    --white: #FFFFFF;
    --black: #1a1a1a;
    --gray: #f4f4f4;
    --dark-gray: #2c2c2c;
    --neutral-gray: #dddddd;
    --anger-red: #ffdddd;
    --bargain-yellow: #fffacd;

    --font-headline: 'Monument Extended', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 0;
}

h1, h2, h3 {
    font-family: var(--font-headline);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

p {
    margin-bottom: 1rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-primary {
    background-color: var(--hype-green);
    color: var(--black);
    font-family: var(--font-headline);
    font-size: 1.1rem;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin: 5px;
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0a0a0a, #333333);
    z-index: -2;
    animation: chartBackground 20s ease infinite;
}

@keyframes chartBackground {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}


.hero-content {
    z-index: 1;
    padding: 20px;
}

.logo {
    max-width: 250px;
    margin-bottom: 1.5rem;
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0% { filter: drop-shadow(0 0 5px var(--grief-lavender)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 20px var(--hype-green)); transform: scale(1.05); }
    100% { filter: drop-shadow(0 0 5px var(--grief-lavender)); transform: scale(1); }
}

.headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
}

.sub-headline {
    font-size: 1.2rem;
    color: var(--grief-lavender);
    margin-bottom: 2rem;
}

.cta-buttons {
    margin-top: 1.5rem;
}

/* --- Mission Section --- */
.mission-section {
    background: var(--white);
}

.two-column {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.column-left, .column-right {
    flex: 1;
}

.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.unmute-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
}

/* --- Tokenomics Section --- */
.tokenomics-section {
    background: var(--gray);
}
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}
.philosophy-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
}
.philosophy-icon {
    font-size: 3rem;
    color: var(--hype-green);
    margin-bottom: 1rem;
}
.security-path {
    background: var(--dark-gray);
    color: var(--white);
    text-align: center;
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 900px;
    margin: 2rem auto 0 auto;
}
.security-path h3 {
    color: var(--white);
}
.security-path p {
    color: var(--grief-lavender);
}

/* --- How to Buy Section --- */
.how-to-buy-section {
    background: var(--white);
}
.official-link-box {
    text-align: center;
    background: var(--grief-lavender);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}
.official-link-box h3 {
    font-size: 1.5rem;
}
.btn-buy-main {
    background: var(--hype-green);
    color: var(--black);
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 1.5rem;
    padding: 20px 40px;
    border-radius: 15px;
    margin-top: 1rem;
    text-transform: uppercase;
}
.btn-buy-main i {
    margin-right: 10px;
}
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.step {
    text-align: center;
}
.step-icon {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 1rem;
}

/* --- Roadmap Section --- */
.roadmap-section {
    background-color: var(--neutral-gray);
    transition: background-color 1s ease;
}
.roadmap-headline { color: var(--black); }
.roadmap-phase {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--hype-green);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.roadmap-phase.visible {
    opacity: 1;
    transform: translateY(0);
}
.roadmap-phase h3 { font-size: 1.8rem; color: var(--black); }
.roadmap-phase p { font-style: italic; color: #555; }
.roadmap-phase ul { list-style: none; padding-left: 0; }
.roadmap-phase ul li { margin-bottom: 0.5rem; }
.roadmap-phase ul li i { color: var(--hype-green); margin-right: 10px; }
.roadmap-phase ul li .fa-tasks { color: #555; } /* Icon color for incomplete tasks */
#phase-denial { border-left-color: #888; }
#phase-anger { border-left-color: #ff5252; }
#phase-bargaining { border-left-color: #ffc107; }
#phase-depression { border-left-color: #ae83d7; }
#phase-acceptance { border-left-color: var(--hype-green); }

/* --- Footer --- */
.site-footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 3rem 1rem;
}
.footer-icons {
    margin-bottom: 1.5rem;
}
.footer-icons a {
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 20px;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}
.footer-icons a:hover {
    color: var(--hype-green);
    transform: translateY(-5px);
}
.copyright {
    color: var(--grief-lavender);
    font-size: 0.9rem;
}


/* --- Responsive Design --- */
/* Styles for tablets and smaller devices */
@media (max-width: 768px) {
    .container {
        padding: 2.5rem 0; /* Reduced padding for more space */
    }

    h2 { font-size: 2rem; }
    
    .logo {
        max-width: 200px; /* Make logo smaller */
    }

    .headline { 
        font-size: 2.5rem; /* Make main headline smaller */
    }

    .sub-headline {
        font-size: 1rem; /* Adjust sub-headline font size */
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column; /* Stack the CTA buttons */
        align-items: center;
        gap: 10px; /* Add space between stacked buttons */
    }
    
    .two-column {
        flex-direction: column; /* Stack columns in the mission section */
    }

    .btn-buy-main {
        font-size: 1.2rem; /* Reduce font size of main buy button */
        padding: 15px 30px;
    }

    .roadmap-phase {
        padding: 1.5rem; /* Reduce padding inside roadmap boxes */
    }

    .footer-icons a {
        font-size: 2rem; /* Reduce footer icon size */
        margin: 0 15px;
    }
}

/* Additional styles for very small phone screens */
@media (max-width: 480px) {
    .container {
        width: 95%; /* Use more of the screen width */
    }

    .logo {
        max-width: 160px; /* Even smaller logo */
    }
    
    .headline {
        font-size: 2rem; /* Even smaller headline */
    }

    .philosophy-item, .security-path, .official-link-box {
        padding: 1.5rem; /* Reduce padding on various info boxes */
    }
}