/* Hide default OS cursor */
body {
  cursor: none;
  margin: 0;
  min-height: 100vh;
  background-color: white;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  scrollbar-width: thin;                 /* thin scrollbar */
  scrollbar-color: #F2EA2E #ffffff; 
}

/* Chrome, Edge, Safari */
body::-webkit-scrollbar {
    width: 8px;                  /* thin scrollbar */
}

body::-webkit-scrollbar-track {
    background: #ffffff;          /* white track for contrast */
}

body::-webkit-scrollbar-thumb {
    background-color: #F2EA2E;   /* neon yellow thumb */
    border-radius: 10px;          /* rounded edges */
    border: 2px solid #ffffff;    /* space around thumb */
    box-shadow: 0 0 8px #F2EA2E; /* subtle glowing effect */
    transition: all 0.2s ease;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #FFFF66;   /* brighter on hover */
    box-shadow: 0 0 12px #FFFF66;
}

/* Splash overlay */
.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: none;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.splash-img {
  max-width: 100vw;
  max-height: auto;
}

#customCursor {
  position: fixed;
  pointer-events: none;
  width: 120px;
  height: 120px;
  z-index: 20000;
  transform: translate(-50%, -50%);
  transition: transform 0.03s linear;
}

@media (hover: none) and (pointer: coarse) {
  #customCursor {
    display: none !important;
  }
}

/* Navbar */
.navbar {
  background-color: white;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  position: fixed;
  padding-left: 5vw;
  padding-top: 2vw;
  padding-bottom: 10px;
  width: 100%;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: none;
  z-index: 10;
}

.navbar a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 3px 3px;
  text-decoration: none;
  font-size: 17px;
}

.navbar a:hover {
  color: black;
  background-color: #F2EA2E;
  cursor: none;
}

/* Mobile adjustments */
@media screen and (max-width: 500px) {
  .navbar a {
    font-size: 10px;        /* shrink text for mobile */
  }
}

#purrr {
    display: block;
    position: fixed;          
    top: 50%;                 
    left: 50%;               
    width: 80vw;             
    max-width: 1200px;       
    height: auto;            
    transform: translate(-50%, -50%); 
    z-index: -100;
    pointer-events: none;
    user-select: none;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: black;
}

.popup.show {
  visibility: visible;
  opacity: 1;
}

/* Popup content for dragging */
.popup-content {
  background: #F2EA2E;
  padding: 10px;
  border-radius: 1px;
  max-width: 600px;
  font-size: 14px;
  line-height: 1.5;
  overflow-y: auto;
  position: fixed; /* fixed is better for dragging relative to viewport */
  top: 50%;        /* initial position */
  left: 50%;
  transform: translate(-50%, -50%); /* center initially */
  max-height: 60vh; /* Adjust height as needed */
  overflow-y: auto; /* vertical scroll if content exceeds height */
  padding: 20px;
}

/* Optional: visually separate the scroll */
.popup-content::-webkit-scrollbar {
    width: 8px;
}

.popup-content::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.3);
    border-radius: 4px;
}

/* Mobile adjustments */
@media screen and (max-width: 600px) {
  .popup-content {
    font-size: 11px;   /* smaller text for mobile */
    padding: 15px;     /* optional: reduce padding on small screens */
    max-width: 90vw;   /* make it nearly full width */
  }
}

.close {
  position: absolute;
  top: 2px;
  right: 5px;
  font-size: 20px;
  color: black;
}

#mail2{
	color: hotpink;
}

#comic1{
	width: 550px;
	height: auto;
	padding-top: 15px;
	padding-bottom: 20px;
}

/* Remove bullets from contributor list */
.contributor-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contributor-list li {
    margin-bottom: 0.4em;
}

#issueImage{
    display: block;
    width: 100%;       
    height: auto;     
    margin-top: 500px;
}

#Palestine {
  width: 100%;
  text-align: center;
  margin-top: 20px;   /* space below the image */
  margin-bottom: 20px;
  font-size: 11px;
}

#mail2{
  font-size: 25px;
}