body {
    margin: 0;
    font-family: sans-serif;
    background: linear-gradient(135deg, #000000, #123719);
    color: #48a13e;
    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(72, 161, 62, 0.5);
    transition: transform 0.3s ease;
}

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

.tokenomics-container {
    flex: 1;
    background: rgba(18, 55, 25, 0.8);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tokenomics-container h2 {
    color: #48a13e;
    text-shadow: 0 0 5px rgba(72, 161, 62, 0.5);
    margin-top: 0;
}

.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(18, 55, 25, 0.8);
    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(0, 0, 0, 0.6);
}

.section h2 {
    margin-top: 0;
    color: #48a13e;
    text-shadow: 0 0 5px rgba(72, 161, 62, 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(18, 55, 25, 0.8);
    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: #48a13e;
    color: #000000;
    font-weight: bold;
    transition: background 0.3s ease;
}

button:hover {
    background: #123719;
    color: #48a13e;
}

.tooltip {
    visibility: hidden;
    background-color: #123719;
    color: #48a13e;
    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(18, 55, 25, 0.8);
    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: #48a13e;
    text-shadow: 0 0 5px rgba(72, 161, 62, 0.5);
    margin-top: 0;
}

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

.roadmap-stage {
    flex: 1;
    background: rgba(72, 161, 62, 0.1);
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    min-width: 280px;
}

.roadmap-stage h3 {
    color: #48a13e;
    text-shadow: 0 0 3px rgba(72, 161, 62, 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(18, 55, 25, 0.8);
    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: #48a13e;
    text-shadow: 0 0 5px rgba(72, 161, 62, 0.5);
    margin-top: 0;
    text-align: center;
}

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

.faq-item p:first-child {
    font-weight: bold;
    margin-bottom: 5px;
}