html body {
  background-color: black;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  padding-bottom: 60px;
}

.content-wrapper {
  flex: 1 0 auto; /* Push footer down */
}

.top-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
  z-index: 1000;
  background: black

}

/* The visible "window" (clip area) */
.sprite-wrapper {
  width: 320px; /* display size */
  height: 180px;
  overflow: hidden;
  position: relative;
}

/* The sprite sheet scrolling area */
.sprite-animation {
  width: 960px;  /* full background width (3 cols * 320) */
  height: 540px; /* full background height (3 rows * 180) */
  background-image: url('../img/logo.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  position: absolute;
  top: 0;
  left: 0;
}


.bottom-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #000;
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.social-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;      
  border: 2px solid #ffffff;     /* Border width and color */
  border-radius: 12px; 
  background-color: #000;       /* Black bar */

  padding: 0.5rem 1rem;
  z-index: 1000;
}

.social-icons {

  border: 2px solid #ffffff;     /* Border width and color */
  border-radius: 12px;        /* Rounded corners */
  padding: 10px;      

  display: flex;
  justify-content: center;    /* Align icons to the right */
  gap: 1rem;
  /* display: inline-block;
  margin: 20px;
  padding: 2px 4px ;
  background-color: black; */
  /* border: 2px solid white; */
  /* border-radius: 10px; */
}

.social-icons a {
  margin: 0 4px;
  font-size: 24px;
  color: white;
  transition: transform 0.2s ease, color 0.2s ease;
  text-decoration: none;
  
}

.social-icons i:hover {
  transform: scale(1.08);
  color: #1da1f2; /* Twitter blue as example — customize as needed */
}

.image-list {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 1rem;
  z-index: 999;
}

/* Optional: control image size */
.image-list img {
  width: 40px; /* or adjust as needed */
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.image-list img:hover {
  transform: scale(1.1);
}