/* CSS Variables */
:root {
  --primary-color: #00ff88;
  --secondary-color: #0066cc;
  --accent-color: #ff6b35;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-dark: #333333;
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-card: #1f1f1f;
  --border-color: #333333;
  --shadow: 0 4px 20px rgba(0, 255, 136, 0.1);
  --shadow-lg: 0 20px 40px rgba(0, 255, 136, 0.2);
}

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

/* Base Styles */
body {
  font-family: "JetBrains Mono", "Courier New", monospace;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* 3D Binary Background */
.binary-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.binary-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: "Courier New", monospace;
  font-weight: bold;
  pointer-events: none;
}

.binary-char {
  position: absolute;
  color: var(--primary-color);
  font-size: 18px;
  opacity: 0.3;
  animation: binaryFloat 15s linear infinite;
  text-shadow: 0 0 10px var(--primary-color);
}

@keyframes binaryFloat {
  from {
    transform: translateY(100vh) translateZ(0px);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.1;
  }
  to {
    transform: translateY(-100px) translateZ(200px);
    opacity: 0;
  }
}

/* Scan lines effect */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 50%, rgba(0, 255, 136, 0.03) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 1;
  animation: scanlines 0.1s linear infinite;
}

@keyframes scanlines {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(4px);
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 0 20px var(--primary-color);
  font-family: "JetBrains Mono", monospace;
}

.logo:hover {
  transform: scale(1.1);
  text-shadow: 0 0 30px var(--primary-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-color);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 900px;
  z-index: 2;
  position: relative;
}

.hero-glitch {
  position: relative;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: slideInUp 1s ease-out;
}

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

.hero-glitch::before {
  color: var(--primary-color);
  animation: glitch-1 2s infinite;
}

.hero-glitch::after {
  color: var(--accent-color);
  animation: glitch-2 2s infinite;
}

@keyframes glitch-1 {
  0%,
  14%,
  15%,
  49%,
  50%,
  99%,
  100% {
    transform: translate(0);
  }
  15% {
    transform: translate(-2px, 2px);
  }
  50% {
    transform: translate(2px, -2px);
  }
}

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

.hero .subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: slideInUp 1s ease-out 0.2s both;
  text-shadow: 0 0 20px var(--primary-color);
}

.hero .description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: slideInUp 1s ease-out 0.4s both;
  line-height: 1.8;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 1s ease-out 0.6s both;
}

.btn {
  padding: 15px 30px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "JetBrains Mono", monospace;
  border: 2px solid var(--primary-color);
}

.btn-primary {
  background: transparent;
  color: var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
  background: var(--primary-color);
  color: var(--bg-primary);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.btn-secondary:hover {
  background: var(--accent-color);
  color: var(--bg-primary);
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
  transform: translateY(-3px);
}

/* Section Styles */
.section {
  padding: 6rem 2rem;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: var(--text-primary);
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
}

.section-title::before {
  content: "> ";
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-color);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--primary-color);
  box-shadow: 0 0 20px var(--primary-color);
}

/* About Section */
.about {
  background: var(--bg-secondary);
}

.about-terminal {
  background: var(--bg-card);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  font-family: "JetBrains Mono", monospace;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
  position: relative;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.terminal-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #ff5f56;
}
.dot.yellow {
  background: #ffbd2e;
}
.dot.green {
  background: #27ca3f;
}

.terminal-title {
  color: var(--primary-color);
  font-weight: bold;
}

.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.profile-image {
  position: relative;
}

.image-container {
  width: 250px;
  height: 250px;
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(1) hue-rotate(90deg) saturate(2);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 255, 136, 0.1);
  pointer-events: none;
}

.scan-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  box-shadow: 0 0 20px var(--primary-color);
  animation: scanLine 2s linear infinite;
}

@keyframes scanLine {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.info-label {
  color: var(--primary-color);
  font-weight: bold;
  min-width: 120px;
}

.info-value {
  color: var(--text-primary);
}

.status-online {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-color);
  animation: pulse 2s infinite;
}

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

.bio-section {
  margin-top: 2rem;
}

.bio-header {
  margin-bottom: 1rem;
}

.prompt {
  color: var(--primary-color);
  font-weight: bold;
}

.command {
  color: var(--text-primary);
}

.bio-text {
  color: var(--text-secondary);
  line-height: 1.8;
  text-align: justify;
}

/* Skills Section */
.skills {
  background: var(--bg-primary);
}

.skills-terminal {
  background: var(--bg-card);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  font-family: "JetBrains Mono", monospace;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
  position: relative;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.skill-item {
  padding: 1.5rem;
  background: rgba(0, 255, 136, 0.05);
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
}

.skill-item:hover {
  background: rgba(0, 255, 136, 0.1);
  transform: translateX(10px);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.skill-item::before {
  content: "$ ";
  color: var(--primary-color);
  font-weight: bold;
}

.skill-name {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 1rem;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.skill-name {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1rem;
}

.skill-level {
  width: 100%;
}

.level-bar {
  width: 100%;
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  overflow: hidden;
}

.level-fill {
  height: 100%;
  background: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
  width: 0;
  animation: fillLevel 2s ease-out forwards;
}

@keyframes fillLevel {
  to {
    width: var(--level, 80%);
  }
}

.skill-experience {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* Projects Section */
.projects {
  background: var(--bg-secondary);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.project-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.project-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
  transform: translateY(-10px);
}

.project-header {
  background: var(--bg-secondary);
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.project-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.project-title {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: bold;
  font-family: "JetBrains Mono", monospace;
}

.project-content {
  padding: 2rem;
}

.project-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tech-tag {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: bold;
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: var(--primary-color);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.project-links {
  display: flex;
  gap: 2rem;
}

.project-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.project-link:hover {
  color: var(--accent-color);
  text-shadow: 0 0 10px var(--accent-color);
}

.project-link::before {
  content: "[";
  margin-right: 0.5rem;
}

.project-link::after {
  content: "]";
  margin-left: 0.5rem;
}

/* Articles Section */
.articles {
  background: var(--bg-primary);
}

.articles-terminal {
  background: var(--bg-card);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  font-family: "JetBrains Mono", monospace;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
  position: relative;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.article-card {
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.article-card:hover {
  border-color: var(--primary-color);
  background: rgba(0, 255, 136, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.article-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
}

.read-time {
  color: var(--primary-color);
  font-weight: bold;
}

.publish-date {
  color: var(--text-secondary);
}

.article-title {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.article-synopsis {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.article-tag {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
}

.article-actions {
  display: flex;
  justify-content: flex-end;
}

.read-article-btn {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.read-article-btn:hover {
  color: var(--accent-color);
  text-shadow: 0 0 10px var(--accent-color);
}

.read-article-btn::before {
  content: "[";
  margin-right: 0.5rem;
}

.read-article-btn::after {
  content: "]";
  margin-left: 0.5rem;
}

.articles-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.view-all-btn {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "JetBrains Mono", monospace;
  transition: all 0.3s ease;
  display: inline-block;
}

.view-all-btn:hover {
  background: var(--primary-color);
  color: var(--bg-primary);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
  transform: translateY(-2px);
}

/* Contact Section */
.contact {
  background: var(--bg-primary);
}

.contact-terminal {
  background: var(--bg-card);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
  max-width: 1000px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(0, 255, 136, 0.05);
  border-left: 3px solid var(--primary-color);
}

.contact-label {
  color: var(--primary-color);
  font-weight: bold;
  font-family: "JetBrains Mono", monospace;
}

.contact-value {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-color);
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-primary);
  font-family: "JetBrains Mono", monospace;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.form-input::placeholder {
  color: var(--text-secondary);
  font-family: "JetBrains Mono", monospace;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  justify-self: start;
  width: fit-content;
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.submit-btn:hover {
  background: var(--primary-color);
  color: var(--bg-primary);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
  transform: translateY(-3px);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Footer */
footer {
  background: var(--bg-secondary);
  color: var(--text-primary);
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-color);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.social-link {
  color: var(--text-secondary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  color: var(--primary-color);
  text-shadow: 0 0 20px var(--primary-color);
  transform: scale(1.2);
}

.copyright {
  font-family: "JetBrains Mono", monospace;
  color: var(--text-secondary);
}

/* Skill Level Styling */
.level-text {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--primary-color);
  text-align: right;
}

/* Scroll animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Matrix cursor */
.cursor-glow {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.7;
  box-shadow: 0 0 20px var(--primary-color);
  transition: all 0.1s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    gap: 1.5rem;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-glitch {
    font-size: 2.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    gap: 2rem;
  }

  .binary-char {
    font-size: 14px;
  }

  .section {
    padding: 4rem 1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .image-container {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-glitch {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    gap: 1.5rem;
  }

  .contact-terminal,
  .about-terminal,
  .skills-terminal {
    padding: 1rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}
