/* Admin Panel Styling */
h1,h2, h3 {
  color: #333;
  font-weight: normal;
  text-align: center;
}

*, *::before, *::after{
  box-sizing: border-box;
}

#activity-list {
  width: 100%;
  /* max-width: 600px; */
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  padding: 33px;
  gap: 10px;
  align-items: center;
}

#activity-list div{
  display: flex;
  justify-content: space-evenly;
  width: 90%;
}

#activity-list div input{
  width: 90%;
}
.delete{
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pjxzdmcgdmlld0JveD0iMCAwIDQ0OCA1MTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUzLjIxIDQ2N2MxLjU2MiAyNC44NCAyMy4wMiA0NSA0Ny45IDQ1aDI0NS44YzI0Ljg4IDAgNDYuMzMtMjAuMTYgNDcuOS00NUw0MTYgMTI4SDMyTDUzLjIxIDQ2N3pNNDMyIDMySDMyMGwtMTEuNTgtMjMuMTZjLTIuNzA5LTUuNDItOC4yNS04Ljg0NC0xNC4zMS04Ljg0NEgxNTMuOWMtNi4wNjEgMC0xMS42IDMuNDI0LTE0LjMxIDguODQ0TDEyOCAzMkgxNmMtOC44MzYgMC0xNiA3LjE2Mi0xNiAxNlY4MGMwIDguODM2IDcuMTY0IDE2IDE2IDE2aDQxNmM4LjgzOCAwIDE2LTcuMTY0IDE2LTE2VjQ4QzQ0OCAzOS4xNiA0NDAuOCAzMiA0MzIgMzJ6Ii8+PC9zdmc+");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center; 
  background-color: transparent;
  width: 50px;
  height: 50px;
}
.center{
  margin:0 auto;
  text-align: center;
}

.activity-container {
  display: flex;
  justify-content: center;
  border-radius: 8px;
  width: 100%;
  height:fit-content;
  max-height: 300px;
  text-align: center;
  margin-top: 33px;
}

.activity-container input[type="text"],
.activity-container input[type="url"] {
    width: 45%;
    padding: 8px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.activity-image-preview {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}

/* New Activity Form */
#new-activity-text, #new-activity-image {
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}

#add-activity-button,#add-collection-button {
  width: 100%;
  background-color: #007bff;
  color: white;
  padding: 10px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

#add-activity-button:hover,#add-collection-button:hover {
  background-color: #0056b3;
  cursor: pointer;
}


/* Body and Activity Container */

@font-face {
  font-family: lazydog;
  src: url(font/Lazydog.otf);
}
input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: transparent;
}
html {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
body {
  display: flex;
  height: 100vh;
  width: 100vw;
  font-family: Arial, sans-serif;
  margin: 0;
  z-index: 99;
  position: relative;
  flex-direction: column;
  overflow: hidden;
  font-family: lazydog;
}

/* Prevent zoom and overscroll on game and collection pages */
body.collection-page, body.landing-page {
  /* Use dynamic viewport height for mobile browsers */
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  /* Remove overflow hidden if it causes issues with content visibility */
  overflow-y: auto;
  overflow-x: hidden;
}
html {
  touch-action: none !important;
  overscroll-behavior: none !important;
}

#bg-image{
  position: absolute;
  z-index: 0;
  width:100%;
  height: 100%;
  top:0;
  left:0;
  right: 0;
  bottom: 0;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  opacity: 1; /* Start fully visible */
  filter:saturate(0.0) brightness(1.5) contrast(1.2);
  /* Transition both opacity and filter */
  transition: opacity 0.5s ease-in-out, filter 1s ease;
}

/* Add class for fade-out effect */
#bg-image.fade-out {
  opacity: 0;
}

.button-container {
  /* Ensure buttons are always visible and not cut off */
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  max-width: 100vw;
  z-index: 100;
  background: rgba(255,255,255,0.01); /* transparent but clickable */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: env(safe-area-inset-bottom, 16px);
  box-sizing: border-box;
}



/* Button Animation */
.animate {
  animation: button-animate 0.3s ease;
}

@keyframes button-animate {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
  
#canvas{
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999;
}
  


/* Introduction Text */
.game-intro {
  margin: 0px auto;
  max-width: 600px;
  text-align: center;
}


.choose-collection {
  background-image: url('images/tegevuskoht.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  min-height: 100px;
  max-width: 900px;
  max-height: 40vw;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}


/* Collection Selection Styles */
.collection-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 10px auto;
  padding: 20px;
  max-width: 800px;
  justify-content: center;
}

.collection-card {
  background: #ffe066;
  background-size: contain;
  background-repeat: no-repeat;
  color: #333;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.9s, box-shadow 0.2s;
  -webkit-filter: drop-shadow(3px 3px 2px #00000054);
  filter: drop-shadow(3px 3px 2px #00000054);
  text-shadow: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  padding: 12px 0 0 0;
  position: relative;
  overflow: hidden;
}

.collection-card-title {
  margin-bottom: 8px;
  font-size: 1.6em;
  text-align: center;
  width: 100%;
  color: #333;
  font-weight: bold;
  z-index: 2;
  text-transform: uppercase;
}

.collection-card-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  z-index: 2;
}

.collection-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}


/* BUTTONS */
@keyframes buttonPopSmooth {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3); /* Quickly pop out */
  }
  100% {
    transform: scale(1); /* Slowly return to original size */
  }
}

.nupp {
  background: url(nupp.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 120px;
  height: 120px;
  font-size: 28px;
  color: black;
  font-family: lazydog;
  cursor: pointer;
  border: none; /* Remove default button border */
  transition: transform 0.2s ease;
  -webkit-filter: drop-shadow(3px 3px 2px #00000054);
  filter: drop-shadow(3px 3px 2px #00000054);
  margin: 0;
}

.nupp.clicked {
  animation: buttonPopSmooth 0.5s cubic-bezier(0.3, 1.5, 0.5, 1) forwards;
}

.popsmooth{
  animation: buttonPopSmooth 1.5s cubic-bezier(0.3, 1.5, 0.5, 1) forwards;
}

/* Green bubbles for "I did it" */
.bubble {
  position: absolute;
  bottom: -20px;
  width: 15px;
  height: 15px;
  background-color: #28a745;
  border-radius: 50%;
  opacity: 0.8;
  animation: bubble-rise 6s linear infinite;
  pointer-events: none; /* Allow clicks to pass through bubbles */
}

@keyframes bubble-rise {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-150px) scale(1.2); }
}


/* Make buttons bigger and more colorful */
.action-button {
  padding: 20px;
  transition: transform 0.2s;
}

.action-button:active {
  transform: scale(0.95);
}

.done{
  position: absolute;
  bottom: 80px;
  left: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.done img{
  width:30px;
  height:30px;
}
.failed{
  filter: hue-rotate(309deg) drop-shadow(3px 3px 2px #00000054);
  position: absolute;
  bottom: 170px;
  right: 21%;
}
.next{
  filter: hue-rotate(59deg) drop-shadow(3px 3px 2px #00000054);
  position: absolute;
  bottom:10px;
  right:10px;
}

.activity{    
  border-radius: 50%;
  background-color: #6fecff;
  width: 97vw;
  margin: 0 auto;
  height: max-content;
  min-height: 100px;
  font-size: min(max(18px, 4vw), 32px);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(3px 3px 2px #00000054);
  
}

#activity-text{
  padding: 45px;
  max-width: 900px;
}

.activity-container svg {
  width: 100%;
  height: auto;
}


@keyframes pulseThreat {
  0% {
    filter: saturate(0) brightness(0.8) hue-rotate(0deg); /* Desaturated */
  }
  50% {
    filter: saturate(2) brightness(1.2) hue-rotate(45deg); /* Saturated with color shift */
  }
  100% {
    filter: saturate(0) brightness(0.8) hue-rotate(0deg); /* Back to desaturated */
  }
}

#bg-image.pulsate-threat {
  animation: pulseThreat 2s ease-in-out infinite; /* Loop animation */
}


/* Timer styling */
.timer-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  font-size: 120px;
  font-family: 'Comic Sans MS', cursive;
  text-shadow: 3px 3px 0 #ff6b6b,
  -3px -3px 0 #4ecdc4,
  3px -3px 0 #ffe66d,
  -3px 3px 0 #95e1d3;
  animation: bounce 0.5s infinite alternate;
  opacity: 0.9;
  background: white;
  border-radius: 50px;
  border: 1px solid #cdcdcd;
  padding: 5px 50px;
}

@keyframes bounce {
  from {
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    transform: translate(-50%, -50%) scale(1.1);
  }
}


/*************************************************  ADMIN  *************************************************


/* Form Container Styling */
#activity-form,#collection-form {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 600px;
  margin: 20px auto;
}

/* Input and Button Styling */
input[type="text"], input[type="file"], select, button {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  font-size: 1em;
  border-radius: 5px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}



/* Activity and Collection Lists */
#activity-list, #collection-list {
  width: 100%;
  max-width: 800px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

#activity-list div, .collection {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  background: #fafafa;
  border-radius: 8px;
  margin: 5px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.collection {
  flex-direction: column;
}

.activity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: #ffffff;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.activity-item span {
  font-size: 0.9em;
  color: #333;
  flex: 1;
  margin-right: 10px;
}

/* Image Preview */
.activity-image-preview {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
  margin-left: 10px;
}

/* Delete Button */
.delete {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pjxzdmcgdmlld0JveD0iMCAwIDQ0OCA1MTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUzLjIxIDQ2N2MxLjU2MiAyNC44NCAyMy4wMiA0NSA0Ny45IDQ1aDI0NS44YzI0Ljg4IDAgNDYuMzMtMjAuMTYgNDcuOS00NUw0MTYgMTI4SDMyTDUzLjIxIDQ2N3pNNDMyIDMySDMyMGwtMTEuNTgtMjMuMTZjLTIuNzA5LTUuNDItOC4yNS04Ljg0NC0xNC4zMS04Ljg0NEgxNTMuOWMtNi4wNjEgMC0xMS42IDMuNDI0LTE0LjMxIDguODQ0TDEyOCAzMkgxNmMtOC44MzYgMC0xNiA3LjE2Mi0xNiAxNlY4MGMwIDguODM2IDcuMTY0IDE2IDE2IDE2aDQxNmM4LjgzOCAwIDE2LTcuMTY0IDE2LTE2VjQ4QzQ0OCAzOS4xNiA0NDAuOCAzMiA0MzIgMzJ6Ii8+PC9zdmc+");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 30px;
  height: 30px;
  background-color: transparent;
  cursor: pointer;
  border: none;
}

/* Responsive Adjustments for Admin */
@media (max-width: 768px) {
  #activity-form, .center {
      width: 95%;
      padding: 15px;
  }

  #activity-list div, .collection {
      flex-direction: column;
      text-align: center;
      align-items: center;
  }

  .activity-image-preview {
      width: 100%;
      max-width: 300px;
      margin-top: 10px;
  }
}

/* Animation for Button Hover */
@keyframes button-animate {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

button:hover {
  /* animation: button-animate 0.3s ease; */ /* Let's keep hover subtle for now */
}

/* Styling for Admin Collection Editing */
.collection-header {
    display: flex;
    align-items: center;
    gap: 10px; /* Spacing between elements */
    margin-bottom: 15px; /* Space below header before activities */
    padding: 10px;
    background-color: #f0f0f0; /* Light background for the header */
    border-radius: 5px;
}

.collection-icon-preview {
    width: 40px; /* Adjust size as needed */
    height: 40px;
    object-fit: contain; /* Use contain for icons like SVG */
    border-radius: 4px;
    margin-right: 5px; /* Space between icon and name */
}

.no-icon-placeholder {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px; /* Vertically center text */
    text-align: center;
    background-color: #e0e0e0;
    color: #777;
    font-size: 10px;
    border-radius: 4px;
    margin-right: 5px;
}

.collection-name-input {
    flex-grow: 1; /* Allow name input to take available space */
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.collection-name-input:disabled {
    background-color: #eee; /* Indicate disabled state */
    color: #555;
}

.collection-icon-file-input {
    max-width: 200px; /* Limit width of file input */
}

/* Style edit/save/delete buttons */
.collection-header button {
    padding: 6px 12px;
    font-size: 0.9em;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid transparent;
}

.edit-collection-button {
    background-color: #ffc107; /* Yellow */
    border-color: #ffc107;
}

.save-collection-button {
    background-color: #28a745; /* Green */
    color: white;
    border-color: #28a745;
}

.delete-collection-button, 
.delete-activity-button {
    background-color: #dc3545; /* Red */
    color: white;
    border-color: #dc3545;
    /* Override default delete styles if needed */
    background-image: none; /* Remove default SVG background if using text */
    width: auto; /* Adjust width if needed */
    height: auto; /* Adjust height if needed */
    padding: 6px 12px; /* Add padding */
}

.collection-header button:hover {
    opacity: 0.9;
    animation: none; /* Override general button hover animation if desired */
}

.activities-list {
  margin-top: 10px; /* Add some space above the activities list */
  padding-left: 15px; /* Indent activities slightly */
}

/* Landing Page Specific Styles */
body.landing-page {
  background-image: url('images/esileht.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh; /* Ensure full viewport height */
  width: 100vw; /* Ensure full viewport width */
  overflow: hidden; /* Prevent scrollbars */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.collection-page {
  background-image: url('images/collection.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh; /* Ensure full viewport height */
  width: 100vw; /* Ensure full viewport width */
  overflow: hidden; /* Prevent scrollbars */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.landing-content, .activity-container {
  /* Use dynamic viewport height for mobile browsers */
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.landing-logo {
  margin-bottom: 10px;
  /* Add filter/shadow if desired */
  filter: drop-shadow(3px 3px 2px #00000088);
}

.landing-title {
  background-image: url('images/funtoloose-title.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  min-height: 170px;
  max-width: 900px;
  max-height: 40vw;
  margin: 7px auto;
  display: block;
}

.intro-bubble {
  background-image: url('images/bubblebox.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  color: #000;
  padding: 70px 0px;
  margin: 0 auto 20vh;
  font-size: 2.5vh;
  line-height: 1.2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feedback-container {
  position: absolute;
  bottom: 0px;
  right: 0px;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  color: #FFF;
  font-size: 16px;
  background: #07275e;
  padding: 7px;
}

.feedback-container a {
  color: #FFF;
  text-decoration: underline;
}

.landing-button-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 20px;
  position: absolute;
  bottom: 30px;
  right: 0px;
  box-sizing: border-box;
}

.nupp.edasi {
  /* Inherits base .nupp styles */
  /* Override or reset filter if inheriting from .next */
  position: relative; /* Reset absolute positioning if needed */
  bottom: auto;
  right: auto;
  filter: hue-rotate(120deg) drop-shadow(3px 3px 2px #00000054); /* Make it green like did-it */
  text-transform: uppercase;
}

.frontpage-container {
  width: 100%;
  height: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  align-items: center;
  margin: 0 auto 2em auto;
  justify-content: center;
}

.frontpage-btn {
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  padding: 1em 0;
  font-size: 1.2em;
  font-family: inherit;
  color: #fff;
  background: linear-gradient(90deg, #ffb347 0%, #ffcc33 100%);
  border: none;
  border-radius: 2em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  cursor: pointer;
  outline: none;
  text-shadow: 1px 1px 0 #000000;
}
.frontpage-btn:hover, .frontpage-btn:focus {
  background: linear-gradient(90deg, #ffd966 0%, #ffe066 100%);
  
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  transform: translateY(-2px) scale(1.03);
}

.privacy-policy-link {

  color: #FFF;
}

body.collection-page, body.landing-page, .activity-container, .activity, .collection-card, .button-container, .nupp, .action-button, #bg-image, #canvas, .landing-content, .intro-bubble, .landing-title, .choose-collection {
  user-select: none !important;
  -webkit-user-select: none !important;
  -ms-user-select: none !important;
  -moz-user-select: none !important;
}

/* --- Collection Card Selection Animation --- */
.collection-card.selected {
  z-index: 1000;
  animation: card-zoom-fade 0.7s cubic-bezier(0.4,1.6,0.4,1) forwards;
  position: relative;
  transform-origin: center center;
}

.collection-card.fade-out {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4,1.6,0.4,1);
}

@keyframes card-zoom-fade {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  60% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

/* --- Fix for zoom-in effect and landing-title fade --- */
.landing-title.fade-out {
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4,1.6,0.4,1);
}

/* Dramatic zoom-in effect for collection card clone */
.zoom-clone {
  position: fixed;
  z-index: 2000;
  margin: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  will-change: transform, opacity;
  transition: transform 0.7s cubic-bezier(0.4,1.6,0.4,1), opacity 0.5s;
  pointer-events: none;
}

.zoom-clone.zooming {
  /* Will be set dynamically via JS for transform/scale/center */
}

/* Back Button Styles - Updated for Game Style */
.back-button {
  position: fixed;
  top: 5px;
  left: 5px;
  margin: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffe066 url('data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 48 48\'><path d=\'M30.83 36.83L29.41 38.24 16.17 25l13.24-13.24 1.41 1.41L19 25z\' fill=\'%23000\'/></svg>') no-repeat center center;
  background-size: 38px 38px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  z-index: 1200;
  cursor: pointer;
  outline: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-button:active, .back-button:focus {
  background-color: #ffe066;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  transform: scale(0.93);
}


/* Add styles for flag icons */
.language-switcher {
  position: fixed;
  top: 6px;
  right: 6px;
  z-index: 1500;
}

.flag-link {
  display: inline-block;
  text-decoration: none;
  line-height: 0; /* Prevent extra space below images */
}

.flag-icon {
  height: 25px; /* Adjust size as needed */
  width: auto;
  vertical-align: middle; /* Align flags nicely if text were next to them */
  border: 1px solid #ccc; /* Optional: add a light border */
  border-radius: 3px; /* Optional: slightly rounded corners */
}

.flag-link:hover .flag-icon {
  opacity: 0.8; /* Slight hover effect */
}
