
body {
  margin: 0;
  padding: 0;
  background-image: url('https://files.catbox.moe/g9fkue.gif'); 
  background-color: #222; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  font-family: 'Courier New', Courier, monospace;
  overflow-x: hidden;
}
.top-left-header {
  position: fixed; 
  top: 20px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 500;
}

.site-title {
  font-size: 2.2rem;
  font-weight: bold;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #000;
  letter-spacing: -1px;
}

.header-icon {
  height: 35px;
  width: auto;
  display: block;
}

.mid-right-socials {
  position: fixed; 
  top: 60px;       
  right: 220px;    
  display: flex;
  align-items: center;
  gap: 50px;       
  z-index: 500;
}

.social-img {
  height: 70px;    
  width: auto;
  display: block;
  user-select: none;
  transform: rotate(-3deg); 
  transition: transform 0.2s ease-in-out;
}

.social-img:hover {
  transform: scale(1.1) rotate(2deg);
}

.social-img:hover {
  transform: scale(1.1) rotate(2deg); 
}

.hero-section {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px; 
  width: 200%;
}

button.title-wrapper {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.title-wrapper {
  display: block;
  width: auto;
  text-decoration: none;
}

.title-wrapper img {
  max-width: 700px; 
  height: auto;
  display: block;
  user-select: none;
  transition: transform 0.2s ease-in-out;
}


.title-wrapper:hover img {
  transform: scale(1.08); 
}


.stagger-left { margin-right: 400px; }
.stagger-mid-right { margin-left: 60px; }
.stagger-far-right { margin-left: 400px; }


.tilt-up img { transform: rotate(-5deg); }
.tilt-subtle img { transform: rotate(-1.5deg); }
.tilt-down img { transform: rotate(4deg); }


.float-1 { animation: driftX1 5s ease-in-out infinite alternate, driftY1 4s ease-in-out infinite alternate; }
.float-2 { animation: driftX2 6s ease-in-out infinite alternate-reverse, driftY2 4.5s ease-in-out infinite alternate; }
.float-3 { animation: driftX3 4.5s ease-in-out infinite alternate, driftY3 5.5s ease-in-out infinite alternate-reverse; }

@keyframes driftX1 { 0% { transform: translateX(-8px); } 100% { transform: translateX(8px); } }
@keyframes driftY1 { 0% { transform: translateY(-12px); } 100% { transform: translateY(12px); } }
@keyframes driftX2 { 0% { transform: translateX(-12px); } 100% { transform: translateX(12px); } }
@keyframes driftY2 { 0% { transform: translateY(-6px); } 100% { transform: translateY(6px); } }
@keyframes driftX3 { 0% { transform: translateX(-6px); } 100% { transform: translateX(10px); } }
@keyframes driftY3 { 0% { transform: translateY(-10px); } 100% { transform: translateY(10px); } }

.portfolio-container {
  min-height: 100vh;
  box-sizing: border-box;
  padding: 80px 20px;
  background-color: rgba(0, 0, 0, 0.75); 
  border-top: 2px dashed #444;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio-container .section-title img {
  max-width: 280px;
  height: auto;
  margin-bottom: 40px;
}

.portfolio-content {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

button.title-wrapper {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
}

#chatbox {
  position: fixed; 
  left: 50px;
  width: 280px; 
  background: #fff;
  color: #000;
  border: 2px solid #000;
  box-shadow: 5px 5px 0px #000;
  z-index: 1000;
}

#chatbox-header {
  padding: 8px;
  cursor: move;
  background-color: #ddd;
  font-weight: bold;
  border-bottom: 2px solid #000;
  user-select: none;
}

.chatbox-body {
  padding: 0; 
  height: 380px;
  overflow: hidden;
}

.chatbox-body iframe {
  display: block;
  width: 100%;
  height: 100%;
}
