body, html {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    transition: background-color 0.5s;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative; /* Ensure that the body is positioned relative to allow absolute positioning inside */
}

header {
    width: 100%;
    text-align: center;
    margin-bottom: 0px;
    z-index: 2; /* Ensure the header is above the background image */
}

header img {
    width: 100%;
    max-height: 400px; /* Adjust height as necessary */
    object-fit: cover;
    vertical-align: top; /* Align the image to the top */
}

.contract-details {
    display: flex;
    flex-direction: column; /* Stack contract address above status and tax info */
    justify-content: center;
    align-items: center;
    color: #FFF;
    cursor: pointer;
    width: 100%;
    padding: 50px 0; /* Add 50px padding */
    z-index: 2; /* Ensure the contract details are above the background image */
}

.status-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 50%; /* Adjust as necessary */
    padding: 50px 0; /* Add 50px padding */
}

.status-text, .tax-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 0 20px; /* Add some padding between the elements */
}

.contract-details div, .contract-details span {
    font-size: 1vw;
}

.contract-details div .xthin, .contract-details span .xthin {
    margin: 0 10px;
    font-size: 1vw;
}

.contract-details div .xxthin, .contract-details span .xxthin {
    margin: 0 0;
    font-size: 1vw;
}

.full-width-content, .full-width-section {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2; /* Ensure content sections are above the background image */
}

.full-width-content-thin, .full-width-section-thin {
    width: 100%;
    height: 175px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2; /* Ensure these sections are above the background image */
    padding-top:50px;
}

.full-width-content-xthin, .full-width-section-xthin {
    width: 100%;
    height: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2; /* Ensure these sections are above the background image */
}

.full-width-content-thin h1, .full-width-section-thin h1,
.full-width-content-thin h2, .full-width-section-thin h2,
.full-width-content-thin h3, .full-width-section-thin h3 {
    margin: 0;
    z-index: 2; /* Ensure these headers are above the background image */
}

.background-image {
    position: fixed; /* Change to fixed to ensure it stays behind content and doesn't scroll */
    width: 100%;
    height: 100%;
    background: url('background.jpg') center top/cover no-repeat;
    opacity: 0.25;
    z-index: 1; /* Ensure the background image is behind all other content */
    top: 0;
    left: 0;
}

.full-width-content .overlay, .full-width-section .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2; /* Ensure overlay is above the background image */
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 1280px;
    margin: auto;
    flex: 1;
    z-index: 2; /* Ensure container content is above the background image */
}

.status, .info, .features, .tokenomics, .roadmap, .community .introduction {
    padding: 20px;
    width: 100%;
    text-align: justify;
    z-index: 2; /* Ensure these sections are above the background image */
}

.introduction {
    font-size: 1.15em;
    z-index: 2; /* Ensure introduction is above the background image */
    background-color: #000;
}

.introduction p{
    width:50%;
}

h1 {
    font-size: 3em;
    margin-top: 20px;
    color: #FFF;
    z-index: 2; /* Ensure these headers are above the background image */
}

h2 {
    margin: 60px 0;
    font-size: 2em;
    color: #FFF;
    z-index: 2; /* Ensure these headers are above the background image */
}

h3 {
    text-align: left;
    width: 50%;
    z-index: 2; /* Ensure these headers are above the background image */
}

#timer {
    font-size: 1.5em;
    margin: 20px 0;
    color: #FFF;
    z-index: 2; /* Ensure the timer is above the background image */
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    width: 50%;
    z-index: 2; /* Ensure the list is above the background image */
}

ul ul {
    padding-left: 20px;
    z-index: 2; /* Ensure the nested list is above the background image */
}

li {
    text-align: left;
    margin: 10px 0;
    z-index: 2; /* Ensure list items are above the background image */
}

li.indent {
    margin-left: 20px;
    padding-left: 10px;
    z-index: 2; /* Ensure indented list items are above the background image */
}

a {
    color: #FFF;
    text-decoration: none;
    z-index: 2; /* Ensure links are above the background image */
}

a:hover {
    text-decoration: underline;
}

.roadmap h4 {
    text-align: left;
    z-index: 2; /* Ensure roadmap headers are above the background image */
}

table {
    border-collapse: collapse;
    width: 30%;
    margin-top: 20px;
    z-index: 2; /* Ensure table is above the background image */
}
th, td {
    border: 1px solid #333;
    padding: 8px;
    text-align: center;
    z-index: 2; /* Ensure table headers and data cells are above the background image */
}
th {
    background-color: rgba(0, 0, 0, 1);
    color: white;
    z-index: 2; /* Ensure table headers are above the background image */
}
tr {
    background-color: rgba(0, 0, 0, .75);
    z-index: 2; /* Ensure table rows are above the background image */
}
tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 1);
    z-index: 2; /* Ensure even table rows are above the background image */
}

/* Highlighting rows */
.highlight-buy {
    background-color: #089981 !important;
}

.highlight-sell {
    background-color: #f23645 !important;
}

@media (max-width: 768px) {
    .contract-details div, .contract-details span {
        font-size: 5vw;
    }
    ul {
        list-style-type: disc;
        padding-left: 20px;
        width: 90%;
    }
    ul ul {
        padding-left: 20px;
    }
    .contract-details div, .contract-details span {
        font-size: 4vw;
    }
    .contract-details div .xthin, .contract-details span .xthin {
        margin: 0 10px;
        font-size: 4vw;
    }
    .contract-details div .xxthin, .contract-details span .xxthin {
        margin: 0 0;
        font-size: 4vw;
    }
    .status, .info, .features, .tokenomics, .roadmap, .community .introduction {
        padding: 40px;
        width: 83%;
        text-align: justify;
    }
    table {
        border-collapse: collapse;
        width: 90%;
        margin-top: 20px;
    }
    .roadmapimg{
        width:90%;
    }
    h3 {
        text-align: left;
        width: 100%;
        z-index: 2; /* Ensure these headers are above the background image */
    }

    .introduction p{
        width:100%;
    }
    .status-info{
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contract-details div, .contract-details span {
        font-size: 5vw;
    }
    ul {
        list-style-type: disc;
        padding-left: 20px;
        width: 90%;
    }
    ul ul {
        padding-left: 20px;
    }
    .contract-details div, .contract-details span {
        font-size: 4vw;
    }
    .contract-details div .xthin, .contract-details span .xthin {
        margin: 0 10px;
        font-size: 4vw;
    }
    .contract-details div .xxthin, .contract-details span .xxthin {
        margin: 0 0;
        font-size: 4vw;
    }
    .status, .info, .features, .tokenomics, .roadmap, .community .introduction {
        padding: 40px;
        width: 83%;
        text-align: justify;
    }
    table {
        border-collapse: collapse;
        width: 90%;
        margin-top: 20px;
    }
    .roadmapimg{
        width:90%;
    }
    h3 {
        text-align: left;
        width: 100%;
        z-index: 2; /* Ensure these headers are above the background image */
    }
    .introduction p{
        width:100%;
    }
    .status-info{
        max-width: 100%;
    }
}
