body, html {
    margin: 0; 
    padding: 0; 
    font-family: sans-serif;
    /* background: url('../img/eye_background_desktop.jpg') no-repeat center center fixed; */
    background-color: #333;
    background-size: cover;

    /* removed to push content down page 
    height: 100vh;
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;    
    */

    min-height: 100%;
}

header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    /*background: rgba(0, 0, 0, 0.6);    */
    background-color: #555; /* or use rgba if you want transparency */
    z-index: 1001;
    padding: 10px 0;
}

footer {
    /* position: absolute;  */
    position: static;
    bottom: 0; 
    left: 0; 
    width: 100%; 
    text-align: center; 
    padding: 10px 0; 
    /* background: rgba(0, 0, 0, 0.6); */
    background-color: #555; /* or use rgba if you want transparency */
    color: white; 
    z-index: 1001;   
}

.pageview-counter {
    position: absolute;
    bottom: 5px;
    left: 20px; /* adds spacing from the left edge */
    color: #ccc;
    font-size: 0.8rem;
    z-index: 1002;
}

/* --------- EXISITING ------ */
.overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; cursor: pointer; z-index: 1000;
}


@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
    100% { transform: translate(-50%, -50%) scale(1); }
}




#container {
    position: relative;
    width: 100vw;
    /* height: 100vh;  dxb - replace */
    min-height: 100vh; /* container still stretches full height */
}


.tooltip {
    position: absolute;
    background: black; color: white;
    padding: 4px 8px; border-radius: 4px; opacity: 0; transition: opacity 0.3s;
    white-space: nowrap;
    pointer-events: none;
    font-size: 0.8rem;
    z-index: 9999; /* super high so it’s always on top - does not work??? */
}

.tooltip.top {
    bottom: 100%; left: 50%;
    transform: translateX(-50%) translateY(-10px);
}

.tooltip.bottom {
    top: 100%; left: 50%;
    transform: translateX(-50%) translateY(10px);
}

/* ------------------ CONTENT SECTION ----------------------- */
/* === General Content Styling === */
.content-section {
    max-width: 800px;
    /* top 100px (header space), bottom 80px (footer space) */
    margin: 100px auto 80px auto;
    padding: 30px 20px;
    background-color: var(--content-bg, rgba(0, 0, 0, 0.6)); /* fallback */
    color: var(--content-text, white);
    border-radius: 10px;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* === Optional Heading Styling === */
.content-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--content-heading, #ffffff);
}

/* === Optional Link Styling === */
.content-section a {
    color: #1e90ff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.content-section a:hover {
    border-color: #1e90ff;
}



/* Aug 14 2025 */
/* Hamburger menu container */
.hamburger-menu {
    position: absolute;
    top: 10px;
    right: 20px;
}

/* Hamburger icon */
.hamburger-menu i {
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* Dropdown container */
#menu-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 30px;
    background: #222;
    border-radius: 4px;
    box-shadow: 0 0 5px #000;
    white-space: nowrap; /* makes items only as wide as needed */
}

/* Menu links */
#menu-dropdown a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
}

/* Yellow special links */
#menu-dropdown a[title],
#menu-dropdown a[target="_blank"] {
    color: yellow;
    margin: 0 10px;
}

/* Hover effect */
#menu-dropdown a:hover {
    background: #333;
}


.offload-link {
  display: inline-block;
  margin: 0 8px;
  padding: 4px 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffeb3b; /* yellow */
  text-decoration: none;
  background: rgba(255, 255, 0, 0.1); /* subtle highlight */
  border: 1px solid #ffeb3b;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.offload-link:hover {
  background: #ffeb3b;
  color: #222;
  transform: scale(1.05);
}


.offload-link:active {
  transform: scale(0.95);
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
