body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, #ff7f50, #87ceeb, #90ee90, #ffc0cb);
    overflow-x: hidden;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: transparent;
    padding: 10px;
    text-align: center;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    position: top; /* Changed from 'top' to 'fixed' */
    top: 0;
}

.logo {
    max-width: 80px;
    margin: 0 auto;
}

nav {
    font-size: 25px;
    font-family: Arial, sans-serif;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    position: Sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: black;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

nav a:hover {
    transform: scale(1.1);
}

.main-content {
    padding: 20px;
    color: black;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section {
    text-align: center;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.section img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.section img:hover {
    transform: scale(1.1);
}

.section-title {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 10px 20px;
    margin-bottom: 20px;
    font-size: 30px;
    transition: transform 0.3s ease;
}

.section-title:hover {
    transform: scale(1.05);
}

.home {
    background-image: url('home-background.jpg');
    padding-top: 60px; /* Adjusted padding to create space under navigation */
}

.home .content-box {
    display: inherit;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.home .content-box > div {
    flex: 1;
    padding: 20px;
}

.home .content-box > div img {
    max-width: 50%;
}

.tokenomics {
    background-image: url('tokenomics-background.jpg');
}

.tokenomics-content {
    display: flex;
    flex-direction: row-reverse; /* Reversed order */
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.tokenomics-text {
    text-align: center;
    padding: 20px;
    max-width: 100%;
    cursor: pointer;
    user-select: all; /* Allows text selection on click */
    font-size: 30px; /* Larger font size */
    width: 100%; /* Make it wider */
    box-sizing: border-box; /* Include padding and border in width */
    border: 1px solid black; /* Add border for visibility */
    border-radius: 10px; /* Rounded corners */
    background-color: rgba(255, 255, 255, 0.7); /* Light background */
}

.tokenomics-text:hover {
    background-color: rgba(255, 255, 255, 0.8); /* Lighter background on hover */
}

.copy-button {
    cursor: pointer;
    background-color: #333;
    color: white;
    padding: 10px 60px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.copy-button:hover {
    background-color: #555;
}

.roadmap {
    background-image: url('roadmap-background.jpg');
    padding-top: 60px;
}

.roadmap-content {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin-top: 20px;
    position: relative;
}

.roadmap-point {
    text-align: left;
    padding: 20px;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.roadmap-point img {
    max-width: 200px;
    margin-bottom: 10px;
}

.roadmap-point p {
    margin: 0;
}

.partners {
    padding-top: 60px;
    overflow: hidden;
}

.partners-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.partners-images img {
    max-width: 400px;
    margin: 10px;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    background-color: #333;
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

footer {
    color: white;
    padding: 20px;
    text-align: center;
    position: fixed; /* Changed from 'bottom' to 'fixed' */
    bottom: 0;
    left: 0; /* Added left property */
    width: 100%;
    z-index: 1000;
}

/* Responsive Styles */
@media only screen and (max-width: 768px) {
    .home .content-box {
        flex-direction: column;
        align-items: center;
    }
    .home .content-box > div {
        width: 100%;
        padding: 10px;
    }
    .tokenomics-content {
        flex-direction: column;
        align-items: center;
    }
    .roadmap-content {
        flex-direction: column;
        align-items: center;
    }
}

/* Social icons in header */
.social-icons-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 20px; /* Adjust as needed */
}

.social-icons-header a {
    margin-left: 10px;
}

.social-icons-header i {
    font-size: 24px; /* Adjust the size of the icons */
    color: #333; /* Adjust the color of the icons */
}
/* Add this CSS to your existing styles.css file */

#myTopnav {
    display: flex;
    justify-content: center;
    align-items:center;
}

#myTopnav a {
    display: block;
    margin:0 10px;
}

.menu-icon {
    display: none;
}

@media only screen and (max-width: 768px) {
    #myTopnav {
        flex-direction: column;
        align-items: flex-start;
        display: none;
    }
    
    #myTopnav.active {
        display: flex;
    }

    #myTopnav a {
        display: inline-block;
    }

    .menu-icon {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .menu-icon i {
        font-size: 24px
    }
}
