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

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a; /* Dark background */
    color: #ffffff; /* White text */
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section */
.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.text-section {
    flex: 1;
    min-width: 300px;
}

.text-section h1 {
    font-size: 2.5rem;
    color: #00aaff; /* Blue to match the coin */
    margin-bottom: 20px;
}

.text-section p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #cccccc;
}

.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.coin-image {
    max-width: 100%;
    height: auto;
    width: 400px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
}

/* General Section Styling */
.section {
    margin-bottom: 60px;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    color: #00aaff;
    margin-bottom: 20px;
}

.section p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Tokenomics Section */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tokenomics-item {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.2);
}

.tokenomics-item h3 {
    font-size: 1.3rem;
    color: #00aaff;
    margin-bottom: 10px;
}

.tokenomics-item p, .tokenomics-item ul {
    font-size: 1rem;
    color: #cccccc;
}

.tokenomics-item ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
}

/* Roadmap Section */
.roadmap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.roadmap-item {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 250px;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.2);
}

.roadmap-item h3 {
    font-size: 1.3rem;
    color: #00aaff;
    margin-bottom: 10px;
}

.roadmap-item p {
    font-size: 1rem;
    color: #cccccc;
}

/* Call to Action Section */
.cta-section {
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #00aaff;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0088cc;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #2a2a2a;
    color: #cccccc;
    font-size: 0.9rem;
}

.social-links a {
    color: #00aaff;
    text-decoration: none;
    margin: 0 5px;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
    }

    .coin-image {
        width: 300px;
    }

    .tokenomics-grid {
        grid-template-columns: 1fr;
    }

    .roadmap {
        flex-direction: column;
        align-items: center;
    }

    .roadmap-item {
        max-width: 100%;
    }
}
