/* --- PERMANENTLY HIDE WEBGL CONTROLS & FPS COUNTER --- */
.dg.ac, .dg, .lil-gui, #stats, div[style*="cursor: pointer; opacity: 0.9"] {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

/* --- MINIMALISTIC BITCOIN OVERLAY --- */
.bitcoin-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; 
    padding: 40px; 
    box-sizing: border-box;
    z-index: 10;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.top-left-container {
    pointer-events: auto; 
}

.top-right-container {
    pointer-events: auto;
    text-align: right;
}

/* --- DONATION BLOCK (BOTTOM RIGHT) --- */
.bottom-right-container {
    position: absolute;
    bottom: 40px;
    right: 40px;
    pointer-events: auto; /* Allows users to highlight and copy the address */
    text-align: right;
}

.donate-label {
    font-size: 0.75rem;
    color: #888888;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.donate-address {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    letter-spacing: 0.5px;
}

.donate-address:hover {
    opacity: 1;
}

/* --- TYPOGRAPHY & LAYOUT --- */
.live-price {
    font-size: 2.2rem; 
    font-weight: 300;
    margin: 0; 
    letter-spacing: 1px;
    transition: color 0.4s ease;
    text-shadow: 0px 4px 15px rgba(0,0,0,0.6);
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 12px; 
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    text-shadow: 0px 2px 10px rgba(0,0,0,0.5);
}

.nav-link:hover {
    opacity: 1;
}

main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #050505;
}