/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    padding-top: 100px; /* Space for fixed header */
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    margin-right: 10px;
    display: block;
    width: 50px;
}

.logo h1 {
    font-size: 24px;
}

nav {
    max-width: 70%;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #00ff88;
}

/* Media Query */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin: 10px 0;
    }
    header {
        padding: 20px;
    }
}

/* Hero Section (not used in roadmap.html, but kept for consistency) */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.logo-container {
    margin-bottom: 20px; /* Space between logo and h2 */
}

.animated-logo {
    width: 100px; /* Adjust size as needed */
    animation: fadeBlink 4s infinite ease-in-out; /* Slow fade animation */
}

@keyframes fadeBlink {
    0%, 100% {
        opacity: 1; /* Fully visible */
    }
    50% {
        opacity: 0.3; /* Faded out */
    }
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #00ff88;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #00cc70;
}

/* Sections */
section {
    padding: 60px 20px;
    text-align: center;
}

section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

section p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

.social-links a {
    color: #00ff88;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

.social-links a:hover {
    color: #fff;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
}
.footer-links {
    margin-top: 20px;
}

.footer-icon {
    width: 40px; /* Adjust size as needed */
    height: auto;
    margin: 0 10px; /* Space between icons */
    transition: opacity 0.3s; /* Smooth hover effect */
}

.footer-icon:hover {
    opacity: 0.7; /* Slightly fade on hover */
}


/* Roadmap Section */
.roadmap {
    padding-top: 120px; /* Increased to ensure h2 visibility */
    padding: 60px 20px;
    text-align: center;
    background-color: #222;
    min-height: 0;
}

.roadmap h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
    margin-top: 20px;
}

/* Flex Class for Phases */
.flex {
    display: flex;
    flex-direction: column; /* Stack items vertically by default */
    align-items: center;
    margin: 20px 0; /* Space between phases */
    padding: 20px; /* Inner padding for content */
    background-color: #2a2a2a; /* Slightly lighter for distinction */
    border-radius: 5px; /* Rounded corners for style */
    max-width: 600px; /* Match other content width */
    margin-left: auto;
    margin-right: auto;
}

.flex h3 {
    font-size: 24px;
    color: #00ff88; /* Green for phase titles */
    margin-bottom: 10px;
}

.flex p {
    font-size: 16px;
    color: #ccc;
    text-align: center;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-y: auto;
}
/* ... (keep existing styles) ... */

/* Whitepaper Section */
.whitepaper {
    padding-top: 120px; /* Space for header */
    padding: 60px 20px;
    text-align: center;
    background-color: #1a1a1a;
    min-height: 80vh; /* Ensure it fills the viewport */
}

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

.paper-image {
    width: 100%;
    height: auto;
    display: block;
}

.hope-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 72px;
    color: #0cf387;
    font-weight: bold;
    text-shadow: 2px 2px 4px #000; /* Add shadow for comedy effect */
    z-index: 10;
}

.paper-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px; /* Adjust size as needed */
    z-index: 20;
}

.disclaimer {
    max-width: 600px;
    margin: 20px auto;
    font-size: 16px;
    color: #ccc;
    font-style: italic;
}
/* Buy Section */
#buy {
    padding: 60px 20px;
    text-align: center;
}

#buy h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#buy p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.contract-container {
    margin-top: 20px;
}

#contract-address {
    padding: 10px;
    font-size: 16px;
    width: 300px;
    border: 1px solid #00ff88;
    border-radius: 5px;
    background-color: #222;
    color: #fff;
    margin-right: 10px;
    display: inline-block;
}

#buy button {
    padding: 12px 25px;
    font-size: 16px;
    background-color: #00ff88;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#buy button:hover {
    background-color: #00cc70;
}