@import url('https://fonts.cdnfonts.com/css/gilroy-bold');

body {
  margin: 0;
  padding: 0;
  font-family: 'Gilroy-Bold', 'Gilroy', sans-serif;
  overflow: hidden;
  background-color: black;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.custom-cursor {
  cursor: url('./assets/cursor/pointer.png'), auto !important;
}

#terminal {
  position: fixed; /* Fixed position to keep it always visible */
  top: 50px; /* Adjust initial top position as needed */
  left: 50px; /* Adjust initial left position as needed */
  width: 600px; /* Fixed width */
  height: 400px; /* Fixed height */
  background-color: #1e1e1e; /* Terminal background color */
  color: #ffffff; /* Terminal text color */
  border-radius: 10px; /* Rounded corners */
  z-index: 1000; /* Ensure it's above other elements */
  border: 2px solid #000000; /* Terminal border color */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); /* Terminal shadow */
}

@media screen and (max-width: 600px) {
  #terminal {
      max-width: 90%; /* Increase width for smaller screens */
  }
}
  
#terminal-header {
  background-color: #2d2d2d; /* Header background color */
  border-top-left-radius: 10px; /* Rounded corners for top left */
  border-top-right-radius: 10px; /* Rounded corners for top right */
  padding: 10px; /* Add padding */
  display: flex; /* Use flexbox for layout */
  justify-content: flex-start; /* Align buttons to the left */
  transition: background-color 0.3s; /* Smooth transition for background color */
}

#terminal-header:hover {
  background-color: #333333; /* Darken header background on hover */
}

#terminal-buttons {
  display: flex; /* Use flexbox for layout */
  gap: 10px; /* Add gap between buttons */
}

.terminal-button {
  width: 15px; /* Adjust width as needed */
  height: 15px; /* Adjust height as needed */
  border-radius: 50%; /* Circular shape */
  cursor: pointer; /* Set cursor to pointer */
  transition: background-color 0.3s; /* Smooth transition for background color */
}

.terminal-button:hover {
  background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent background on hover */
}

#close-button {
  background-color: #FF5F57; /* Close button color */
}

#minimize-button {
  background-color: #FFBD2E; /* Minimize button color */
}

#maximize-button {
  background-color: #28CA42; /* Maximize button color */
}

#terminal-content {
  padding: 20px; /* Add padding */
  height: calc(100% - 40px); /* Adjust for header height and padding */
  overflow-y: auto; /* Enable vertical scrolling if needed */
  user-select: none; /* Disable text selection */
}

#terminal-text {
  margin: 0;
  padding: 0;
  font-size: 15px; /* Terminal text size */
  line-height: 1.0; /* Line height */
  overflow: hidden; /* Hide overflow */
  white-space: pre-line; /* Preserve line breaks */
}

#video-background {
  position: fixed; /* Fixed position to cover the entire viewport */
  top: 0;
  left: 0;
  width: 100vw; /* 100% of viewport width */
  height: 100vh; /* 100% of viewport height */
  z-index: -1; /* Behind other content */
}

#video-background::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 2px);
  z-index: 1;
  pointer-events: none;
}

#myVideo {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the entire viewport while maintaining aspect ratio */
  z-index: 0; /* Behind other content */
}

.top-left {
  top: 0;
  left: 0;
}

.top-right {
  top: 0;
  right: 0;
}

.bottom-left {
  bottom: 0;
  left: 0;
}

.bottom-right {
  bottom: 0;
  right: 0;
}

#blurred-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 40px));
  width: 420px;
  max-width: 90%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 999;
  display: none;
  padding: 0;
  text-align: center;
  transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1), left 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  user-select: none;
}

#blurred-box.shift-left {
  transform: translate(-50%, calc(-50% - 40px));
}

#blurred-box:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  border-color: rgba(255, 255, 255, 0.3);
}

.window-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px 12px 0 0;
}

.window-controls {
  display: flex;
  gap: 8px;
  z-index: 10;
}

.window-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
}

.window-btn.close {
  background: linear-gradient(135deg, #ff5f57 0%, #ff4136 100%);
}

.window-btn.minimize {
  background: linear-gradient(135deg, #ffbd2e 0%, #ffa500 100%);
}

.window-btn.maximize {
  background: linear-gradient(135deg, #28ca42 0%, #20a034 100%);
}

.window-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.window-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Gilroy-Bold', sans-serif;
  letter-spacing: 0.3px;
}

.window-content {
  padding: 40px 30px;
}

.profile-section {
  position: relative;
  margin-bottom: 20px;
}

#blurred-box img#profile-picture {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

#blurred-box img#profile-picture:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.status-indicator {
  position: absolute;
  bottom: 8px;
  right: calc(50% - 50px);
  width: 26px;
  height: 26px;
  background-color: rgba(30, 30, 30, 0.95);
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  z-index: 12;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.status-indicator:hover {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.projects-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border-radius: 15px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  cursor: pointer;
  outline: none;
}

.projects-button:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.projects-button i {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.projects-button:hover i {
  transform: scale(1.1);
}

.projects-button.active {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.2));
  border-color: rgba(255, 255, 255, 0.5);
}

.user-description {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.user-description p {
  margin: 0;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  font-family: 'Gilroy-Bold', sans-serif;
  color: rgba(255, 255, 255, 0.9);
}

.user-description p:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 1);
}

#avatar-frame {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15%;
  height: 20%;
  z-index: 1000;
  pointer-events: none;
  display: none;
}

#username {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 28px !important;
  margin: 15px 0 30px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 1.5px;
  font-family: 'Gilroy-Bold', sans-serif;
}


#projects-box {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%) translateX(150%);
  width: 450px;
  max-width: 90%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 999;
  display: none;
  padding: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  user-select: none;
}

#projects-box.show {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  pointer-events: auto;
}

#projects-box:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  border-color: rgba(255, 255, 255, 0.3);
}

.projects-content {
  padding: 25px 25px 25px 25px !important;
}

#projects-box h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-align: center;
  letter-spacing: 1.5px;
  font-family: 'Gilroy-Bold', sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.projects-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 8px;
  margin: 0;
  padding-bottom: 0;
}

.projects-container::-webkit-scrollbar {
  width: 5px;
}

.projects-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.projects-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}

.projects-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

.project-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  display: block;
  overflow: hidden;
  margin: 0;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  transform: translateX(8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.project-card h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
  font-family: 'Gilroy-Bold', sans-serif;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-card h3::after {
  content: '→';
  font-size: 16px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.project-card:hover h3::after {
  opacity: 1;
  transform: translateX(0);
}

.project-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin: 0 0 12px 0;
  line-height: 1.6;
  font-family: 'Gilroy-Bold', sans-serif;
  font-weight: 500;
}

.project-card .project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.project-card .project-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Gilroy-Bold', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.project-card:hover .project-tag {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

@media screen and (max-width: 1200px) {
  #blurred-box {
    transform: translate(-50%, calc(-50% - 40px));
  }
  
  #blurred-box.shift-left {
    transform: translate(-50%, calc(-50% - 40px));
  }
  
  #info-box {
    transform: translate(-50%, calc(-50% + 240px));
  }
  
  #projects-box {
    right: 50%;
    top: 70%;
    transform: translate(50%, -50%) translateY(150%);
  }
  
  #projects-box.show {
    transform: translate(50%, -50%) translateY(0);
  }
}

@media screen and (max-width: 768px) {
  #blurred-box {
    width: 90%;
    transform: translate(-50%, -50%);
  }
  
  #blurred-box.shift-left {
    transform: translate(-50%, calc(-50% - 40px));
  }
  
  #info-box {
    width: 90%;
    transform: translate(-50%, calc(-50% + 240px));
  }
  
  .ios-window-content {
    padding: 14px 16px;
    gap: 16px;
  }
  
  #partner-picture {
    width: 60px;
    height: 60px;
    border-width: 3px;
  }
  
  .partner-status-indicator {
    width: 16px;
    height: 16px;
    border-width: 2px;
  }
  
  #partner-username {
    font-size: 16px;
  }
  
  .partner-website-btn {
    padding: 7px 16px;
    font-size: 11px;
  }
  
  #projects-box {
    width: 90%;
    padding: 30px 20px;
  }
  
  .profile-section {
    margin-bottom: 15px;
  }
  
  #blurred-box img#profile-picture {
    width: 100px;
    height: 100px;
  }
  
  .status-indicator {
    right: calc(50% - 40px);
    width: 22px;
    height: 22px;
    border-width: 2px;
  }
  
  #username {
    font-size: 24px;
    margin: 10px 0 20px 0;
  }
  
  .links {
    gap: 10px;
  }
  
  .links a,
  .links button {
    width: 45px;
    height: 45px;
  }
}


.links a,
.links button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border-radius: 15px;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.links a:hover,
.links button:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.links a i,
.links button i {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.links a:hover i,
.links button:hover i {
  transform: scale(1.1);
}


.tebex-btn img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.tebex-btn:hover img {
  transform: scale(1.1);
}


/* iOS Info Box - Partner */
#info-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 240px));
  width: 420px;
  max-width: 90%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 998;
  display: none;
  padding: 0;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  user-select: none;
}

#info-box:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  border-color: rgba(255, 255, 255, 0.3);
}

.ios-window-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 16px 16px 0 0;
}

.ios-window-controls {
  position: absolute;
  left: 10px;
  display: flex;
  gap: 5px;
}

.ios-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.ios-btn:nth-child(1) {
  background: linear-gradient(135deg, #ff5f57 0%, #ff4136 100%);
}

.ios-btn:nth-child(2) {
  background: linear-gradient(135deg, #ffbd2e 0%, #ffa500 100%);
}

.ios-btn:nth-child(3) {
  background: linear-gradient(135deg, #28ca42 0%, #20a034 100%);
}

.ios-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.ios-window-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 600;
  font-family: 'Gilroy-Bold', sans-serif;
  letter-spacing: 0.3px;
}

.ios-window-content {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.partner-profile-section {
  position: relative;
  flex-shrink: 0;
}

#partner-picture {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

#partner-picture:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.partner-status-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background-color: rgba(30, 30, 30, 0.95);
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  z-index: 12;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.partner-status-indicator:hover {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.partner-info-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#partner-username {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.8px;
  font-family: 'Gilroy-Bold', sans-serif;
  text-align: center;
}

.partner-website-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  font-family: 'Gilroy-Bold', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.4px;
}

.partner-website-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.partner-website-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.partner-website-btn:hover i {
  transform: scale(1.1);
}

@media screen and (max-width: 1200px) {
  #blurred-box {
    transform: translate(-50%, calc(-50% - 40px));
  }
  
  #blurred-box.shift-left {
    transform: translate(-50%, calc(-50% - 40px));
  }
  
  #info-box {
    transform: translate(-50%, calc(-50% + 240px));
  }
  
  #projects-box {
    right: 50%;
    top: 70%;
    transform: translate(50%, -50%) translateY(150%);
  }
  
  #projects-box.show {
    transform: translate(50%, -50%) translateY(0);
  }
}

@media screen and (max-width: 768px) {
  #blurred-box {
    width: 90%;
    transform: translate(-50%, -50%);
  }
  
  #blurred-box.shift-left {
    transform: translate(-50%, calc(-50% - 40px));
  }
  
  #info-box {
    width: 90%;
    transform: translate(-50%, calc(-50% + 240px));
  }
  
  .ios-window-content {
    padding: 14px 16px;
    gap: 16px;
  }
  
  #partner-picture {
    width: 60px;
    height: 60px;
    border-width: 3px;
  }
  
  .partner-status-indicator {
    width: 16px;
    height: 16px;
    border-width: 2px;
  }
  
  #partner-username {
    font-size: 16px;
  }
  
  .partner-website-btn {
    padding: 7px 16px;
    font-size: 11px;
  }
  
  #projects-box {
    width: 90%;
    padding: 30px 20px;
  }
  
  .profile-section {
    margin-bottom: 15px;
  }
  
  #blurred-box img#profile-picture {
    width: 100px;
    height: 100px;
  }
  
  .status-indicator {
    right: calc(50% - 40px);
    width: 22px;
    height: 22px;
    border-width: 2px;
  }
  
  #username {
    font-size: 24px;
    margin: 10px 0 20px 0;
  }
  
  .links {
    gap: 10px;
  }
  
  .links a,
  .links button {
    width: 45px;
    height: 45px;
  }
}


.info-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border-radius: 15px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  cursor: pointer;
  outline: none;
}

.info-button:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.info-button i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.info-button:hover i {
  transform: scale(1.1);
}

.info-button.active {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.2));
  border-color: rgba(255, 255, 255, 0.5);
}


/* Control Buttons - Bottom Left */
.control-buttons {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: none;
  flex-direction: row;
  gap: 12px;
  z-index: 1000;
}

.control-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border-radius: 12px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  cursor: pointer;
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.control-button:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.control-button i {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.control-button:hover i {
  transform: scale(1.05);
}

.control-button.active {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.2));
  border-color: rgba(255, 255, 255, 0.5);
}

.control-button.muted {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3)rgba(255, 255, 255, 0.15)5);
  border-color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 768px) {
  .control-buttons {
    bottom: 20px;
    left: 20px;
    gap: 10px;
  }
  
  .control-button {
    width: 50px;
    height: 50px;
  }
  
  .control-button i {
    font-size: 20px;
  }
}






