
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto+Mono:wght@400;700&display=swap');

:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #1a1a1a;
  --accent-primary: #00ffff; /* Cyan */
  --accent-secondary: #ff00ff; /* Magenta */
  --accent-tertiary: #00ff00; /* Green */
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --glow-primary: 0 0 20px rgba(0, 255, 255, 0.5);
  --glow-secondary: 0 0 20px rgba(255, 0, 255, 0.5);
  --glow-green: 0 0 20px rgba(0, 255, 0, 0.5);
  --border-radius: 16px;
  --transition: all 0.3s ease;
}
.nav-btn {
    background: #00ffff;
    color: #0a0a0a !important;
    border-radius: 8px;
    padding: 8px 20px !important;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #ff00ff;
    color: #fff !important;
    box-shadow: 0 0 15px #ff00ff;
}
* {
  box-sizing: border-box;
}
/* DISABLED BUTTON */
.primary-btn.disabled {
  border-color: var(--text-secondary);
  color: var(--text-secondary);
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
}

/* remove hover effects */
.primary-btn.disabled:hover {
  background: transparent;
  color: var(--text-secondary);
  transform: none;
  box-shadow: none;
  text-shadow: none;
}

/* stop animation */
.primary-btn.disabled::before {
  display: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto Mono', 'Segoe UI', monospace;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
}

/* Gaming Scanline Effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15) 0px,
    rgba(0, 0, 0, 0.15) 2px,
    transparent 2px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* NAVBAR */
.main-nav {
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 20, 40, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  box-shadow: var(--glow-primary), inset 0 1px 0 rgba(0, 255, 255, 0.2);
  border-bottom: 2px solid var(--accent-primary);
  position: fixed;
  top: 0;
  z-index: 1000;
  font-family: 'Orbitron', sans-serif;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 60px;
  filter: drop-shadow(0 0 10px var(--accent-primary));
  transition: var(--transition);
  cursor: pointer;
}

.logo:hover {
  filter: drop-shadow(0 0 20px var(--accent-primary)) brightness(1.2);
  transform: scale(1.05);
}

.brand-name {
  color: var(--accent-primary);
  font-size: 22px;
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px var(--accent-primary), 0 0 20px var(--accent-secondary);
  letter-spacing: 3px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-secondary);
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links li a::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 4px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-links li a:hover {
  color: var(--bg-primary);
  background: var(--accent-primary);
  box-shadow: var(--glow-primary), inset 0 0 10px var(--accent-primary);
  border-color: var(--accent-primary);
  transform: translateY(-3px) skewX(-2deg);
}

.nav-links li a:hover::before {
  opacity: 0.3;
}

/* HERO */
.hero-container {
  padding-top: 80px; /* Account for fixed nav */
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 8%;
  min-height: 80vh;
  gap: 40px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,255,255,0.05) 0%, rgba(255,0,255,0.05) 100%);
  z-index: -1;
}

.hero-left {
  max-width: 600px;
  z-index: 1;
}

.hero-left h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0,255,255,0.5);
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  letter-spacing: 3px;
  position: relative;
  animation: glitch 3s infinite;
}

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

.hero-left h1::before {
  animation: glitch-anim 0.3s infinite;
  color: var(--accent-primary);
  z-index: -1;
}

.hero-left h1::after {
  animation: glitch-anim-2 0.3s infinite;
  color: var(--accent-secondary);
  z-index: -2;
}

.hero-left p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.primary-btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 0px;
  border: 3px solid var(--accent-primary);
  background: transparent;
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Orbitron', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0, 255, 255, 0.2);
}

.primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-primary);
  z-index: -1;
  transition: left 0.3s ease;
}

.primary-btn:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
  box-shadow: 0 0 30px var(--glow-primary), inset 0 0 20px rgba(0, 255, 255, 0.3);
  transform: translateY(-4px) scaleX(1.05);
  border-color: var(--accent-primary);
  text-shadow: 0 0 5px var(--bg-primary);
}

.primary-btn:active {
  transform: translateY(-2px) scaleX(1.03);
  box-shadow: 0 0 20px var(--glow-primary), inset 0 0 10px rgba(0, 255, 255, 0.5);
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.hero-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 60px rgba(0,255,255,0.3);
  transition: var(--transition);
  border: 2px solid var(--accent-primary);
}

.hero-image:hover {
  transform: scale(1.08) rotateY(-5deg);
  box-shadow: 0 30px 80px rgba(0,255,255,0.5), inset 0 0 30px rgba(0,255,255,0.2);
  filter: brightness(1.1);
}

/* CARDS SECTION */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 80px 8%;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(5px);
}

.card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 0px;
  padding: 30px 25px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary),
    var(--accent-primary)
  );
  opacity: 0;
  animation: rotate 3s linear infinite;
}

.card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0,255,255,0.3), inset 0 0 20px rgba(0,255,255,0.1);
  border-color: var(--accent-primary);
}

.card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: var(--accent-primary);
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* TEAM SECTION */
.team {
  padding: 80px 8%;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.team-title {
  font-size: 3rem;
  margin-bottom: 10px;
  background: linear-gradient(45deg, var(--accent-secondary), var(--accent-tertiary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: neon-flicker 5s infinite;
}

.team-subtitle {
  color: var(--text-secondary);
  margin-bottom: 60px;
  font-size: 1.2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.team-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  border-radius: 0px;
  padding: 40px 30px;
  border: 2px solid rgba(255, 0, 255, 0.3);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 0, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 0 30px 60px rgba(255,0,255,0.3), inset 0 0 30px rgba(255,0,255,0.2);
  border-color: var(--accent-secondary);
}

.team-card:hover::before {
  opacity: 1;
  animation: shimmer 0.6s ease;
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 0px;
  margin-bottom: 20px;
  border: 3px solid var(--accent-secondary);
  box-shadow: var(--glow-secondary), 0 0 20px var(--accent-secondary);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.team-card:hover img {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--glow-secondary), 0 0 40px var(--accent-secondary);
}

.team-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-family: 'Orbitron', sans-serif;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.team-card span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-family: 'Roboto Mono', monospace;
  position: relative;
  z-index: 1;
}

/* FOOTER */
.footer {
  background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
  padding: 60px 8% 30px;
  border-top: 2px solid var(--accent-primary);
  box-shadow: inset 0 1px 0 rgba(0, 255, 255, 0.2);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.footer h3, .footer h4 {
  margin-bottom: 15px;
  color: var(--accent-primary);
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: 'Roboto Mono', monospace;
  position: relative;
}

.footer-links a::before {
  content: '> ';
  color: var(--accent-primary);
  margin-right: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
  text-shadow: var(--glow-primary);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-family: 'Roboto Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* PAGE HERO */
.page-hero {
  padding: 120px 8% 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0,255,255,0.5);
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  letter-spacing: 3px;
  animation: neon-flicker 4s infinite;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.3rem;
}

/* PAGE CONTENT */
.page-content {
  padding: 80px 8%;
  max-width: 1000px;
  margin: auto;
}

.content-block {
  margin-bottom: 60px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
  backdrop-filter: blur(10px);
  border-radius: 0px;
  padding: 40px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0,255,255,0.1), inset 0 0 20px rgba(0,255,255,0.05);
  transition: var(--transition);
}

.content-block:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 15px 40px rgba(0,255,255,0.2), inset 0 0 30px rgba(0,255,255,0.1);
}

.content-block h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: var(--accent-primary);
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.content-block p,
.content-block li {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
}

.content-block ul {
  padding-left: 25px;
}

/* FORM */
.request-form {
  max-width: 700px;
  margin: auto;
  background: linear-gradient(135deg, rgba(0, 20, 40, 0.5), rgba(20, 0, 40, 0.5));
  backdrop-filter: blur(15px);
  padding: 50px;
  border-radius: 0px;
  border: 2px solid var(--accent-primary);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3), inset 0 0 20px rgba(0, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--accent-primary);
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border-radius: 0px;
  border: 2px solid var(--accent-primary);
  outline: none;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: var(--text-primary);
  font-family: 'Roboto Mono', monospace;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-secondary);
  box-shadow: 0 0 20px var(--glow-secondary), inset 0 0 10px rgba(255, 0, 255, 0.1);
  background: rgba(0, 0, 0, 0.7);
}

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

/* ANIMATIONS */
@keyframes glow {
  0%, 100% { box-shadow: var(--glow-primary); }
  50% { box-shadow: 0 0 30px rgba(0, 255, 255, 0.8); }
}

@keyframes glitch {
  0%, 100% { text-shadow: 0 0 30px rgba(0,255,255,0.5); }
  50% { text-shadow: 0 0 50px rgba(0,255,255,0.8), 0 0 20px rgba(255,0,255,0.4); }
}

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

@keyframes glitch-anim-2 {
  0% { clip-path: inset(58% 0 43% 0); transform: translate(5px, -5px); }
  20% { clip-path: inset(10% 0 85% 0); transform: translate(-5px, 5px); }
  40% { clip-path: inset(40% 0 4% 0); transform: translate(5px, 5px); }
  60% { clip-path: inset(80% 0 10% 0); transform: translate(-5px, -5px); }
  80% { clip-path: inset(50% 0 30% 0); transform: translate(5px, -5px); }
  100% { clip-path: inset(70% 0 20% 0); transform: translate(-5px, 5px); }
}

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 0 20px var(--accent-primary), inset 0 0 10px rgba(0, 255, 255, 0.2);
  }
  50% { 
    box-shadow: 0 0 40px var(--accent-primary), inset 0 0 20px rgba(0, 255, 255, 0.4);
  }
}

@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 10px var(--accent-primary), 0 0 20px var(--accent-secondary);
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes scan {
  0% { top: 0; }
  100% { top: 100%; }
}

.primary-btn:hover {
  animation: glow 1.5s infinite;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links li a {
    padding: 8px 15px;
    font-size: 14px;
  }
}

/* ========== HAMBURGER MENU ========== */

/* Hide hamburger by default (desktop) */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--accent-primary);
  transition: var(--transition);
}

.hamburger:hover {
  text-shadow: var(--glow-primary);
}

/* Tablet and Mobile styles */
@media (max-width: 1024px) {
  .main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 15px;
    padding: 20px 0;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li a {
    padding: 10px 20px;
    display: block;
  }
}

/* Desktop (above 1024px) */
@media (min-width: 1025px) {
  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
  }
  
  .hamburger {
    display: none !important;
  }
}
/* CTA SECTION */
.cta {
  padding: 100px 8%;
  text-align: center;
  background: linear-gradient(135deg, rgba(0,255,255,0.08), rgba(255,0,255,0.08));
  border-top: 2px solid var(--accent-primary);
  border-bottom: 2px solid var(--accent-secondary);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,255,255,0.1), transparent 60%);
  animation: rotate 10s linear infinite;
  z-index: 0;
}

.cta h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}
/* SLIDER WRAPPER */
.team-slider-wrapper {
  position: relative;
  overflow: hidden;
}

/* SLIDER */
.team-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
}

/* Hide scrollbar */
.team-slider::-webkit-scrollbar {
  display: none;
}

/* Each card size control */
.team-card {
  min-width: 280px;
  flex: 0 0 auto;
}

/* ARROWS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
  font-size: 28px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
  box-shadow: var(--glow-primary);
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}
/* PROJECTS SECTION */
.projects-section {
  padding: 80px 8%;
  display: grid;
  gap: 40px;
}

/* PROJECT CARD */
.project-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--accent-primary);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.project-card::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary),
    var(--accent-primary)
  );
  opacity: 0;
  animation: rotate 4s linear infinite;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,255,255,0.3);
  border-color: var(--accent-secondary);
}

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

/* CONTENT */
.project-content {
  position: relative;
  z-index: 1;
}

.project-content h2 {
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 10px;
  color: var(--accent-primary);
  letter-spacing: 2px;
}

.project-content p {
  color: var(--text-secondary);
  margin: 15px 0 25px;
  line-height: 1.6;
}

/* TAGS */
.tag {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.tag.progress {
  border-color: var(--accent-secondary);
  color: var(--accent-secondary);
}

.project-img {
  width: 100%;
  max-width: 500px;
  margin: 30px auto;
  display: block;
  border: 2px solid var(--accent-primary);
  box-shadow: 0 0 30px rgba(0,255,255,0.3);
}
