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

:root {
  --primary-color: #00ff88;
  --secondary-color: #0066ff;
  --accent-color: #ff6b35;
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --border-color: #333333;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Background Grid */
.background-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 136, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  z-index: -2;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Floating Elements */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.floating-element {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: float var(--duration) ease-in-out infinite var(--delay);
  box-shadow: 0 0 10px var(--primary-color);
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
}
.floating-element:nth-child(2) {
  top: 60%;
  right: 15%;
}
.floating-element:nth-child(3) {
  bottom: 30%;
  left: 70%;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* Header */
.header {
  margin-bottom: 3rem;
}

.logo {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
}

.bracket {
  color: var(--secondary-color);
}

.name {
  margin: 0 0.5rem;
  color: var(--text-primary);
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid var(--accent-color);
  border-radius: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  color: var(--accent-color);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.main-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  margin: 1rem 0;
  font-family: "JetBrains Mono", monospace;
}

.glitch {
  position: relative;
  color: var(--primary-color);
  animation: glitch 3s ease-in-out infinite;
}

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

.glitch::before {
  animation: glitch-1 0.5s ease-in-out infinite alternate-reverse;
  color: var(--secondary-color);
  z-index: -1;
}

.glitch::after {
  animation: glitch-2 0.5s ease-in-out infinite alternate-reverse;
  color: var(--accent-color);
  z-index: -2;
}

@keyframes glitch {
  0%,
  90%,
  100% {
    transform: translate(0);
  }
  95% {
    transform: translate(-2px, 2px);
  }
}

@keyframes glitch-1 {
  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-2 {
  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);
  }
}

.description {
  max-width: 600px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 900px;
  margin: 2rem 0;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: slideUp 0.6s ease-out var(--delay) both;
}

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

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

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.progress-section {
  width: 100%;
  max-width: 500px;
  margin: 2rem 0;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.progress-percentage {
  color: var(--primary-color);
}

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

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  width: 0%;
  border-radius: 4px;
  animation: progressFill 3s ease-in-out infinite;
}

@keyframes progressFill {
  0% {
    width: 0%;
  }
  50% {
    width: 75%;
  }
  100% {
    width: 0%;
  }
}

.contact-info {
  margin-top: 2rem;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-link:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.terminal-line {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
}

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

.command {
  color: var(--text-primary);
  margin-left: 0.5rem;
}

.cursor {
  color: var(--primary-color);
  animation: blink 1s step-end infinite;
  margin-left: 0.2rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .terminal-line {
    font-size: 0.8rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
  }

  .status-indicator {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }

  .description {
    font-size: 0.9rem;
  }
}
