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

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #13131a;
  --text-primary: #e0e0e0;
  --text-secondary: #a0a0a8;
  --accent-cyan: #00f5ff;
  --accent-pink: #ff006e;
  --accent-green: #00ff9f;
  --accent-yellow: #ffea00;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  animation: pulse 3s infinite;
}

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

body:hover .cursor-glow {
  animation: followCursor 0.1s linear infinite;
}

.nav-3d {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 245, 255, 0.1);
}

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

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--accent-cyan);
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
  transition: all 0.3s ease;
}

.nav-logo:hover {
  transform: translateY(-2px);
  text-shadow: 0 0 30px rgba(0, 245, 255, 0.8);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0f 0%, #13131a 100%);
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border: 2px solid;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 200px;
  height: 200px;
  border-color: var(--accent-cyan);
  top: 10%;
  left: 10%;
  transform-style: preserve-3d;
  animation: float 15s infinite ease-in-out, rotate3d 20s infinite linear;
}

.shape-2 {
  width: 150px;
  height: 150px;
  border-color: var(--accent-pink);
  border-radius: 50%;
  top: 60%;
  right: 15%;
  animation: float 12s infinite ease-in-out 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  border-color: var(--accent-green);
  bottom: 20%;
  left: 20%;
  transform: rotate(45deg);
  animation: float 18s infinite ease-in-out 4s, spin 10s infinite linear;
}

.shape-4 {
  width: 180px;
  height: 180px;
  border-color: var(--accent-yellow);
  top: 30%;
  right: 25%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: float 14s infinite ease-in-out 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-30px) translateX(20px); }
  50% { transform: translateY(-60px) translateX(-20px); }
  75% { transform: translateY(-30px) translateX(20px); }
}

@keyframes rotate3d {
  from { transform: rotateY(0deg) rotateX(0deg); }
  to { transform: rotateY(360deg) rotateX(360deg); }
}

@keyframes spin {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}

.hero-content {
  text-align: center;
  z-index: 10;
  max-width: 900px;
  padding: 2rem;
}

.glitch-wrapper {
  margin-bottom: 2rem;
}

.glitch {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
  animation: glitch-skew 3s infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  opacity: 0.8;
}

.glitch::before {
  animation: glitch-anim 2.5s infinite;
  color: var(--accent-cyan);
  z-index: -1;
}

.glitch::after {
  animation: glitch-anim 2s infinite reverse;
  color: var(--accent-pink);
  z-index: -2;
}

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

@keyframes glitch-skew {
  0% { transform: skew(0deg); }
  10% { transform: skew(-2deg); }
  20% { transform: skew(2deg); }
  30% { transform: skew(0deg); }
  100% { transform: skew(0deg); }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  letter-spacing: 2px;
}

.btn-3d {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

.btn-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-cyan));
  border-radius: 50px;
  transform: translateZ(-10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-3d:hover {
  transform: translateY(-5px) translateZ(10px);
  box-shadow: 0 20px 40px rgba(0, 245, 255, 0.5);
}

.btn-3d:active {
  transform: translateY(-2px) translateZ(5px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--accent-cyan);
  border-radius: 20px;
  position: relative;
  animation: mouseFloat 2s infinite;
}

.wheel {
  width: 4px;
  height: 10px;
  background: var(--accent-cyan);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 2s infinite;
}

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

@keyframes wheelScroll {
  0% { top: 10px; opacity: 1; }
  100% { top: 30px; opacity: 0; }
}

section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink));
  margin: 0 auto;
  border-radius: 2px;
  animation: expandLine 2s ease-in-out infinite alternate;
}

@keyframes expandLine {
  from { width: 100px; }
  to { width: 150px; }
}

.about {
  background: var(--bg-secondary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cube-container {
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.cube {
  width: 200px;
  height: 200px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 15s infinite linear;
}

.cube-face {
  position: absolute;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  background: rgba(0, 245, 255, 0.1);
  border: 2px solid var(--accent-cyan);
  backdrop-filter: blur(5px);
}

.cube-face.front {
  transform: translateZ(100px);
  background: rgba(0, 245, 255, 0.15);
}

.cube-face.back {
  transform: translateZ(-100px) rotateY(180deg);
  background: rgba(255, 0, 110, 0.15);
  border-color: var(--accent-pink);
}

.cube-face.right {
  transform: rotateY(90deg) translateZ(100px);
  background: rgba(0, 255, 159, 0.15);
  border-color: var(--accent-green);
}

.cube-face.left {
  transform: rotateY(-90deg) translateZ(100px);
  background: rgba(255, 234, 0, 0.15);
  border-color: var(--accent-yellow);
}

.cube-face.top {
  transform: rotateX(90deg) translateZ(100px);
  background: rgba(0, 245, 255, 0.15);
  border-color: var(--accent-cyan);
}

.cube-face.bottom {
  transform: rotateX(-90deg) translateZ(100px);
  background: rgba(255, 0, 110, 0.15);
  border-color: var(--accent-pink);
}

@keyframes rotateCube {
  from { transform: rotateX(0deg) rotateY(0deg); }
  to { transform: rotateX(360deg) rotateY(360deg); }
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.exp-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 245, 255, 0.05);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.exp-item:hover {
  transform: translateY(-10px) rotateX(5deg);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 30px rgba(0, 245, 255, 0.2);
}

.exp-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-cyan);
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.exp-label {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.tech-orbit {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.orbit-center {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

.orbit-ring {
  position: absolute;
  border: 2px solid rgba(0, 245, 255, 0.2);
  border-radius: 50%;
  animation: orbitRotate 20s linear infinite;
}

.ring-1 {
  width: 200px;
  height: 200px;
}

.ring-2 {
  width: 280px;
  height: 280px;
  animation-duration: 15s;
}

.orbit-item {
  position: absolute;
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--accent-cyan);
  border-radius: 20px;
  font-size: 0.9rem;
  white-space: nowrap;
  transform-origin: center;
}

.ring-1 .item-1 { top: -10px; left: 50%; transform: translateX(-50%); }
.ring-1 .item-2 { bottom: -10px; left: 50%; transform: translateX(-50%); }
.ring-1 .item-3 { top: 50%; right: -20px; transform: translateY(-50%); }

.ring-2 .item-4 { top: 20px; right: 20px; }
.ring-2 .item-5 { bottom: 20px; right: 20px; }
.ring-2 .item-6 { top: 50%; left: -30px; transform: translateY(-50%); }

@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.experience {
  background: var(--bg-primary);
  position: relative;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg,
    var(--accent-cyan) 0%,
    var(--accent-pink) 50%,
    var(--accent-green) 100%);
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.timeline-item {
  display: flex;
  position: relative;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out both;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

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

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  z-index: 10;
}

.marker-ring {
  width: 40px;
  height: 40px;
  border: 3px solid var(--accent-cyan);
  border-radius: 50%;
  background: var(--bg-primary);
  position: relative;
  animation: pulseRing 2s infinite;
}

.marker-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.8);
}

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

.timeline-content {
  width: calc(50% - 40px);
}

.timeline-item:nth-child(odd) .timeline-content {
  padding-right: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
  padding-left: 60px;
}

.timeline-card {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 245, 255, 0.2);
  position: relative;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 30px;
  height: 3px;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.timeline-item:nth-child(odd) .timeline-card::before {
  right: -30px;
}

.timeline-item:nth-child(even) .timeline-card::before {
  left: -30px;
}

.timeline-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2);
}

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

.card-header h3 {
  font-size: 1.5rem;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.company {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.timeline-period {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 245, 255, 0.1);
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
}

.timeline-description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.timeline-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-badge {
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 110, 0.1));
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: 15px;
  font-size: 0.85rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.tech-badge:hover {
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(255, 0, 110, 0.2));
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 245, 255, 0.2);
}

.work {
  background: var(--bg-secondary);
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.project-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}

.project-card:hover {
  transform: translateY(-15px) rotateX(5deg);
}

.project-image-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.project-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.project-2 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.project-3 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.project-4 {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.project-card:hover .project-image {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  padding: 2rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.project-card:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-cyan);
}

.overlay-content p {
  color: var(--text-secondary);
}

.project-info {
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-top: 2px solid rgba(0, 245, 255, 0.2);
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  padding: 0.4rem 0.8rem;
  background: rgba(0, 245, 255, 0.1);
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--accent-cyan);
}

.contact {
  background: var(--bg-primary);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pyramid-container {
  perspective: 1000px;
  display: flex;
  justify-content: center;
  height: 300px;
}

.pyramid {
  width: 200px;
  height: 200px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotatePyramid 10s infinite linear;
}

.pyramid-face {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.pyramid-front {
  border-width: 0 100px 173px 100px;
  border-color: transparent transparent rgba(0, 245, 255, 0.3) transparent;
  transform: rotateX(-30deg) translateZ(50px);
}

.pyramid-back {
  border-width: 0 100px 173px 100px;
  border-color: transparent transparent rgba(255, 0, 110, 0.3) transparent;
  transform: rotateX(-30deg) rotateY(180deg) translateZ(50px);
}

.pyramid-left {
  border-width: 0 100px 173px 100px;
  border-color: transparent transparent rgba(0, 255, 159, 0.3) transparent;
  transform: rotateX(-30deg) rotateY(-90deg) translateZ(50px);
}

.pyramid-right {
  border-width: 0 100px 173px 100px;
  border-color: transparent transparent rgba(255, 234, 0, 0.3) transparent;
  transform: rotateX(-30deg) rotateY(90deg) translateZ(50px);
}

@keyframes rotatePyramid {
  from { transform: rotateY(0deg) rotateX(20deg); }
  to { transform: rotateY(360deg) rotateX(20deg); }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  background: rgba(0, 245, 255, 0.05);
  border-left: 3px solid var(--accent-cyan);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(0, 245, 255, 0.1);
  transform: translateX(10px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.contact-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.social-link {
  text-decoration: none;
  perspective: 1000px;
}

.social-cube {
  width: 100%;
  height: 100px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.social-link:hover .social-cube {
  transform: rotateX(180deg);
}

.social-face {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  border: 2px solid var(--accent-cyan);
  border-radius: 10px;
  backface-visibility: hidden;
}

.social-face.front {
  background: rgba(0, 245, 255, 0.1);
  color: var(--accent-cyan);
}

.social-face.back {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  transform: rotateX(180deg);
}

.footer {
  background: var(--bg-primary);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(0, 245, 255, 0.1);
}

.footer-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@media (max-width: 968px) {
  .nav-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .social-links {
    grid-template-columns: 1fr;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: column !important;
  }

  .timeline-marker {
    left: 30px;
    transform: translateX(0);
  }

  .timeline-content {
    width: 100%;
    padding-left: 80px !important;
    padding-right: 0 !important;
  }

  .timeline-card::before {
    left: -50px !important;
    right: auto !important;
  }
}

@media (max-width: 640px) {
  .hero-subtitle {
    font-size: 1rem;
  }

  .cube-container,
  .pyramid-container {
    height: 250px;
  }

  .cube {
    width: 150px;
    height: 150px;
  }

  .cube-face {
    width: 150px;
    height: 150px;
    font-size: 1rem;
  }

  .cube-face.front,
  .cube-face.back,
  .cube-face.right,
  .cube-face.left {
    transform: translateZ(75px);
  }

  .cube-face.right {
    transform: rotateY(90deg) translateZ(75px);
  }

  .cube-face.left {
    transform: rotateY(-90deg) translateZ(75px);
  }

  .cube-face.top {
    transform: rotateX(90deg) translateZ(75px);
  }

  .cube-face.bottom {
    transform: rotateX(-90deg) translateZ(75px);
  }

  .tech-orbit {
    height: 250px;
  }

  .orbit-center {
    width: 80px;
    height: 80px;
    font-size: 0.9rem;
  }

  .ring-1 {
    width: 160px;
    height: 160px;
  }

  .ring-2 {
    width: 220px;
    height: 220px;
  }

  .orbit-item {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}
