/* 1. FONT SETUP */
@font-face {
    font-family: 'Mitogen';
    src: url('../../fonts/mitogen.display-italic-regular.ttf') format('truetype');
}

/* 2. RESET & BASE STYLES */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    overflow: hidden;
    background-color: #000000; /* Absolute Abyss */
    font-family: 'Open Sans', sans-serif;
    color: #79BAD9;
}

/* 3. THE CANVAS */
#canvas { position: fixed; inset: 0; z-index: 1; cursor: none; }

/* 4. NAVIGATION UI */
#nav-ui {
    position: fixed; top: 0; left: 0; width: 100%; padding: 30px 50px;
    z-index: 100; display: flex; justify-content: space-between; align-items: center;
    pointer-events: none; 
}

.nav-link {
    pointer-events: auto;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.3); /* Dimmed links */
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
    flex: 1;
}

.nav-link:hover { color: #ffffff; }

#status {
    flex: 2;
    font-family: 'Mitogen', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 6px;
    text-align: center;
    color: #79BAD9;
    text-shadow: 0 0 15px rgba(121, 186, 217, 0.3);
}

/* 5. DISCOVERY POPUP */
#fish-notif {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #79BAD9;
    color: #000000;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-family: 'Mitogen';
    opacity: 0;
    z-index: 200;
}

/* 6. CLEAR SCREEN OVERLAY */
#clear-overlay {
    position: fixed; inset: 0;
    background: #000000; /* Pitch black exit */
    display: none; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#clear-overlay h1 {
    font-family: 'Mitogen';
    font-size: 5rem;
    color: #79BAD9;
    margin-bottom: 20px;
}

#clear-overlay button {
    padding: 18px 45px;
    cursor: pointer;
    background: #79BAD9;
    border: none;
    color: #000000;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.2s;
}

#clear-overlay button:hover {
    background: #ffffff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}