/* ====== Base Reset ====== */
html, body {
    height: 100%;
    margin: 0;
    font-family: proxima-nova, sans-serif;
    background-color: #141414;
    color: whitesmoke;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


::selection {
    background: #f3ca11;
    color: #fff;
}

main {
    flex: 1;
    padding: 20px;
}

.privacy-container {
    max-width: 900px;       /* Prevents text from stretching too wide */
    margin: 0 auto;         /* Centers container horizontally */
    padding: 50px 20px;     /* Top/bottom 50px, left/right 20px for mobile */
    color: whitesmoke;
    text-align: left;       /* Left-align paragraphs for readability */
    line-height: 1.6;       /* Spacing between lines */
    display: flex;
    flex-direction: column;
    gap: 20px;              /* Space between sections */
    box-sizing: border-box;
}

.privacy-container h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #f3ef11;
}

.privacy-container h2 {
    font-size: 1.75em;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #f3ca11;
}

.privacy-container p, 
.privacy-container ul {
    font-size: 1em;
    color: whitesmoke;
    margin: 0 0 15px 0;
}

.privacy-container ul {
    padding-left: 20px;     /* Indent bullet points */
}

.privacy-container a {
    color: #1E90FF;
    text-decoration: underline;
}


/* ====== Top Banner ====== */
.top-banner {
    width: 100%;
    background-color: #111111;
    color: #fff;
    padding: 10px 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;

    position: sticky;
    top: 0;
    z-index: 9999;
}

.top-banner p {
    margin: 0;
    text-align: center;
    width: 100%;
}

.banner-close {
    position: absolute;
    right: 15px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

.banner-close:hover {
    opacity: 0.7;
}

/* ====== Headers & Titles ====== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    margin-bottom: 20px;
    position: relative;
}

.title {
    font-size: 85px;
    font-weight: bold;
    color: #f3ef11;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.subtitle {
    font-size: 1.5em;
    color: #fff;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;

    margin: -10px 0 20px;
    text-align: center;
}

.Logo {
    width: 100px;
    height: auto;
    border-radius: 10px;
    margin: 10px 0 0 10px;
}

/* ====== Images ====== */
img[alt="under construction"] {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    height: auto;
}



/* ====== Footer ====== */
footer {
    display: flex;
    justify-content: center;
    gap: 10px;
    background-color: #222;
    color: #fff;
    padding: 5px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    margin-top: auto;
}


footer p {
    margin: 5px;
}

#link, #wallets {
    text-align: center;
    justify-content: center;
}

.Collumn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 10px;
}

.footer-title {
    font-weight: bold;
    color: whitesmoke;
}

/* ====== Links ====== */
a {
    color: #1E90FF;
    text-decoration: none;
    width: fit-content;
    display: block;
}

/* ====== Cards ====== */
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

a.card-a {
    margin: 50px;
    text-decoration: none;
}

.card {
    width: 300px;
    min-height: 175px;

    background-color: #222;
    color: whitesmoke;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 20px;
    margin: 0;

    border-radius: 10px;
    text-align: center;

    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card h3 {
    position: absolute;
    bottom: 5px;
}

/* ====== Tooltips ====== */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip-bubble {
    visibility: hidden;
    opacity: 0;

    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translate(-20%, 0);

    background: #fff;
    color: #000;

    padding: 10px 14px;
    white-space: nowrap;

    border-radius: 10px;
    border: 3px solid #000;

    transition: 0.25s ease;
}

/* Tooltip arrow */
.tooltip-bubble::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 10px;

    border-right: 12px solid transparent;
    border-top: 12px solid #fff;
}

.tooltip-bubble::before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 9px;

    border-right: 14px solid transparent;
    border-top: 14px solid #000;
    z-index: -1;
}

.tooltip:hover .tooltip-bubble {
    visibility: visible;
    opacity: 1;
}
