/* ========== Global Styles ========== */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    text-align: center;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    text-align: left;
}

/* ========== Home Page Specific Styles ========== */
.home-page .content-container {
    max-width: 600px; /* ✅ Restricts width for better readability */
    padding: 0 20px;
    margin: 0 auto;
}

.home-page .content-container h1,
.home-page .content-container h2,
.home-page .content-container h3,
.home-page .content-container p,
.home-page .content-container ul {
    text-align: center;
}

/* ========== Typography ========== */
h1, h2, h3, h4 {
    color: #FFD700;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 40px;
}

h2 {
    margin-top: 20px;
}

p, ul {
    font-size: 16px;
}

/* ========== Navigation ========== */
.navigation {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 15px;
    margin: 20px 5px;
    font-size: 20px;
    font-weight: bold;
}

.navigation a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
    transition: color 0.3s;
    padding: 5px;
}

.navigation a:hover {
    color: #FFD700;
}

/* ========== Footer ========== */
footer {
    margin: 30px 0;
    font-size: 14px;
    text-align: center;
}

footer a {
    text-decoration: none;
    color: white;
    margin: 0 10px;
    transition: color 0.3s;
}

footer a:hover {
    color: #FFD700;
}

/* ========== Logo & Images ========== */
.logo {
    display: flex;
    justify-content: center;  /* ✅ Centers the logo */
    align-items: center;
    text-align: center;  /* ✅ Extra centering for inline elements */
    width: 100%;
    margin: 20px 0;  /* ✅ Adds spacing above/below */
}

.logo img {
    width: 400px; /* ✅ Adjust size as needed */
    max-width: 100%;
    height: auto;
    display: block;
}

img {
    max-width: 125%;
    height: auto;
}

/* ========== Wallet Containers ========== */
.home-page .wallet-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.home-page .wallet-box {
    width: 100px;
    padding: 10px;
    border: 2px solid white;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.home-page .wallet-box:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* ========== Home Button ========== */
.home-button {
    position: absolute;
    top: 20px;
    left: 20px;
}

.home-button img {
    width: 50px;
    height: auto;
    cursor: pointer;
}

.home-button img:hover {
    opacity: 0.8;
}

/* ========== Responsive Design ========== */
@media (max-width: 600px) {
    .content-container {
        max-width: 90%;
        padding: 0 10px;
        margin: auto;
    }

    .navigation {
        flex-direction: column;
        align-items: center;
    }

    .navigation a {
        display: block;
        padding: 8px 0;
        font-size: 18px;
    }

    .home-page .wallet-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .home-page .wallet-box {
        width: 80%;
        max-width: 150px;
        padding: 15px;
    }

    footer {
        font-size: 12px;
    }

    footer a {
        margin: 0 5px;
    }
}
