/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2 {
    text-align: center;
    margin: 20px 0;
}

.section {
    padding: 50px 20px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;
}

.hamburger {
    font-size: 24px;
    cursor: pointer;
}

.nav-links {
    display: none;
    list-style: none;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.nav-links.active {
    display: flex;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    padding: 10px 0;
}

/* Home Section */
.home {
    background-color: black;
    color: white;
    text-align: center;
}

.home img {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: 20px;
}

/* About Section */
.about {
    background-color: white;
    text-align: center;
}

.about img {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: 20px;
}

/* Roadmap Section */
.roadmap {
    background: linear-gradient(135deg, blue, pink, purple);
    text-align: center;
    color: white;
}

.roadmap .phase {
    background-color: transparent;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    margin: 20px;
    padding: 20px;
}

/* Memes Section */
.memes {
    background-color: #f9f9f9;
    text-align: center;
}

.meme-pair {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.meme img {
    max-width: 100%;
    height: auto;
    border-radius: 10px
}

.meme p {
    margin: 10px 0;
}

/* Vision Section */
.vision {
    background-color: black;
    color: white;
    text-align: center;
}

.vision .eye-icon {
    font-size: 50px;
    margin: 20px 0;
}

/* Buy Section */
.buy {
    background-color: grey;
    text-align: center;
}

.buy .cta, .buy .copy {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.buy .cta {
    background-color: green;
    color: white;
}

.buy .copy {
    background-color: blue;
    color: white;
}

/* Contact Section */
.contact {
    background-color: white;
    text-align: center;
}

.contact .social-icons a {
    margin: 10px;
    text-decoration: none;
    color: #333;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2 {
    text-align: center;
    margin: 20px 0;
}

p {
    text-align: center;
    margin: 10px auto;
    max-width: 800px;
}

img {
    display: block;
    margin: 0 auto 20px;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.section {
    padding: 50px 20px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;
}

.hamburger {
    font-size: 24px;
    cursor: pointer;
}

.nav-links {
    display: none;
    list-style: none;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.nav-links.active {
    display: flex;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    padding: 10px 0;
}

/* Other Sections - Same styles as before */