html, body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	background: #111;
	color: white;
  }
  
  /* 5 columns layout */
  .col-md-2-4 {
	flex: 0 0 20%;
	max-width: 20%;
  }
  
  @media (max-width: 768px) {
	.col-md-2-4 {
	  flex: 0 0 50%;
	  max-width: 50%;
	}
  }
  
  /* CARD */
  .phobia-item {
	position: relative;
	cursor: pointer;
	border-radius: 10px;
	overflow: hidden;
  }
  
  /* FIXED IMAGE FRAME (KEY FIX) */
  .img-box {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	position: relative;
  }
  
  .img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.25s ease;
  }
  
  /* UNIFORM ZOOM */
  .phobia-item:hover .img-box img {
	transform: scale(1.1);
  }
  
  /* TEXT OVERLAY */
  .text-block {
	position: absolute;
	bottom: 6%;
	left: 6%;
	right: 6%;
	color: white;
	text-shadow: 0 2px 8px rgba(0,0,0,0.85);
  }
  
  /* RESPONSIVE TEXT */
  .text-block h4 {
	font-size: clamp(0.9rem, 1.2vw, 1.3rem);
	margin: 0;
  }
  
  .text-block h6 {
	font-size: clamp(0.75rem, 1vw, 1rem);
	margin: 0;
  }
  
  /* ALERT */
  .alert.alert-primary {
	background: rgba(0,0,0,0.6);
	border: none;
	backdrop-filter: blur(6px);
  }
  
  /* MODAL IMAGE */
  #modalImage {
	max-height: 75vh;
	object-fit: contain;
  }