footer {
    background-color: #1e2d3b;
    color: white;
    padding: 20px 0;
    margin-top: 40px;
    width: 100%;
    text-align: center;
    position: relative;
    bottom: 0;
    left: 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons img {
    width: 40px;
    height: 40px;
}


/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    font-family: Monospace, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header Section */
header {
    background-color: #1e2d3b;  /* Dark color for the header */
    padding: 20px 0;
    color: white;
    width: 100%; /* Ensure the header takes full width of the screen */
    display: flex;
    justify-content: space-between; /* Align logo and menu */
    align-items: center; /* Vertically aligns logo and menu items */
    position: fixed; /* Fixed at the top */
    top: 0;
    left: 0;
    right: 0;
    z-index: 999; /* Stays above all elements */
}

.logo {
    width: 120px;
    height: auto;
}

nav {
    display: flex;
    margin-left: auto; /* Push the menu to the right */
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s;
}

nav a:hover {
    background: #555;
    border-radius: 5px;
}

.menu-btn {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Mobile Menu */
@media screen and (max-width: 768px) {
    .menu-btn {
        display: block;
        margin-right: 20px;
    }

    nav {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9); /* Darker background */
        width: 100%;
        text-align: center;
        position: absolute;
        top: 70px;
        left: 0;
    }

    nav.show {
        display: flex;
    }

    nav a {
        padding: 15px;
        border-bottom: 1px solid #444;
    }
}

/* Contact Form Styling */
.contact-form {
    background: transparent;
    padding: 20px;
    max-width: 500px;
    margin: 50px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #222;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background: #555;
}

/* Transparent Container */
.transparent-container {
    background-color: rgba(255, 255, 255, 0.5); /* 50% transparency */
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    margin: 20px auto;
    text-align: center;
    color: #000;
}

/* Custom Container */
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid white;
    border-radius: 8px;
    box-shadow: 0 0 15px #00FF00;
}

/* Whitepaper Container */
.whitepaper-container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    margin: 50px auto;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

/* Close Button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
}

/* Whitepaper Iframe */
.whitepaper-frame {
    width: 100%;
    height: 700px;
    text-align: center;
    border: none;
}

/* Button Styling */
.open-modal-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.open-modal-btn:hover {
    background-color: #0056b3;
}

#dashboard-container {
    width: 50%;
    max-width: 700px;
    margin: 50px auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
}

.wallet-container {
    width: 100%;
    max-width: 300px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
}

.wallet-text {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
