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

body {
    font-family: 'Orbitron', sans-serif;
    background-color: #000;
    color: #fff;
    scroll-behavior: smooth;
    text-align: center;
}

/* Navigation Menu */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    box-shadow: 0 0 10px #00f4ff;
}

header nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px 0;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #00f4ff;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #ff007f;
}

/* Hero Section */
#hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 50px); /* Full screen minus navbar height */
    padding-top: 50px; /* Offset for the navbar */
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Space between elements */
}

#hero h1 {
    font-size: 4rem;
    color: #ff007f;
    text-shadow: 0 0 15px #ff007f;
}

.tagline {
    font-size: 1.5rem;
    color: #00f4ff;
}

.hero-image {
    width: 90%; /* Increase the width to 90% of the container */
    max-width: 800px; /* Allow the image to be larger on wider screens */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto; /* Center the image */
    box-shadow: 0 0 15px #00f4ff, 0 0 25px #ff007f;
    border-radius: 8px;
}

.btn {
    display: block;
    margin: 0 auto; /* Center the button */
    padding: 12px 30px;
    background: #00f4ff;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: 0 0 10px #00f4ff;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #ff007f;
    color: #fff;
    box-shadow: 0 0 15px #ff007f;
}

/* Section Defaults */
section {
    padding: 40px 20px;
    background: #111;
    box-shadow: 0 0 20px rgba(0, 244, 255, 0.3);
}

#tokenomics, #roadmap, #community h2 {
    color: #00f4ff;
    font-size: 2.5rem;
}

/* Footer */
footer {
    background: #000;
    padding: 20px;
    box-shadow: 0 -5px 10px rgba(0, 244, 255, 0.2);
}

footer a {
    color: #00f4ff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: #ff007f;
}

/* Tokenomics Section */
#tokenomics {
    padding: 60px 20px;
    background: #111;
}

.tokenomics-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.token-card {
    background: linear-gradient(135deg, #222, #333);
    padding: 10px 15px; /* Same reduced padding as roadmap */
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px #00f4ff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 250px; /* Same width as roadmap cards */
}

.token-card:hover {
    transform: translateY(-5px); /* Slight hover effect */
    box-shadow: 0 0 15px #ff007f;
}

.token-card h3 {
    font-size: 1.2rem; /* Smaller heading text */
    color: #ff007f;
    margin-bottom: 5px;
}

.token-card p {
    font-size: 0.9rem; /* Smaller paragraph text */
    color: #ddd;
    margin: 0;
}


/* Roadmap Section */
#roadmap {
    padding: 60px 20px;
    background: #111;
}

.roadmap-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.phase {
    background: linear-gradient(135deg, #222, #333);
    color: #00f4ff;
    padding: 10px 15px; /* Reduced padding for smaller height */
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px #00f4ff;
    transition: all 0.3s ease;
    width: 250px; /* Reduced width for smaller cards */
}

.phase:hover {
    transform: translateY(-5px); /* Slight hover lift */
    box-shadow: 0 0 15px #ff007f;
}

.phase h3 {
    font-size: 1.2rem; /* Smaller heading text */
    color: #ff007f;
    margin-bottom: 5px; /* Minimal spacing below heading */
}

.phase p {
    font-size: 0.9rem; /* Smaller paragraph text */
    color: #ddd;
    margin: 0; /* Remove extra spacing */
}


/* Community Section */
#community {
    padding: 60px 20px;
    background: #111;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.cta-buttons .btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.2rem;
    text-transform: uppercase;
    background: #00f4ff;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 0 10px #00f4ff;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    background: #ff007f;
    color: #fff;
    box-shadow: 0 0 15px #ff007f, 0 0 25px #ff007f;
}
