@font-face {
  font-family: "JetBrainsMono-Regular";
  src: local("JetBrains Mono Regular"), url("../fonts/JetBrainsMono-Regular.woff2") format("woff2"), url("../fonts/JetBrainsMono-Regular.woff") format("woff"), url("../fonts/JetBrainsMono-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrainsMono-Bold";
  src: local("JetBrains Mono Bold"), url("../fonts/JetBrainsMono-Bold.woff2") format("woff2"), url("../fonts/JetBrainsMono-Bold.woff") format("woff"), url("../fonts/JetBrainsMono-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tektur-SemiBold";
  src: local("Tektur SemiBold"), url("../fonts/Tektur-SemiBold.woff2") format("woff2"), url("../fonts/Tektur-SemiBold.woff") format("woff"), url("../fonts/Tektur-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tektur-ExtraBold";
  src: local("Tektur ExtraBold"), url("../fonts/Tektur-ExtraBold.woff2") format("woff2"), url("../fonts/Tektur-ExtraBold.woff") format("woff"), url("../fonts/Tektur-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  height: 100%;
}

img {
  vertical-align: top;
}

body {
  background-color: #000;
  color: #ffffff;
  font-family: "JetBrainsMono-Regular", monospace;
  height: 100vh;
  overflow: hidden;
  position: relative;
  animation: scan-fade-in 1s ease-out forwards;
}
@media (max-width: 768px) {
  body {
    height: auto !important;
    min-height: 100vh;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

@keyframes scan-fade-in {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
@keyframes scan-line {
  0% {
    top: 0%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.video-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-bg .grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(10, 255, 96, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 255, 96, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.video-bg .color-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 15, 5, 0.95) 90%);
}

.ui-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid rgba(10, 255, 96, 0.2);
  margin: 15px;
  position: relative;
  z-index: 1;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  font-family: "JetBrainsMono-Regular", monospace;
  font-size: 14px;
  color: #0aff60;
  border-bottom: 1px solid rgba(10, 255, 96, 0.3);
  padding-bottom: 10px;
}
.status-bar .blink {
  animation: blinker 1.5s linear infinite;
  color: #ff3333;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.hero-content {
  text-align: center;
  background: rgba(0, 20, 10, 0.6);
  padding: 40px 60px;
  border: 1px solid #0aff60;
  box-shadow: 0 0 20px rgba(10, 255, 96, 0.1);
  position: relative;
}
.hero-content::before, .hero-content::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #0aff60;
}
.hero-content::before {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}
.hero-content::after {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

h1 {
  font-family: "Tektur-ExtraBold", sans-serif;
  font-size: 60px;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #0aff60;
  text-transform: uppercase;
}

.role {
  font-family: "Tektur-SemiBold", sans-serif;
  font-size: 20px;
  color: #0aff60;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.info-box {
  font-family: "JetBrainsMono-Regular", monospace;
  max-width: 500px;
  margin: 0 auto 40px auto;
  color: #ccc;
  border-left: 2px solid #0aff60;
  padding-left: 15px;
  text-align: left;
}

.tactical-btn {
  font-family: "Tektur-SemiBold", sans-serif;
  font-size: 18px;
  background: rgba(10, 255, 96, 0.1);
  padding: 15px 30px;
  border: 1px solid #0aff60;
  transition: 0.3s;
  display: inline-block;
  cursor: pointer;
}
.tactical-btn .bracket {
  color: #0aff60;
  margin: 0 5px;
  transition: 0.3s;
}
.tactical-btn:hover {
  background: #0aff60;
  color: #000;
  box-shadow: 0 0 30px rgba(10, 255, 96, 0.5);
}
.tactical-btn:hover .bracket {
  color: #000;
}

.tech-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  border-top: 1px solid rgba(10, 255, 96, 0.3);
  padding-top: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  max-width: 1000px;
  padding: 20px;
  gap: 30px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
    padding-bottom: 80px;
  }
}

.nav-card {
  position: relative;
  background: rgba(0, 20, 10, 0.4);
  border: 1px solid rgba(10, 255, 96, 0.3);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  height: 300px;
}
@media (max-width: 768px) {
  .nav-card {
    height: 260px !important;
    padding: 20px;
  }
}
.nav-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 15px;
  border-top: 2px solid #0aff60;
  border-right: 2px solid #0aff60;
  transition: 0.3s;
}
.nav-card .card-number {
  font-family: "Tektur-ExtraBold", sans-serif;
  font-size: 40px;
  color: rgba(10, 255, 96, 0.1);
  position: absolute;
  top: 10px;
  right: 20px;
  font-weight: 800;
  transition: 0.3s;
}
.nav-card h3 {
  font-family: "Tektur-ExtraBold", sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}
.nav-card .sub-text {
  font-family: "JetBrainsMono-Regular", monospace;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.nav-card .card-status {
  font-family: "Tektur-SemiBold", sans-serif;
  font-size: 12px;
  color: #0aff60;
  margin-top: auto;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}
.nav-card .card-status::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #0aff60;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 5px #0aff60;
}
.nav-card:hover {
  background: rgba(10, 255, 96, 0.15);
  border-color: #0aff60;
  box-shadow: 0 0 30px rgba(10, 255, 96, 0.2);
  transform: translateY(-5px);
  cursor: pointer;
}
.nav-card:hover .card-number {
  color: rgba(10, 255, 96, 0.4);
  transform: scale(1.1);
}
.nav-card:hover::before {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.back-link {
  font-family: "Tektur-SemiBold", sans-serif;
  color: #fff;
  font-size: 14px;
  opacity: 0.7;
  transition: 0.3s;
}
.back-link:hover {
  color: #0aff60;
  opacity: 1;
  text-shadow: 0 0 10px #0aff60;
}

.ui-container.dossier-mode {
  display: block !important;
  overflow-y: auto;
  height: calc(100vh - 30px);
  padding-right: 15px;
}
.ui-container.dossier-mode::-webkit-scrollbar {
  width: 8px;
}
.ui-container.dossier-mode::-webkit-scrollbar-track {
  background: rgba(10, 255, 96, 0.1);
}
.ui-container.dossier-mode::-webkit-scrollbar-thumb {
  background: #0aff60;
  border-radius: 4px;
}

.about-layout {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 60px;
  padding-top: 50px;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 80px;
  width: 100%;
}

.profile-section {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .profile-section {
    flex-direction: column;
    text-align: center;
  }
  .profile-section.mentor-profile {
    flex-direction: column-reverse;
  }
}

.user-profile .photo-block {
  flex-shrink: 0;
  width: 200px;
}
.user-profile .hex-frame {
  width: 200px;
  height: 220px;
  background: #000;
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: 2px solid #0aff60;
  filter: drop-shadow(0 0 5px #0aff60);
}
.user-profile .hex-frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.9;
}
.user-profile .hex-frame .overlay-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10, 255, 96, 0.2) 50%);
  background-size: 100% 4px;
}
.user-profile .caption {
  text-align: center;
  font-family: "Tektur-SemiBold", sans-serif;
  color: #0aff60;
  margin-top: 10px;
  font-size: 14px;
}
.user-profile .text-block h1 {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 5px;
}

.bio-text {
  margin-top: 20px;
  font-family: "JetBrainsMono-Regular", monospace;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}
.bio-text p {
  margin-bottom: 0;
}
.bio-text strong {
  color: #0aff60;
}

.data-link-line {
  height: 40px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, #0aff60 0, #0aff60 5px, transparent 5px, transparent 10px);
  margin: 0 auto 40px auto;
  opacity: 0.5;
}

.mentor-profile {
  background: rgba(0, 20, 10, 0.4);
  border: 1px solid rgba(10, 255, 96, 0.3);
  padding: 30px;
  position: relative;
}
.mentor-profile .photo-block {
  width: 180px;
  flex-shrink: 0;
}
.mentor-profile .rect-frame {
  width: 100%;
  height: 200px;
  border: 1px solid #0aff60;
  padding: 5px;
  position: relative;
}
.mentor-profile .rect-frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mentor-profile .rect-frame .corner-decor {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  border-top: 3px solid #ffcc00;
  border-right: 3px solid #ffcc00;
}
.mentor-profile .mentor-title {
  font-family: "Tektur-SemiBold", sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
.mentor-profile .mentor-name {
  font-family: "Tektur-ExtraBold", sans-serif;
  font-size: 28px;
  color: #ffcc00;
  margin-bottom: 5px;
}
.mentor-profile .highlight {
  color: #ffcc00;
}

.skills-log {
  margin-top: 20px;
}
.skills-log h3 {
  font-family: "Tektur-ExtraBold", sans-serif;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(10, 255, 96, 0.3);
  padding-bottom: 10px;
}
.skills-log .decor {
  color: #0aff60;
  margin-right: 10px;
}

.learning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .learning-grid {
    grid-template-columns: 1fr;
  }
}

.log-item {
  display: flex;
  align-items: start;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-left: 3px solid rgba(10, 255, 96, 0.3);
  transition: 0.3s;
}
.log-item .icon {
  font-size: 20px;
  margin-right: 15px;
}
.log-item p {
  font-family: "JetBrainsMono-Regular", monospace;
  font-size: 14px;
  line-height: 1.4;
  color: #ddd;
}
.log-item:hover {
  background: rgba(10, 255, 96, 0.1);
  border-left-color: #0aff60;
}
.log-item.highlight-item {
  border-left-color: #ffcc00;
}

.gold-link {
  text-decoration: none;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}
.gold-link:hover {
  color: #fff;
  border-bottom-color: #ffcc00;
  text-shadow: 0 0 15px #ffcc00;
}

.text-link {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 204, 0, 0.5);
  transition: 0.3s;
}
.text-link:hover {
  color: #ffcc00;
  border-bottom-style: solid;
  background: rgba(255, 204, 0, 0.1);
}
.text-link.gold-border {
  border-bottom: 1px solid #ffcc00;
  font-weight: bold;
}

.achievements-layout {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0 60px 0;
}

.section-header {
  margin-bottom: 30px;
}
.section-header h3 {
  font-family: "Tektur-ExtraBold", sans-serif;
  font-size: 24px;
  margin-bottom: 5px;
}
.section-header h3 .decor {
  color: #0aff60;
}
.section-header .section-desc {
  font-family: "JetBrainsMono-Regular", monospace;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.awards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.award-item {
  display: flex;
  gap: 25px;
  background: rgba(0, 20, 10, 0.4);
  border: 1px solid rgba(10, 255, 96, 0.2);
  padding: 20px;
  transition: 0.3s;
  position: relative;
}
.award-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #0aff60;
  opacity: 0;
  transition: 0.3s;
}
.award-item:hover {
  background: rgba(10, 255, 96, 0.08);
  border-color: #0aff60;
}
.award-item:hover::before {
  opacity: 1;
}
.award-item .award-img {
  flex-shrink: 0;
  width: 120px;
  height: 170px;
  background: #000;
  border: 1px solid #555;
  overflow: hidden;
}
.award-item .award-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
}
.award-item:hover .award-img img {
  transform: scale(1.05);
}
.award-item .award-info {
  display: flex;
  flex-direction: column;
}
.award-item .award-info .date {
  font-family: "Tektur-SemiBold", sans-serif;
  color: #0aff60;
  font-size: 12px;
  margin-bottom: 5px;
  border: 1px solid #0aff60;
  display: inline-block;
  padding: 2px 6px;
  width: -moz-fit-content;
  width: fit-content;
}
.award-item .award-info h4 {
  font-family: "Tektur-ExtraBold", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}
.award-item .award-info p {
  font-family: "JetBrainsMono-Regular", monospace;
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 15px;
}
.award-item .award-info .tags span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 10px;
  font-family: "Tektur-SemiBold", sans-serif;
}
@media (max-width: 600px) {
  .award-item {
    flex-direction: column;
  }
  .award-item .award-img {
    width: 100%;
    height: 700px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.divider-line {
  height: 1px;
  background: linear-gradient(to right, transparent, #0aff60, transparent);
  opacity: 0.3;
  width: 100%;
}

.project-showcase {
  background: rgba(0, 10, 5, 0.8);
  border: 1px solid #0aff60;
  position: relative;
}
.project-showcase::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 20px;
  height: 20px;
  border-bottom: 3px solid #0aff60;
  border-right: 3px solid #0aff60;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 255, 96, 0.1);
  padding: 15px 20px;
  border-bottom: 1px solid rgba(10, 255, 96, 0.3);
}
.project-header h3 {
  font-family: "Tektur-ExtraBold", sans-serif;
  margin: 0;
  font-size: 18px;
}
.project-header h3 .decor {
  color: #0aff60;
}
.project-header .status-badge {
  font-family: "Tektur-SemiBold", sans-serif;
  background: #0aff60;
  color: #000;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
}

.project-body {
  padding: 20px;
}

.project-desc {
  font-family: "JetBrainsMono-Regular", monospace;
  color: #ddd;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.6;
}
.project-desc strong {
  color: #0aff60;
}

.collage-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 10px;
  margin-bottom: 30px;
}
.collage-grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(10, 255, 96, 0.3);
  filter: grayscale(40%);
  transition: 0.3s;
}
.collage-grid img:hover {
  filter: grayscale(0%);
  border-color: #0aff60;
}
.collage-grid .photo-main {
  grid-column: 1/2;
  grid-row: 1/3;
}
.collage-grid .photo-side-1 {
  grid-column: 2/3;
  grid-row: 1/2;
}
.collage-grid .photo-side-2 {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media (max-width: 600px) {
  .collage-grid {
    display: flex;
    flex-direction: column;
  }
  .collage-grid .photo-main,
  .collage-grid .photo-side-1,
  .collage-grid .photo-side-2 {
    height: 200px;
  }
}

.files-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.file-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 25px;
  border: 1px dashed #0aff60;
  color: #0aff60;
  font-family: "Tektur-SemiBold", sans-serif;
  font-size: 13px;
  text-decoration: none;
  background: rgba(10, 255, 96, 0.05);
  transition: 0.3s;
}
.file-btn .icon {
  margin-right: 10px;
  font-size: 16px;
}
.file-btn:hover {
  background: #0aff60;
  color: #000;
  border-style: solid;
  box-shadow: 0 0 15px rgba(10, 255, 96, 0.4);
}

.mini-footer {
  text-align: center;
  color: rgba(10, 255, 96, 0.4);
  font-size: 12px;
  padding: 20px;
}

.skills-layout {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0 80px 0;
  gap: 40px;
}

.skills-intro {
  text-align: center;
  margin-bottom: 40px;
}
.skills-intro h1 {
  font-family: "Tektur-ExtraBold", sans-serif;
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.skills-intro p {
  font-family: "JetBrainsMono-Regular", monospace;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

.skills-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 768px) {
  .skills-grid-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.skill-category .cat-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.skill-category .cat-header h3 {
  font-family: "Tektur-ExtraBold", sans-serif;
  font-size: 20px;
  color: #0aff60;
  white-space: nowrap;
  margin-right: 15px;
  display: flex;
  align-items: center;
}
.skill-category .cat-header h3 .icon {
  font-size: 18px;
  margin-right: 10px;
  filter: grayscale(1);
}
.skill-category .cat-header .line {
  height: 1px;
  width: 100%;
  background: rgba(10, 255, 96, 0.3);
  position: relative;
}
.skill-category .cat-header .line::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  background: #0aff60;
}

.skill-item {
  margin-bottom: 25px;
}
.skill-item .skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-family: "Tektur-SemiBold", sans-serif;
  font-size: 14px;
  font-weight: bold;
}
.skill-item .skill-info .percent {
  color: #0aff60;
}
.skill-item .skill-info .status-loading {
  animation: blinker 1s infinite;
  color: #ffcc00;
}
.skill-item .progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(10, 255, 96, 0.2);
  position: relative;
  overflow: hidden;
}
.skill-item .progress-bar .fill {
  height: 100%;
  background: #0aff60;
  box-shadow: 0 0 10px #0aff60;
  position: relative;
}
.skill-item .progress-bar .fill::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 5px;
  background: #fff;
  opacity: 0.5;
}
.skill-item .progress-bar.loading-bar .fill {
  width: 50%;
  background: repeating-linear-gradient(45deg, #ffcc00, #ffcc00 10px, #d4aa00 10px, #d4aa00 20px);
  box-shadow: 0 0 10px #ffcc00;
  animation: loading-anim 2s linear infinite;
}
.skill-item .skill-desc {
  margin-top: 5px;
  font-family: "JetBrainsMono-Regular", monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

@keyframes loading-anim {
  0% {
    width: 30%;
  }
  50% {
    width: 60%;
  }
  100% {
    width: 30%;
  }
}
.tools-cloud {
  margin-top: 40px;
  border-top: 1px dashed rgba(10, 255, 96, 0.3);
  padding-top: 20px;
}
.tools-cloud h3 {
  font-family: "Tektur-ExtraBold", sans-serif;
  margin-bottom: 15px;
  font-size: 18px;
}
.tools-cloud h3 .decor {
  color: #0aff60;
}

.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-tag {
  background: rgba(10, 255, 96, 0.05);
  border: 1px solid rgba(10, 255, 96, 0.3);
  padding: 8px 15px;
  font-family: "JetBrainsMono-Regular", monospace;
  font-size: 13px;
  color: #ccc;
  transition: 0.3s;
  cursor: default;
}
.tool-tag:hover {
  background: #0aff60;
  color: #000;
  border-color: #0aff60;
  box-shadow: 0 0 10px rgba(10, 255, 96, 0.5);
}

.projects-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0 80px 0;
}

.page-intro {
  text-align: center;
  margin-bottom: 20px;
}
.page-intro h1 {
  font-family: "Tektur-ExtraBold", sans-serif;
  font-size: 32px;
  color: #fff;
}
.page-intro p {
  font-family: "JetBrainsMono-Regular", monospace;
  color: rgba(255, 255, 255, 0.5);
}

.project-card {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  background: rgba(0, 20, 10, 0.6);
  border: 1px solid rgba(10, 255, 96, 0.3);
  padding: 30px;
  position: relative;
  transition: 0.3s;
  border-left: 4px solid #0aff60;
}
.project-card.complexity-high {
  border-left-color: #ff3333;
}
.project-card.complexity-mid {
  border-left-color: #ffcc00;
}
.project-card.complexity-low {
  border-left-color: #0aff60;
}
.project-card:hover {
  background: rgba(0, 20, 10, 0.8);
  border-color: #fff;
  transform: translateY(-2px);
}

.project-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.p-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.p-header .p-number {
  font-family: "Tektur-ExtraBold", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  margin-right: 15px;
  line-height: 0.8;
}
.p-header .p-title-group h2 {
  font-family: "Tektur-ExtraBold", sans-serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 5px;
}
.p-header .p-status {
  font-family: "Tektur-SemiBold", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}

.p-desc {
  font-family: "JetBrainsMono-Regular", monospace;
  font-size: 15px;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.tech-stack-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}
.tech-stack-mini span {
  font-family: "Tektur-SemiBold", sans-serif;
  font-size: 12px;
  color: #0aff60;
  background: rgba(10, 255, 96, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
}

.p-actions {
  display: flex;
  gap: 15px;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: "Tektur-SemiBold", sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid;
  transition: 0.3s;
}
.btn-action i {
  margin-right: 8px;
}
.btn-action.btn-git {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.btn-action.btn-git:hover {
  background: #fff;
  color: #000;
}
.btn-action.btn-demo {
  border-color: #0aff60;
  color: #0aff60;
  background: rgba(10, 255, 96, 0.1);
}
.btn-action.btn-demo:hover {
  background: #0aff60;
  color: #000;
  box-shadow: 0 0 15px #0aff60;
}

.project-visual {
  width: 350px;
  flex-shrink: 0;
}
.project-visual .screen-frame {
  width: 100%;
  height: 220px;
  background: #000;
  border: 1px solid #444;
  position: relative;
  overflow: hidden;
}
.project-visual .screen-frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(80%) brightness(0.7);
  transition: 0.5s;
}
.project-visual .screen-frame .scan-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10, 255, 96, 0.1) 50%);
  background-size: 100% 4px;
  pointer-events: none;
}

.project-card:hover .screen-frame img {
  filter: grayscale(0%) brightness(1);
}

@media (max-width: 800px) {
  .project-card {
    flex-direction: column-reverse;
  }
  .project-visual {
    width: 100%;
  }
  .project-visual .screen-frame {
    height: 200px;
  }
  .p-actions {
    width: 100%;
  }
  .p-actions .btn-action {
    flex: 1;
  }
}
.contact-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.comm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .comm-grid {
    grid-template-columns: 1fr;
  }
}

.comm-card {
  background: rgba(0, 20, 10, 0.4);
  border: 1px solid rgba(10, 255, 96, 0.3);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 220px;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.comm-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(10, 255, 96, 0.1), transparent);
  transition: 0.5s;
}
.comm-card:hover {
  background: rgba(10, 255, 96, 0.1);
  border-color: #0aff60;
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(10, 255, 96, 0.2);
}
.comm-card:hover::after {
  left: 100%;
}
.comm-card:hover .icon {
  color: #fff;
  transform: scale(1.1);
}
.comm-card.highlight {
  border-color: rgba(10, 255, 96, 0.6);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px dashed rgba(10, 255, 96, 0.3);
  padding-bottom: 15px;
}
.card-header .icon {
  font-size: 24px;
  color: #0aff60;
  transition: 0.3s;
}
.card-header .channel-name {
  font-family: "Tektur-ExtraBold", sans-serif;
  font-size: 16px;
  color: #fff;
}

.card-body {
  padding: 15px 0;
  text-align: center;
}
.card-body .value {
  display: block;
  font-family: "Tektur-SemiBold", sans-serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 5px;
  word-break: break-all;
}
.card-body .desc {
  font-family: "JetBrainsMono-Regular", monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  font-family: "JetBrainsMono-Regular", monospace;
  font-size: 11px;
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 10px;
  border-radius: 4px;
}
.card-footer .label {
  color: #555;
}
.card-footer .time {
  color: #ccc;
}
.card-footer .time.fast {
  color: #0aff60;
}
.card-footer .time.fastest {
  color: #ffcc00;
  font-weight: bold;
}

.comm-log {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(10, 255, 96, 0.2);
  padding: 20px;
}
.comm-log h3 {
  font-family: "Tektur-ExtraBold", sans-serif;
  font-size: 18px;
  margin-bottom: 15px;
}
.comm-log h3 .decor {
  color: #0aff60;
}

.log-content p {
  font-family: "JetBrainsMono-Regular", monospace;
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
  line-height: 1.5;
}
.log-content .tag {
  display: inline-block;
  background: rgba(10, 255, 96, 0.1);
  border: 1px solid #0aff60;
  color: #0aff60;
  padding: 2px 8px;
  font-size: 11px;
  font-family: "Tektur-SemiBold", sans-serif;
  margin-right: 10px;
  min-width: 80px;
  text-align: center;
}

.loadout-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0 60px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.section-intro {
  text-align: center;
}
.section-intro h1 {
  font-family: "Tektur-ExtraBold", sans-serif;
  font-size: 32px;
  color: #fff;
}
.section-intro p {
  font-family: "JetBrainsMono-Regular", monospace;
  color: rgba(255, 255, 255, 0.5);
}

.gear-section h3 {
  font-family: "Tektur-ExtraBold", sans-serif;
  font-size: 20px;
  border-bottom: 1px solid rgba(10, 255, 96, 0.3);
  padding-bottom: 10px;
  margin-bottom: 25px;
}
.gear-section h3 .decor {
  color: #0aff60;
}

.pc-specs-container {
  display: flex;
  gap: 40px;
  align-items: center;
  background: rgba(0, 20, 10, 0.4);
  border: 1px solid rgba(10, 255, 96, 0.2);
  padding: 30px;
}
@media (max-width: 700px) {
  .pc-specs-container {
    flex-direction: column;
  }
}

.pc-visual {
  flex-shrink: 0;
}
.pc-visual .case-outline {
  width: 180px;
  height: 240px;
  border: 2px solid #0aff60;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 20px rgba(10, 255, 96, 0.1);
}
.pc-visual .case-outline .part {
  position: absolute;
  background: rgba(10, 255, 96, 0.2);
  border: 1px solid rgba(10, 255, 96, 0.5);
  font-family: "Tektur-SemiBold", sans-serif;
  font-size: 10px;
  color: #0aff60;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-visual .case-outline .cpu {
  top: 40px;
  left: 60px;
  width: 60px;
  height: 60px;
}
.pc-visual .case-outline .gpu {
  bottom: 30px;
  left: 20px;
  width: 140px;
  height: 40px;
}
.pc-visual .case-outline .ram {
  top: 30px;
  right: 30px;
  width: 15px;
  height: 80px;
}
.pc-visual .case-outline .ssd {
  bottom: 80px;
  left: 30px;
  width: 60px;
  height: 15px;
}

.specs-list {
  flex-grow: 1;
  width: 100%;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(10, 255, 96, 0.2);
  font-family: "JetBrainsMono-Regular", monospace;
}
.spec-item:last-child {
  border-bottom: none;
}
.spec-item .label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.spec-item .val {
  color: #fff;
  font-weight: bold;
  text-align: right;
}
.spec-item:hover {
  background: rgba(10, 255, 96, 0.05);
  padding-left: 10px;
  transition: 0.2s;
}
.spec-item:hover .val {
  color: #0aff60;
}

.soft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 600px) {
  .soft-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.soft-card {
  background: rgba(0, 20, 10, 0.4);
  border: 1px solid rgba(10, 255, 96, 0.2);
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}
.soft-card .soft-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}
.soft-card h4 {
  font-family: "Tektur-ExtraBold", sans-serif;
  font-size: 14px;
  color: #0aff60;
  margin-bottom: 5px;
}
.soft-card p {
  font-family: "JetBrainsMono-Regular", monospace;
  font-size: 13px;
  color: #fff;
}
.soft-card .sub {
  display: block;
  font-size: 11px;
  color: #777;
  margin-top: 5px;
}
.soft-card:hover {
  border-color: #0aff60;
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(10, 255, 96, 0.2);
}

.mini-footer {
  text-align: center;
  color: rgba(10, 255, 96, 0.4);
  font-size: 12px;
  padding: 20px;
}

@media (max-width: 768px) {
  .ui-container {
    padding: 15px;
    margin: 5px;
    border: none;
  }
  h1 {
    font-size: 36px;
  }
  .hero-content {
    padding: 25px;
    width: 100%;
  }
  .status-bar {
    font-size: 11px;
  }
  .role {
    font-size: 16px;
  }
  .tech-grid {
    display: none;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .nav-card {
    height: 120px;
    padding: 20px;
  }
  .nav-card .card-number {
    font-size: 30px;
  }
}/*# sourceMappingURL=style.css.map */