body {
    margin: 0;
    font-family: sans-serif;
    background: url('cosmos.png') no-repeat center center fixed;
    background-size: cover;
    color: #e9ab2a;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-container {
    width: 80%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 20px 0;
    margin: 0 auto;
    box-sizing: border-box;
    gap: 20px;
}

.logo-container {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(233, 171, 42, 0.5); /* Gold glow */
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

.tokenomics-container {
    flex: 1;
    background: rgba(26, 26, 26, 0.8); /* Dark gray with transparency */
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tokenomics-container h2 {
    color: #e9ab2a; /* Gold */
    text-shadow: 0 0 5px rgba(233, 171, 42, 0.5);
    margin-top: 0;
    font-size: 2em; /* Increased font size */
}

.tokenomics-container p {
    font-size: 1.2em; /* Increased font size */
}

.sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 80%;
    max-width: 1200px;
    margin-bottom: 40px;
}

.section {
    background: rgba(26, 26, 26, 0.8); /* Dark gray */
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(233, 171, 42, 0.3); /* Subtle gold shadow */
}

.section h2 {
    margin-top: 0;
    color: #e9ab2a; /* Gold */
    text-shadow: 0 0 5px rgba(233, 171, 42, 0.5);
    font-weight: bold;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
}

.social-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.contract-section {
    background: rgba(26, 26, 26, 0.8); /* Dark gray */
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contract-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2em;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #e9ab2a; /* Gold */
    color: #000000; /* Black text on gold */
    font-weight: bold;
    transition: background 0.3s ease;
}

button:hover {
    background: #c0c0c0; /* Silver */
    color: #000000;
}

.tooltip {
    visibility: hidden;
    background-color: #1a1a1a; /* Dark gray */
    color: #e9ab2a; /* Gold */
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.9em;
}

.tooltip.show {
    visibility: visible;
    opacity: 1;
}

.roadmap-section {
    background: rgba(26, 26, 26, 0.8); /* Dark gray */
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: center;
    box-sizing: border-box;
}

.roadmap-section h2 {
    color: #e9ab2a; /* Gold */
    text-shadow: 0 0 5px rgba(233, 171, 42, 0.5);
    margin-top: 0;
}

.roadmap-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.roadmap-stage {
    flex: 1;
    background: rgba(233, 171, 42, 0.1); /* Light gold tint */
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    min-width: 280px;
}

.roadmap-stage h3 {
    color: #e9ab2a; /* Gold */
    text-shadow: 0 0 3px rgba(233, 171, 42, 0.5);
    margin-top: 0;
}

.roadmap-stage ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.roadmap-stage li {
    margin-bottom: 10px;
}

.faq-section {
    background: rgba(26, 26, 26, 0.8); /* Dark gray */
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: left;
    box-sizing: border-box;
}

.faq-section h2 {
    color: #e9ab2a; /* Gold */
    text-shadow: 0 0 5px rgba(233, 171, 42, 0.5);
    margin-top: 0;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item p:first-child {
    font-weight: bold;
    margin-bottom: 5px;
    color: #c0c0c0; /* Silver for questions */
}