@import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono:wght@400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Share Tech Mono", monospace;
  background: #000;
  overflow: hidden;
  user-select: none;
  cursor: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Hide scrollbars globally and remove mobile highlighting */
* {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

*::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

/* Room Environment */
.room {
  width: 100vw;
  height: 100vh;
  background: url("background.jpg") top left/auto 790px no-repeat fixed,
    radial-gradient(
      ellipse at center,
      rgba(10, 10, 10, 0.8) 0%,
      rgba(0, 0, 0, 0.9) 70%
    );
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  padding: 10px;
}

/* TV Container */
.tv-container {
  position: relative;
}

.tv-frame {
  width: 800px;
  height: 550px;
  position: relative;
}

.screen-bezel {
  width: 100%;
  height: 100%;
  background: #000;
  padding: 15px;
  position: relative;
  overflow: hidden;
  margin-left: 55px;
  margin-top: 74px;
}

/* Screen Effects */
.screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.static-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 255, 0, 0.03) 2px,
    rgba(0, 255, 0, 0.03) 4px
  );
  pointer-events: none;
  z-index: 10;
  animation: staticNoise 0.1s infinite linear;
}

.scanlines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.1) 2px,
    rgba(0, 0, 0, 0.1) 4px
  );
  pointer-events: none;
  z-index: 9;
}

/* Content Display */
.content-display {
  width: 100%;
  height: 100%;
  position: relative;
  color: #00ff41;
  text-shadow: 0 0 10px #00ff41;
  padding: 20px;
  overflow-y: auto;
}

/* Hide scrollbars */
.content-display::-webkit-scrollbar {
  display: none;
}

.content-display {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}

/* Channel System */
.channel {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  height: 100%;
}

.channel.active {
  display: block;
  opacity: 1;
  animation: channelFadeIn 0.8s ease;
}

.channel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #00ff41;
}

.channel-number {
  font-size: 18px;
  font-weight: bold;
  color: #00ff41;
  text-shadow: 0 0 10px #00ff41;
}

.channel-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-btn {
  background: rgba(0, 255, 65, 0.1);
  border: 1px solid #00ff41;
  color: #00ff41;
  padding: 4px 8px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px #00ff41;
  box-shadow: 0 0 5px rgba(0, 255, 65, 0.2);
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
}

.nav-btn:hover {
  background: rgba(0, 255, 65, 0.2);
  border-color: #00ff41;
  color: #00ff41;
  text-shadow: 0 0 10px #00ff41;
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.4);
  transform: scale(1.1);
}

.nav-btn:active {
  background: rgba(255, 102, 0, 0.2);
  border-color: #ff6600;
  color: #ff6600;
  text-shadow: 0 0 10px #ff6600;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.4);
  transform: scale(0.95);
}

.signal-strength {
  font-size: 14px;
  letter-spacing: 2px;
  animation: signalFlicker 2s infinite;
}

.channel-content {
  height: calc(100% - 60px);
  overflow-y: auto;
}

/* Hide scrollbars for channel content */
.channel-content::-webkit-scrollbar {
  display: none;
}

.channel-content {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}

/* Typography */
h1,
h2,
h3 {
  color: #00ff41;
  text-shadow: 0 0 15px #00ff41;
  margin-bottom: 15px;
}

.section-title {
  font-size: 24px;
  margin-bottom: 25px;
  text-align: center;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.section-title i {
  margin-right: 10px;
  text-shadow: 0 0 15px #00ff41;
  color: #00ff41;
}

/* Glitch Effects */
.glitch-text {
  position: relative;
  font-size: 28px;
  animation: glitch 2s infinite;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-text::before {
  animation: glitch-1 0.5s infinite;
  color: #ff0000;
  z-index: -1;
}

.glitch-text::after {
  animation: glitch-2 0.5s infinite;
  color: #0000ff;
  z-index: -2;
}

/* Typewriter Effect */
.typewriter {
  border-right: 2px solid #00ff41;
  white-space: nowrap;
  overflow: hidden;
  animation: typewriter 3s steps(30) 1s both, blink 1s infinite;
}

.cursor-blink {
  animation: blink 1s infinite;
  font-size: 24px;
  color: #00ff41;
}

.flicker-text {
  animation: flicker 1.5s infinite alternate;
}

/* Project Styling */
.project-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.project-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
}

.project-item {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid #00ff41;
  border-radius: 5px;
  background: rgba(0, 255, 65, 0.05);
  transition: all 0.3s ease;
}

.project-link:hover .project-item,
.project-item:hover {
  background: rgba(0, 255, 65, 0.1);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
  transform: translateX(5px);
}

.project-link:active .project-item {
  background: rgba(255, 102, 0, 0.2);
  border-color: #ff6600;
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.5);
  transform: translateX(3px) scale(0.98);
}

.project-name {
  color: #00ff41;
  font-weight: bold;
}

.project-tech {
  color: #00cc33;
  font-size: 12px;
}

.project-status {
  color: #ff6600;
  font-size: 10px;
  text-align: right;
  animation: statusBlink 2s infinite;
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.skill-category h3 {
  margin-bottom: 10px;
  color: #00ff41;
  border-bottom: 1px solid #00ff41;
  padding-bottom: 5px;
}

.skill-list {
  list-style: none;
  padding: 0;
}

.skill-list li {
  padding: 5px 0;
  color: #00cc33;
  transition: color 0.3s ease;
}

.skill-list li:hover {
  color: #00ff41;
  text-shadow: 0 0 10px #00ff41;
}

/* Contact Information */
.contact-icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 20px;
  padding: 30px 0;
  justify-items: center;
  max-width: 400px;
  margin: 0 auto;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(0, 255, 65, 0.1);
  border: 2px solid #00ff41;
  border-radius: 10px;
  color: #00ff41;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 0 0 10px #00ff41;
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.contact-icon:hover {
  background: rgba(255, 102, 0, 0.2);
  border-color: #ff6600;
  color: #ff6600;
  text-shadow: 0 0 15px #ff6600;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
  transform: translateY(-5px) scale(1.1);
}

.contact-icon:active {
  background: rgba(255, 255, 0, 0.2);
  border-color: #ffff00;
  color: #ffff00;
  text-shadow: 0 0 20px #ffff00;
  box-shadow: 0 0 25px rgba(255, 255, 0, 0.6);
  transform: translateY(-3px) scale(1.05);
}

/* Remove mobile highlighting for all interactive elements */
button,
a,
.channel-btn,
.contact-icon,
.download-btn,
video {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
}

/* Language Proficiency */
.language-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.language-item {
  padding: 25px;
  border: 1px solid #00ff41;
  border-radius: 8px;
  background: rgba(0, 255, 65, 0.05);
  border-left: 4px solid #00ff41;
  transition: all 0.3s ease;
}

.language-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 255, 65, 0.3);
  background: rgba(0, 255, 65, 0.1);
}

.language-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.language-header h3 {
  color: #00ff41;
  font-size: 20px;
  margin: 0;
  text-shadow: 0 0 10px #00ff41;
}

.proficiency-level {
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: bold;
  text-shadow: 0 0 8px currentColor;
  animation: levelGlow 2s infinite alternate;
}

.proficiency-level.professional {
  background: rgba(255, 102, 0, 0.2);
  border: 1px solid #ff6600;
  color: #ff6600;
}

.proficiency-level.native {
  background: rgba(255, 255, 0, 0.2);
  border: 1px solid #ffff00;
  color: #ffff00;
}

@keyframes levelGlow {
  0% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 15px currentColor;
  }
}

.warning-text {
  text-align: center;
  color: #ff0000;
  animation: dangerBlink 1s infinite;
  margin-top: 20px;
}

/* Resume Content */
.resume-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.resume-section h3 {
  color: #ff6600;
  margin-bottom: 10px;
}

.download-section {
  text-align: center;
  margin-top: 30px;
}

.download-btn {
  background: #000;
  border: 2px solid #00ff41;
  color: #00ff41;
  padding: 15px 30px;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: rgba(0, 255, 65, 0.1);
  box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
}

.glitch-btn {
  position: relative;
}

.btn-glitch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  color: #ff0000;
}

.glitch-btn:hover .btn-text {
  opacity: 0;
}

.glitch-btn:hover .btn-glitch {
  opacity: 1;
  animation: buttonGlitch 0.3s infinite;
}

/* Certifications */
.cert-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cert-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
}

.cert-item {
  padding: 15px;
  border: 1px solid #00ff41;
  border-radius: 5px;
  background: rgba(0, 255, 65, 0.05);
  transition: all 0.3s ease;
}

.cert-link:hover .cert-item,
.cert-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 65, 0.3);
  background: rgba(0, 255, 65, 0.1);
}

.cert-link:active .cert-item {
  background: rgba(255, 102, 0, 0.2);
  border-color: #ff6600;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
  transform: translateY(-1px) scale(0.98);
}

.cert-name {
  color: #00ff41;
  font-weight: bold;
  font-size: 16px;
}

.cert-provider {
  color: #00cc33;
  font-size: 14px;
  margin-top: 5px;
}

.cert-id {
  color: #ff6600;
  font-size: 12px;
  margin-top: 3px;
  font-family: "Share Tech Mono", monospace;
  opacity: 0.8;
}

/* Education */
.education-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.edu-item {
  padding: 20px;
  border: 1px solid #00ff41;
  border-radius: 5px;
  background: rgba(0, 255, 65, 0.05);
}

.edu-item h3 {
  color: #ff6600;
  margin-bottom: 10px;
}

/* Awards Section */
.awards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.award-item {
  padding: 20px;
  border: 1px solid #00ff41;
  border-radius: 5px;
  background: rgba(0, 255, 65, 0.05);
  border-left: 4px solid #ff6600;
  transition: all 0.3s ease;
  position: relative;
}

.award-item:hover {
  transform: translateX(5px);
  box-shadow: 0 0 25px rgba(0, 255, 65, 0.3);
  background: rgba(0, 255, 65, 0.1);
}

.award-item h3 {
  color: #ff6600;
  margin-bottom: 10px;
  font-size: 16px;
}

.award-item p {
  color: #00cc33;
  margin: 5px 0;
}

.award-year {
  color: #ffff00 !important;
  font-weight: bold;
  font-size: 12px;
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 0, 0.1);
  padding: 2px 8px;
  border-radius: 3px;
  border: 1px solid #ffff00;
}

/* Work Experience Section */
.experience-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.experience-item {
  padding: 20px;
  border: 1px solid #00ff41;
  border-radius: 5px;
  background: rgba(0, 255, 65, 0.05);
  border-left: 4px solid #00cc33;
  transition: all 0.3s ease;
  position: relative;
}

.experience-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 255, 65, 0.3);
  background: rgba(0, 255, 65, 0.1);
  border-left-color: #00ff41;
}

.experience-item h3 {
  color: #00ff41;
  margin-bottom: 8px;
  font-size: 18px;
  text-shadow: 0 0 10px #00ff41;
}

.company-name {
  color: #ff6600 !important;
  font-weight: bold;
  font-size: 16px;
  margin: 5px 0;
}

.duration {
  color: #ffff00 !important;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: bold;
}

.location {
  color: #00cc33 !important;
  font-size: 12px;
  margin-bottom: 15px;
  font-style: italic;
}

.responsibilities {
  list-style: none;
  padding: 0;
  margin: 0;
}

.responsibilities li {
  color: #00cc33;
  margin: 8px 0;
  padding-left: 5px;
  transition: all 0.3s ease;
  font-size: 14px;
  line-height: 1.4;
}

.responsibilities li:hover {
  color: #00ff41;
  text-shadow: 0 0 8px #00ff41;
  transform: translateX(3px);
}

/* Hobbies Section */
.hobbies-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hobby-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border: 1px solid #00ff41;
  border-radius: 5px;
  background: rgba(0, 255, 65, 0.05);
  border-left: 4px solid #ff6600;
  transition: all 0.3s ease;
  position: relative;
}

.hobby-item:hover {
  transform: translateX(5px);
  box-shadow: 0 0 25px rgba(0, 255, 65, 0.3);
  background: rgba(0, 255, 65, 0.1);
  border-left-color: #00ff41;
}

.hobby-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 102, 0, 0.1);
  border: 2px solid #ff6600;
  border-radius: 50%;
  color: #ff6600;
  font-size: 20px;
  text-shadow: 0 0 10px #ff6600;
  transition: all 0.3s ease;
}

.hobby-item:hover .hobby-icon {
  background: rgba(0, 255, 65, 0.2);
  border-color: #00ff41;
  color: #00ff41;
  text-shadow: 0 0 15px #00ff41;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.hobby-details {
  flex: 1;
}

.hobby-details h3 {
  color: #00ff41;
  margin-bottom: 10px;
  font-size: 16px;
  text-shadow: 0 0 8px #00ff41;
}

.hobby-description {
  color: #00cc33;
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.hobby-description:hover {
  color: #00ff41;
  text-shadow: 0 0 5px #00ff41;
  transform: translateX(3px);
}

.hobby-status {
  margin-top: 15px;
}

.status-indicator {
  background: rgba(255, 255, 0, 0.1);
  border: 1px solid #ffff00;
  color: #ffff00;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: bold;
  text-shadow: 0 0 8px #ffff00;
  animation: statusGlow 2s infinite alternate;
}

@keyframes statusGlow {
  0% {
    box-shadow: 0 0 5px rgba(255, 255, 0, 0.3);
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.6);
  }
}

/* Video Content */
.video-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.video-warning {
  padding: 15px;
  border: 2px solid #ff0000;
  border-radius: 5px;
  background: rgba(255, 0, 0, 0.1);
  animation: dangerBlink 2s infinite;
}

.warning-message {
  color: #ff0000;
  font-weight: bold;
  font-size: 14px;
  margin: 0 0 5px 0;
  text-shadow: 0 0 10px #ff0000;
}

.subtitle {
  color: #ff6600;
  font-size: 12px;
  margin: 0;
  font-style: italic;
}

.video-container {
  position: relative;
  background: #000;
  border: 2px solid #00ff41;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
  transition: all 0.3s ease;
}

.video-container:hover {
  border-color: #ff6600;
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.4);
}

.horror-video {
  width: 100%;
  height: auto;
  max-height: 300px;
  background: #000;
  outline: none;
}

.fullscreen-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  z-index: 1;
}

.video-header {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 20;
  pointer-events: auto;
}

.video-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.8);
  padding: 8px;
  border-radius: 5px;
  border: 1px solid rgba(0, 255, 65, 0.3);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.horror-video::-webkit-media-controls-panel {
  background-color: rgba(0, 0, 0, 0.8);
}

.horror-video::-webkit-media-controls-play-button,
.horror-video::-webkit-media-controls-mute-button,
.horror-video::-webkit-media-controls-fullscreen-button {
  filter: brightness(0) saturate(100%) invert(65%) sepia(91%) saturate(2618%)
    hue-rotate(86deg) brightness(119%) contrast(119%);
}

.video-error {
  color: #ff0000;
  padding: 20px;
  font-family: "Share Tech Mono", monospace;
  background: #000;
  text-align: center;
  text-shadow: 0 0 10px #ff0000;
}

.video-info {
  padding: 15px;
  border: 1px solid #00ff41;
  border-radius: 5px;
  background: rgba(0, 255, 65, 0.05);
}

.video-title {
  color: #00ff41;
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 8px 0;
  text-shadow: 0 0 8px #00ff41;
}

.video-description {
  color: #ff0000;
  font-size: 14px;
  margin: 0;
  font-style: italic;
  text-shadow: 0 0 8px #ff0000;
  animation: creepyGlow 3s infinite;
}

/* Secret Channel */
.secret-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  justify-content: center;
}

/* Signal Lost Channel */
.signal-lost-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  justify-content: center;
}

.static-message {
  color: #ff6600;
  animation: signalLost 2s infinite;
}

.coming-soon {
  color: #00cc33;
  font-size: 14px;
  margin-top: 20px;
}

.coming-soon p {
  margin: 10px 0;
  animation: fadeInOut 3s infinite alternate;
}

.glitch-container {
  animation: matrixRain 3s infinite;
}

.secret-message {
  font-size: 12px;
  color: #00ff41;
  animation: binaryFlicker 2s infinite;
}

.ring-message {
  color: #ff0000;
  animation: creepyGlow 3s infinite;
}

.creepy-text {
  font-size: 24px;
  color: #ff0000;
  text-shadow: 0 0 20px #ff0000;
  animation: bloodDrip 4s infinite;
}

.small-text {
  font-size: 14px;
  margin: 5px 0;
  animation: fadeInOut 2s infinite alternate;
}

.easter-egg {
  color: #00ff41;
  margin-top: 30px;
  animation: finalGlow 5s infinite;
}

/* TV Controls */
.tv-controls {
  position: absolute;
  bottom: 20px;
  right: -200px;
  background: linear-gradient(145deg, #222, #111);
  padding: 15px;
  border-radius: 10px;
  border: 2px solid #333;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
  display: none;
}

.control-panel {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.channel-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  max-width: 140px;
}

.channel-btn {
  width: 40px;
  height: 40px;
  background: #000;
  border: 2px solid #333;
  color: #00ff41;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.channel-btn:hover,
.channel-btn.active {
  background: #00ff41;
  color: #000;
  box-shadow: 0 0 15px #00ff41;
  text-shadow: none;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.control-label {
  color: #00ff41;
  font-size: 10px;
}

.volume-bar {
  width: 80px;
  height: 4px;
  background: #333;
  border-radius: 2px;
  overflow: hidden;
}

.volume-fill {
  width: 70%;
  height: 100%;
  background: #00ff41;
  box-shadow: 0 0 10px #00ff41;
  animation: volumePulse 2s infinite;
}

.power-indicator {
  width: 12px;
  height: 12px;
  background: #ff0000;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff0000;
  animation: powerBlink 1s infinite;
}

/* Animations */
@keyframes channelFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes staticNoise {
  0% {
    transform: translateX(0px);
  }
  10% {
    transform: translateX(-2px);
  }
  20% {
    transform: translateX(2px);
  }
  30% {
    transform: translateX(-1px);
  }
  40% {
    transform: translateX(1px);
  }
  50% {
    transform: translateX(-2px);
  }
  60% {
    transform: translateX(2px);
  }
  70% {
    transform: translateX(-1px);
  }
  80% {
    transform: translateX(1px);
  }
  90% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0px);
  }
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

@keyframes glitch-1 {
  0% {
    clip-path: inset(40% 0 61% 0);
  }
  20% {
    clip-path: inset(92% 0 1% 0);
  }
  40% {
    clip-path: inset(43% 0 1% 0);
  }
  60% {
    clip-path: inset(25% 0 58% 0);
  }
  80% {
    clip-path: inset(54% 0 7% 0);
  }
  100% {
    clip-path: inset(58% 0 43% 0);
  }
}

@keyframes glitch-2 {
  0% {
    clip-path: inset(25% 0 58% 0);
  }
  20% {
    clip-path: inset(54% 0 7% 0);
  }
  40% {
    clip-path: inset(58% 0 43% 0);
  }
  60% {
    clip-path: inset(40% 0 61% 0);
  }
  80% {
    clip-path: inset(92% 0 1% 0);
  }
  100% {
    clip-path: inset(43% 0 1% 0);
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes flicker {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes signalFlicker {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 0 15px #00ff41;
  }
  100% {
    text-shadow: 0 0 25px #00ff41, 0 0 35px #00ff41;
  }
}

@keyframes statusBlink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.3;
  }
}

@keyframes dangerBlink {
  0%,
  50% {
    color: #ff0000;
  }
  51%,
  100% {
    color: #ff6600;
  }
}

@keyframes buttonGlitch {
  0% {
    transform: translate(-50%, -50%) skew(0deg);
  }
  20% {
    transform: translate(-50%, -50%) skew(5deg);
  }
  40% {
    transform: translate(-50%, -50%) skew(-5deg);
  }
  60% {
    transform: translate(-50%, -50%) skew(2deg);
  }
  80% {
    transform: translate(-50%, -50%) skew(-2deg);
  }
  100% {
    transform: translate(-50%, -50%) skew(0deg);
  }
}

@keyframes matrixRain {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

@keyframes binaryFlicker {
  0%,
  100% {
    opacity: 1;
  }
  25% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.3;
  }
  75% {
    opacity: 0.9;
  }
}

@keyframes creepyGlow {
  0% {
    text-shadow: 0 0 10px #ff0000;
  }
  50% {
    text-shadow: 0 0 20px #ff0000, 0 0 30px #ff0000;
  }
  100% {
    text-shadow: 0 0 10px #ff0000;
  }
}

@keyframes bloodDrip {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

@keyframes finalGlow {
  0% {
    text-shadow: 0 0 15px #00ff41;
  }
  100% {
    text-shadow: 0 0 25px #00ff41, 0 0 35px #00ff41;
  }
}

@keyframes volumePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes powerBlink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.3;
  }
}

@keyframes signalLost {
  0%,
  100% {
    opacity: 1;
  }
  25% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
  75% {
    opacity: 0.1;
  }
}

/* Background change for smaller screens */
@media (min-width: 550px) and (max-width: 1200px) {
  .room {
    background: url("background-2.jpg") top left/auto 790px no-repeat fixed,
      radial-gradient(
        ellipse at center,
        rgba(10, 10, 10, 0.8) 0%,
        rgba(0, 0, 0, 0.9) 70%
      );
  }
}

/* Mobile-like screen bezel for medium screens */
@media (min-width: 550px) and (max-width: 1200px) {
  .room {
    padding: 5px;
  }

  .tv-frame {
    width: 280px;
    height: 580px;
  }

  .screen-bezel {
    margin-left: 70px;
    margin-top: 55px;
  }

  .nav-btn {
    padding: 3px 6px;
    font-size: 10px;
  }

  /* Move award dates to next line */
  .award-year {
    position: static;
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    text-align: left;
    background: none;
    padding: 0;
    border: none;
  }

  /* Stack project elements vertically */
  .project-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
  }

  .project-name {
    order: 1;
    font-size: 14px;
    margin-bottom: 3px;
  }

  .project-tech {
    order: 2;
    font-size: 11px;
    margin-bottom: 3px;
  }

  .project-status {
    order: 3;
    font-size: 10px;
    text-align: left;
    margin-top: 2px;
  }

  /* Responsive adjustments for 550px-1200px range */
  .hobby-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .hobby-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .contact-icons-grid {
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 15px;
    max-width: 300px;
    padding: 20px 0;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .language-item {
    padding: 20px;
  }

  .language-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .video-warning {
    padding: 10px;
  }

  .warning-message {
    font-size: 12px;
  }
}

/* Background for small screens */
@media (max-width: 550px) {
  .room {
    background: url("background-2.jpg") top left/400px 600px no-repeat fixed,
      radial-gradient(
        ellipse at center,
        rgba(10, 10, 10, 0.8) 0%,
        rgba(0, 0, 0, 0.9) 70%
      );
    padding: 5px;
  }

  .tv-frame {
    width: 210px;
    height: 430px;
  }

  .screen-bezel {
    margin-left: 51px;
    margin-top: 45px;
    padding: 10px;
  }

  /* Mobile responsive adjustments for under 550px */
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .hobby-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .hobby-icon {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  .contact-icons-grid {
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 10px;
    max-width: 250px;
    padding: 15px 0;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }

  .language-item {
    padding: 15px;
  }

  .language-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .language-header h3 {
    font-size: 16px;
  }

  .proficiency-level {
    font-size: 9px;
    padding: 4px 10px;
  }

  .video-warning {
    padding: 8px;
  }

  .warning-message {
    font-size: 9px;
  }

  /* Mobile typography adjustments */
  .section-title {
    font-size: 18px;
  }

  .channel-number {
    font-size: 14px;
  }

  .signal-strength {
    font-size: 10px;
  }

  .nav-btn {
    padding: 2px 4px;
    font-size: 8px;
    gap: 6px;
  }

  .channel-nav {
    gap: 6px;
  }

  /* Project layout for mobile */
  .project-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
  }

  .project-name {
    order: 1;
    font-size: 11px;
    margin-bottom: 2px;
  }

  .project-tech {
    order: 2;
    font-size: 8px;
    margin-bottom: 2px;
  }

  .project-status {
    order: 3;
    font-size: 7px;
    text-align: left;
    margin-top: 1px;
  }

  /* Award layout for mobile */
  .award-year {
    position: static;
    display: block;
    margin-top: 4px;
    margin-bottom: 8px;
    text-align: left;
    background: none;
    padding: 0;
    border: none;
    font-size: 8px;
  }

  .award-item h3 {
    font-size: 12px;
  }

  .award-item p {
    font-size: 10px;
  }

  /* Experience section mobile adjustments */
  .experience-item h3 {
    font-size: 14px;
  }

  .company-name {
    font-size: 12px;
  }

  .duration {
    font-size: 10px;
  }

  .location {
    font-size: 9px;
  }

  .responsibilities li {
    font-size: 10px;
  }

  /* Hobby mobile adjustments */
  .hobby-details h3 {
    font-size: 12px;
  }

  .status-indicator {
    font-size: 8px;
    padding: 3px 8px;
  }

  /* Skills mobile adjustments */
  .skill-category h3 {
    font-size: 12px;
  }

  .skill-list li {
    font-size: 10px;
  }

  /* Certification mobile adjustments */
  .cert-name {
    font-size: 12px;
  }

  .cert-provider {
    font-size: 10px;
  }

  .cert-id {
    font-size: 9px;
  }

  /* Education mobile adjustments */
  .edu-item h3 {
    font-size: 12px;
  }

  .edu-item p {
    font-size: 10px;
  }
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
}
