:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --border: rgba(255,255,255,0.08);
  --text: #e5e5e5;
  --text-muted: #a1a1a1;
  --accent: #ff0844;
  --accent-secondary: #dc143c;
  --accent-soft: rgba(255, 8, 68, 0.15);
  --gradient-1: linear-gradient(135deg, #ff0844 0%, #000000 100%);
  --gradient-2: linear-gradient(135deg, #dc143c 0%, #1a0000 100%);
  --gradient-glow: radial-gradient(circle, rgba(255, 8, 68, 0.3) 0%, transparent 70%);
  --radius: 13px;
  --code-font: 'Fira Code', monospace;
  --main-font: 'Inter', system-ui;
  font-size: 110%;
}

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

:root {
  font-size: 110%;
}

body {
  font-family: var(--main-font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  padding-top: 80px;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 8, 68, 0.15) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  transition: opacity 0.3s ease;
  opacity: 0;
}

@media (hover: hover) {
  .cursor-glow {
    opacity: 1;
  }
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
}

#loader::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--gradient-glow);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: pulse 4s ease-in-out infinite;
}

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

#terminal-loader {
  width: 90%;
  max-width: 600px;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px var(--accent-soft);
  border: 1px solid var(--border);
  position: relative;
  margin: 20px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

#terminal-loader::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-1);
  z-index: 1;
}

#terminal-header {
  background: var(--surface);
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  align-items: center;
  height: 38px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.terminal-title {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: auto;
  font-family: -apple-system, BlinkMacSystemFont, var(--main-font);
  font-weight: 500;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: all 0.2s ease;
  position: relative;
  opacity: 0.8;
}

.dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.2);
}

.dot:hover {
  transform: scale(1.1);
  opacity: 1;
}

.red { background: var(--accent); }
.yellow { background: var(--accent-secondary); }
.green { background: var(--accent); opacity: 0.6; }

#terminal-content {
  padding: 24px;
  color: var(--accent);
  white-space: pre-line;
  font-size: 13px;
  font-family: var(--code-font);
  line-height: 1.8;
  opacity: 0.9;
  position: relative;
  background: var(--surface);
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  max-height: calc(90vh - 100px);
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--surface);
}

#terminal-content::-webkit-scrollbar {
  width: 8px;
}

#terminal-content::-webkit-scrollbar-track {
  background: var(--surface);
}

#terminal-content::-webkit-scrollbar-thumb {
  background-color: var(--accent);
  border-radius: 4px;
  border: 2px solid var(--surface);
}

#terminal-content::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 16px;
  background: var(--accent);
  animation: blink 1s step-end infinite;
  margin: 24px;
}

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

#content { display: none; }

#name-prompt {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.5s ease;
}

#name-prompt-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(255, 8, 68, 0.3);
  animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#name-prompt-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-1);
  animation: shimmerBar 2s ease-in-out infinite;
}

@keyframes shimmerBar {
  0%, 100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

#name-prompt-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.6s ease 0.2s both;
}

#name-prompt-content p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

#name-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

#user-name-input {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 16px;
  font-family: var(--main-font);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

#user-name-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft), 0 8px 24px rgba(255, 8, 68, 0.2);
  transform: translateY(-2px);
}

#name-form button {
  width: 100%;
  padding: 16px 24px;
  background: var(--gradient-1);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 8, 68, 0.4);
  position: relative;
  overflow: hidden;
}

#name-form button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

#name-form button:hover::before {
  width: 300px;
  height: 300px;
}

#name-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 8, 68, 0.6);
}

#name-form button:active {
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideDown 0.8s ease-out;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    radial-gradient(
      800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(255, 8, 68, 0.06),
      transparent 40%
    );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03),
    transparent 3px
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes headerSweep {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes gradientSlide {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

header.scrolled {
  background: rgba(10, 10, 10, 0.75);
  box-shadow: 
    0 10px 30px -10px rgba(0, 0, 0, 0.3),
    0 0 1px rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled::before {
  opacity: 1;
}

header.scrolled::after {
  opacity: 1;
}

header.scrolled::after {
  opacity: 1;
}

header.scrolled::before {
  animation: headerSweepFast 4s ease-in-out infinite;
}

@keyframes headerSweepFast {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes headerGlow {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 8, 68, 0.1);
  }
  50% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 80px rgba(255, 8, 68, 0.2);
  }
}

.header-content {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
  padding: 16px max(35px, calc((100% - 1540px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 40px;
}

.header-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  border-radius: 2px;
  box-shadow: 0 0 20px var(--accent);
  animation: headerAccentPulse 2s ease-in-out infinite;
}

.header-content::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: linear-gradient(180deg, transparent, var(--accent-secondary), transparent);
  border-radius: 2px;
  box-shadow: 0 0 20px var(--accent-secondary);
  animation: headerAccentPulse 2s ease-in-out infinite 1s;
}

@keyframes headerAccentPulse {
  0%, 100% {
    opacity: 0.4;
    height: 40%;
  }
  50% {
    opacity: 1;
    height: 70%;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 22px;
  color: var(--text);
  text-decoration: none;
  position: relative;
  letter-spacing: -0.03em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 16px;
  border-radius: 12px;
  background: rgba(255, 8, 68, 0.03);
  border: 1px solid rgba(255, 8, 68, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logo::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), transparent, var(--accent-secondary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: logoCornerDot 3s ease-in-out infinite;
}

@keyframes logoCornerDot {
  0%, 100% {
    left: 0;
    top: 0;
  }
  25% {
    left: calc(100% - 6px);
    top: 0;
  }
  50% {
    left: calc(100% - 6px);
    top: calc(100% - 6px);
  }
  75% {
    left: 0;
    top: calc(100% - 6px);
  }
}

.logo:hover::before {
  opacity: 1;
}

.logo:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255, 8, 68, 0.2);
  box-shadow: 0 8px 24px rgba(255, 8, 68, 0.2);
}

.logo span {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--accent) 50%,
    var(--accent-secondary) 75%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: logoGradient 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes logoGradient {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 200% center;
  }
}

nav {
  display: flex;
  gap: 2px;
  background: rgba(17, 17, 17, 0.7);
  padding: 4px;
  border-radius: 16px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 8, 68, 0.15), transparent);
  animation: navShimmer 3s ease-in-out infinite;
}

nav::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), transparent, var(--accent-secondary), transparent, var(--accent));
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: navBorderFlow 6s linear infinite;
  opacity: 0.3;
}

@keyframes navShimmer {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

@keyframes navBorderFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

nav a {
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  overflow: hidden;
  letter-spacing: -0.01em;
  background: transparent;
}

nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 8, 68, 0.1), rgba(220, 20, 60, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 1px;
  box-shadow: 0 0 8px var(--accent);
}

nav a:hover::before {
  opacity: 1;
}

nav a:hover {
  color: var(--text);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 8, 68, 0.2);
}

nav a:hover::after {
  width: 70%;
}

nav a.active {
  color: #ffffff;
  background: var(--gradient-1);
  box-shadow: 0 4px 16px rgba(255, 8, 68, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: navPulse 2s ease-in-out infinite;
}

nav a.active::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
}

nav a.active::after {
  display: none;
}

@keyframes navPulse {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(255, 8, 68, 0.4);
  }
  50% {
    box-shadow: 0 4px 16px rgba(255, 8, 68, 0.6);
  }
}

.hero {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 120px max(35px, calc((100% - 1540px) / 2));
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  min-height: calc(100vh - 80px);
  overflow: visible;
}

.hero-particles {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.particle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: floatParticle 8s ease-in-out infinite;
}

.particle:nth-child(1) {
  background: var(--accent);
  top: 20%;
  right: -5%;
  animation-delay: 0s;
  width: 300px;
  height: 300px;
  opacity: 0.4;
}

.particle:nth-child(2) {
  background: var(--accent-secondary);
  top: 50%;
  right: 15%;
  animation-delay: 2s;
  width: 250px;
  height: 250px;
  opacity: 0.3;
}

.particle:nth-child(3) {
  background: var(--accent);
  bottom: 15%;
  right: -10%;
  animation-delay: 4s;
  width: 280px;
  height: 280px;
  opacity: 0.35;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.1);
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 800px;
  height: 800px;
  background: var(--gradient-glow);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite;
  max-width: 60vw;
  opacity: 0.8;
  filter: blur(40px);
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.7; transform: translateY(-50%) scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 32px;
  box-shadow: 0 0 20px rgba(255, 8, 68, 0.3);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  width: fit-content;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  text-align: left;
}

.hero h1::after {
  content: '|';
  animation: blink 1s step-end infinite;
  -webkit-text-fill-color: var(--accent);
}

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

.hero-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  line-height: 1.7;
  text-align: left;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 var(--accent); }
  50% { opacity: 0.5; transform: scale(1.2); box-shadow: 0 0 0 4px rgba(255, 8, 68, 0.3); }
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-cta {
  padding: 16px 32px;
  background: var(--gradient-1);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 8, 68, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 8, 68, 0.6);
  animation: pulse 0.4s ease;
}

.hero-cta-secondary {
  padding: 16px 32px;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  animation: wiggle 0.4s ease;
}

.socials {
  display: flex;
  gap: 12px;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  transform: translateY(-2px) rotate(5deg);
  box-shadow: 0 4px 20px rgba(255, 8, 68, 0.4);
  animation: wiggle 0.5s ease;
}

.social-btn img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  filter: brightness(0) invert(1);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.code-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 600px;
  transition: all 0.3s ease;
}

.code-window:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 80px rgba(255, 8, 68, 0.3);
}

.code-header {
  background: #1e1e1e;
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

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

.code-body {
  padding: 24px;
  font-family: var(--code-font);
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  min-height: 300px;
}

.code-line {
  display: flex;
  gap: 16px;
}

.line-number {
  color: var(--text-muted);
  user-select: none;
  min-width: 30px;
  text-align: right;
}

.code-content {
  flex: 1;
}

.code-keyword { color: #ff0844; }
.code-function { color: #ffd700; }
.code-string { color: #4caf50; }
.code-comment { color: var(--text-muted); font-style: italic; }

.languages {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px 80px;
  position: relative;
}

.languages::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: var(--gradient-glow);
  pointer-events: none;
  opacity: 0.5;
  filter: blur(80px);
}

.languages-content {
  position: relative;
  z-index: 1;
}

.languages-header {
  text-align: center;
  margin-bottom: 64px;
}

.languages h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.languages-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

.languages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.language-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.language-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 8, 68, 0.1), transparent);
  transition: left 0.6s ease;
}

.language-card:hover::before {
  left: 100%;
}

.language-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 8, 68, 0.25);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 8, 68, 0.05) 100%);
}

.language-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--gradient-1);
  box-shadow: 0 8px 24px rgba(255, 8, 68, 0.3);
  transition: all 0.4s ease;
}

.language-card:hover .language-icon {
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 12px 32px rgba(255, 8, 68, 0.5);
}

.language-icon svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.language-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.language-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.logos {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px 80px;
  background: linear-gradient(180deg, rgba(255, 8, 68, 0.02) 0%, transparent 100%);
}

.logos-content {
  position: relative;
  z-index: 1;
}

.logos-header {
  text-align: center;
  margin-bottom: 64px;
}

.logos h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logos-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.logo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.logo-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(255, 8, 68, 0.3);
}

.logo-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 8, 68, 0.05) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.logo-card:hover .logo-placeholder {
  background: linear-gradient(135deg, rgba(255, 8, 68, 0.08) 0%, rgba(255, 8, 68, 0.12) 100%);
}

.logo-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 8, 68, 0.1), transparent);
  transition: left 0.5s ease;
}

.logo-card:hover .logo-placeholder::before {
  left: 100%;
}

.logo-placeholder svg {
  width: 80px;
  height: 80px;
  color: var(--accent);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-card:hover .logo-placeholder svg {
  transform: scale(1.1) rotateY(180deg);
  opacity: 1;
}

.logo-placeholder p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 32px;
}

.logo-info {
  padding: 24px;
  text-align: center;
}

.logo-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.logo-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px 80px;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: var(--gradient-glow);
  pointer-events: none;
  opacity: 0.5;
  filter: blur(80px);
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-header {
  text-align: center;
  margin-bottom: 64px;
}

.about h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255, 8, 68, 0.2);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 320px;
}

.profile-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 48px rgba(255, 8, 68, 0.3);
  transform: translateY(-8px);
}

.profile-placeholder {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(255, 8, 68, 0.4);
}

.profile-placeholder svg {
  width: 90px;
  height: 90px;
  color: #ffffff;
}

.profile-info h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.profile-info p {
  font-size: 14px;
  color: var(--text-muted);
}

.skills {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 8, 68, 0.02) 100%);
}

.skills-content {
  position: relative;
  z-index: 1;
}

.skills-header {
  text-align: center;
  margin-bottom: 64px;
}

.skills h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.skills-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

.skills-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.skill-category {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
}

.skill-category:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 48px rgba(255, 8, 68, 0.25);
  transform: translateY(-4px);
}

.skill-category h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent);
}

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

.skill-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skill-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.skill-level {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.skill-bar {
  width: 100%;
  height: 8px;
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.skill-progress {
  height: 100%;
  background: var(--gradient-1);
  border-radius: 4px;
  transition: width 1s ease;
  box-shadow: 0 0 10px rgba(255, 8, 68, 0.5);
  position: relative;
  overflow: hidden;
}

.skill-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: skillShimmer 2s ease-in-out infinite;
}

@keyframes skillShimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.cv-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px 80px;
}

.cv-content {
  position: relative;
  z-index: 1;
}

.cv-header {
  text-align: center;
  margin-bottom: 64px;
}

.cv-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cv-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

.cv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  transition: all 0.3s ease;
  max-width: 800px;
  margin: 0 auto;
}

.cv-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 48px rgba(255, 8, 68, 0.3);
  transform: translateY(-4px);
}

.cv-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.cv-card:hover .cv-icon {
  transform: scale(1.1) rotateY(180deg);
}

.cv-icon svg {
  width: 40px;
  height: 40px;
  color: #ffffff;
}

.cv-info h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.cv-info p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.cv-details {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.cv-download-btn {
  padding: 14px 28px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.cv-download-btn svg {
  width: 20px;
  height: 20px;
}

.cv-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 8, 68, 0.5);
  background: var(--gradient-1);
}

.portfolio {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 32px 80px;
}

.portfolio-header, .pricing-header, .schedule-header {
  text-align: center;
  margin-bottom: 64px;
}

.portfolio h2, .pricing h2, .schedule h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio-subtitle, .pricing-subtitle, .schedule-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

.websites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.website-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.website-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(255, 8, 68, 0.3);
}

.website-preview {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 8, 68, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.website-preview iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: none;
}

.website-footer {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.website-info h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.website-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.website-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.website-link {
  padding: 10px 20px;
  background: var(--accent);
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}

.website-link:hover {
  transform: translateX(2px);
  box-shadow: 0 4px 16px rgba(255, 8, 68, 0.5);
  background: var(--gradient-1);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.portfolio-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(255, 8, 68, 0.25);
}

.portfolio-card:hover .portfolio-card-preview svg {
  animation: bounce 0.6s ease;
}

.portfolio-card-preview {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 8, 68, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-card-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.portfolio-card:hover .portfolio-card-preview::before {
  left: 100%;
}

.portfolio-card-content {
  padding: 20px;
}

.portfolio-card-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.portfolio-card-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.portfolio-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag {
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tag:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 8, 68, 0.4);
}

.portfolio-card-footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.project-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  padding: 4px 12px;
  background: var(--accent-soft);
  border-radius: 6px;
}

.featured-project {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 64px;
  transition: all 0.3s ease;
}

.featured-project:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 48px rgba(255, 8, 68, 0.3);
}

.featured-project iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

.featured-project-footer {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
}

.featured-project-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.project-brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gradient-1);
  padding: 8px;
}

.featured-project-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.featured-project-info p {
  font-size: 14px;
  color: var(--text-muted);
}

.featured-project-footer a {
  padding: 10px 20px;
  background: var(--accent);
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.featured-project-footer a:hover {
  transform: translateX(2px);
  box-shadow: 0 4px 16px rgba(255, 8, 68, 0.5);
  background: var(--gradient-1);
}

.pricing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 8, 68, 0.02) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 8, 68, 0.05), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.pricing-card:hover::after {
  animation: shimmer 1.5s ease-in-out;
  opacity: 1;
}

.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(255, 8, 68, 0.2);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 8, 68, 0.3);
  border-color: var(--accent);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-1);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s ease-in-out infinite;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}

.price span {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-description {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  margin-right: 12px;
  font-size: 16px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-btn {
  width: 100%;
  padding: 14px 24px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 8, 68, 0.5);
  background: var(--gradient-1);
  animation: pulse 0.5s ease;
}

.schedule {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px 80px;
}

.schedule-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.schedule-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.schedule-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s ease;
}

.schedule-card:hover {
  border-color: var(--accent);
  transform: translateX(4px);
  box-shadow: 0 8px 32px rgba(255, 8, 68, 0.2);
  animation: wiggle 0.5s ease;
}

.schedule-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.4s ease;
}

.schedule-card:hover .schedule-icon {
  animation: bounce 0.6s ease;
}

.schedule-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.schedule-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.schedule-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.schedule-form-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--main-font);
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  animation: scaleIn 0.3s ease;
}

.form-group textarea {
  resize: vertical;
}

.schedule-btn {
  width: 100%;
  padding: 14px 24px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.schedule-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 8, 68, 0.5);
  background: var(--gradient-1);
  animation: pulse 0.5s ease;
}

.schedule-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--gradient-1);
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 8, 68, 0.4);
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.contact-btn:hover::before {
  left: 100%;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 8, 68, 0.6);
}

footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  margin-top: 100px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 32px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .logo {
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--text);
}

@media (max-width: 968px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 32px;
  }

  .hero-visual {
    order: -1;
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .schedule-container {
    grid-template-columns: 1fr;
  }

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

  .code-window {
    max-width: 100%;
  }
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes borderGlow {
  0%, 100% {
    box-shadow: 0 0 5px var(--accent), 0 0 10px var(--accent);
  }
  50% {
    box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent), 0 0 30px var(--accent);
  }
}

@keyframes rotate3d {
  0% {
    transform: perspective(1000px) rotateY(0deg);
  }
  100% {
    transform: perspective(1000px) rotateY(360deg);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

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

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-3deg);
  }
  75% {
    transform: rotate(3deg);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 968px) {
  .websites-grid {
    grid-template-columns: 1fr;
  }

  .website-preview {
    height: 350px;
  }

  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

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

  .cv-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .cv-icon {
    margin: 0 auto;
  }

  .cv-download-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 845px) {
  .header-content {
    padding: 13px 22px;
  }
  
  nav {
    display: none;
  }

  .logo {
    font-size: 17.6px;
    padding: 7px 13px;
  }

  .hero {
    padding: 40px 24px 80px;
    min-height: auto;
    gap: 60px;
    flex-direction: column;
  }
  
.hero-content {
  width: 100%;
  max-width: 720px;
}  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    transform: none;
  }

.code-window {
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 560px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta,
  .hero-cta-secondary {
    width: 100%;
    justify-content: center;
  }

.hero h1 {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}  .hero-subtitle {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-badge {
    margin: 0 auto 24px;
  }

  .socials {
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

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

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

  .about-stats {
    grid-template-columns: 1fr;
  }

  .logos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .website-card {
    margin-bottom: 32px;
  }

  .website-preview {
    aspect-ratio: 16/10;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: 32px;
  }

  #loader {
    padding: 12px;
  }

  #terminal-loader {
    width: 100%;
    margin: 0;
    max-height: 85vh;
  }

  .terminal-title {
    font-size: 11px;
  }

  #terminal-content {
    font-size: 12px;
    padding: 16px;
    max-height: calc(85vh - 80px);
  }

  #terminal-header {
    padding: 10px 12px;
    height: 34px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .website-card {
    margin-bottom: 24px;
  }

  .website-footer {
    padding: 16px;
  }

  .website-tags {
    flex-wrap: wrap;
  }

  .website-link {
    padding: 8px 16px;
  }

  .logos-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding: 80px 40px;
    gap: 40px;
  }

  .hero-content {
    width: 55%;
  }

  .hero-visual {
    width: 45%;
  }

  .code-window {
    transform: scale(0.9);
  }

  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .website-preview {
    aspect-ratio: 16/9;
  }
}

@media (min-width: 1025px) {
  .hero-visual {
    transform: translateY(-40px);
  }

  .code-window {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.3s ease;
  }

  .code-window:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  }
}

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

.website-preview {
  height: 300px;
}
