/* src/client/styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  line-height: 1.6;
  color: #e2e8f0;
  background:
    linear-gradient(
      135deg,
      #0f1419 0%,
      #1a202c 100%);
  overflow-x: hidden;
}
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      135deg,
      #0f1419 0%,
      #1a202c 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(59, 130, 246, 0.3);
  border-top: 3px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-screen p {
  color: #94a3b8;
  font-size: 1rem;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.portfolio {
  width: 100%;
  overflow-x: hidden;
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 20, 25, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.1);
  transition: all 0.3s ease;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  background:
    linear-gradient(
      135deg,
      #3b82f6,
      #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: #cbd5e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a:hover {
  color: #3b82f6;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background:
    linear-gradient(
      135deg,
      #3b82f6,
      #8b5cf6);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 2rem;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%);
  pointer-events: none;
}
.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0;
}
.hero-text {
  max-width: 100%;
  word-wrap: break-word;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
  word-wrap: break-word;
}
.wave {
  display: inline-block;
  animation: wave 2s infinite;
  transform-origin: 70% 70%;
  margin-right: 0.5rem;
}
@keyframes wave {
  0%, 100% {
    transform: rotate(0deg);
  }
  10%, 30% {
    transform: rotate(-10deg);
  }
  20% {
    transform: rotate(12deg);
  }
  40% {
    transform: rotate(-4deg);
  }
}
.highlight {
  background:
    linear-gradient(
      135deg,
      #3b82f6,
      #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: #64748b;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.hero-description {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #94a3b8;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 100%;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.btn-primary {
  background:
    linear-gradient(
      135deg,
      #3b82f6,
      #8b5cf6);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}
.btn-secondary {
  background: transparent;
  color: #e2e8f0;
  border: 2px solid #334155;
}
.btn-secondary:hover {
  border-color: #3b82f6;
  color: #3b82f6;
  transform: translateY(-2px);
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.globe-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.globe-canvas {
  width: 100% !important;
  height: 100% !important;
  max-width: 500px;
  max-height: 500px;
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(59, 130, 246, 0.2);
}
.globe-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(15, 20, 25, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
  z-index: 10;
}
.visitor-count {
  text-align: center;
}
.count {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #3b82f6;
  line-height: 1;
}
.label {
  font-size: 0.875rem;
  color: #94a3b8;
  white-space: nowrap;
}
section {
  padding: 5rem 0;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background:
    linear-gradient(
      135deg,
      #3b82f6,
      #8b5cf6);
  border-radius: 2px;
}
.about {
  background: rgba(26, 32, 44, 0.5);
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.about-text p {
  font-size: 1.1rem;
  color: #cbd5e0;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.stat {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: transform 0.3s ease;
}
.stat:hover {
  transform: translateY(-5px);
}
.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #3b82f6;
  line-height: 1;
}
.stat-label {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.skills {
  background:
    linear-gradient(
      135deg,
      rgba(26, 32, 44, 0.3) 0%,
      rgba(15, 20, 25, 0.8) 100%);
  position: relative;
  overflow: hidden;
}
.skills::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 50%),
    radial-gradient(
      circle at 80% 20%,
      rgba(139, 92, 246, 0.05) 0%,
      transparent 50%);
  pointer-events: none;
}
.skills-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.skill-category {
  background: rgba(15, 20, 25, 0.8);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}
.skill-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background:
    linear-gradient(
      90deg,
      #3b82f6,
      #8b5cf6,
      #06b6d4);
  border-radius: 1.5rem 1.5rem 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.skill-category:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}
.skill-category:hover::before {
  opacity: 1;
}
.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}
.category-icon {
  font-size: 2rem;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background:
    linear-gradient(
      135deg,
      rgba(59, 130, 246, 0.2),
      rgba(139, 92, 246, 0.2));
  border-radius: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0;
  background:
    linear-gradient(
      135deg,
      #3b82f6,
      #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.category-skills {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.skill-item {
  padding: 1rem 1.5rem;
  background: rgba(26, 32, 44, 0.6);
  border-radius: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.08);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
}
.skill-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      135deg,
      rgba(59, 130, 246, 0.03),
      rgba(139, 92, 246, 0.03));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.skill-item:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.05);
}
.skill-item:hover::before {
  opacity: 1;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.skill-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.skill-name {
  font-weight: 600;
  color: #e2e8f0;
  font-size: 0.95rem;
}
.skill-level {
  color: #3b82f6;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.25rem 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.skill-bar {
  height: 6px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.skill-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      90deg,
      rgba(59, 130, 246, 0.1) 0%,
      rgba(59, 130, 246, 0.05) 50%,
      rgba(59, 130, 246, 0.1) 100%);
  animation: shimmer 2s ease-in-out infinite;
  opacity: 0.5;
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.skill-progress {
  height: 100%;
  background:
    linear-gradient(
      135deg,
      #3b82f6,
      #8b5cf6,
      #06b6d4);
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fillBar 2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.skill-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.2) 50%,
      transparent 100%);
  animation: progressShine 2s ease-in-out infinite;
}
@keyframes fillBar {
  from {
    width: 0;
  }
}
@keyframes progressShine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.projects {
  background: rgba(26, 32, 44, 0.5);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.project-card {
  background: rgba(15, 20, 25, 0.8);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}
.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}
.project-status {
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.status-live {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.status-in-development {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}
.status-completed {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.project-description {
  color: #cbd5e0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.tech-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.project-links {
  display: flex;
  gap: 1rem;
}
.project-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.project-link:hover {
  color: #8b5cf6;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-info h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
.contact-info p {
  color: #cbd5e0;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(26, 32, 44, 0.5);
  border-radius: 0.75rem;
  color: #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.1);
}
.contact-method:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateX(5px);
}
.contact-icon {
  font-size: 1.5rem;
}
.contact-form {
  background: rgba(26, 32, 44, 0.5);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.1);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
  font-weight: 600;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(15, 20, 25, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 0.5rem;
  color: #e2e8f0;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-message {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  animation: slideIn 0.3s ease;
}
.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}
.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}
.message-icon {
  font-size: 1.2rem;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.loading-spinner-small {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 0.5rem;
}
.form-group input:disabled,
.form-group textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.field-error {
  display: block;
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  margin-left: 0.5rem;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
.btn:disabled:hover {
  transform: none !important;
}
.footer {
  background:
    linear-gradient(
      135deg,
      #0f1419 0%,
      #1a202c 50%,
      #2d3748 100%);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      #3b82f6,
      #8b5cf6,
      transparent);
}
.footer::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -50%;
  width: 200%;
  height: 100px;
  background:
    radial-gradient(
      ellipse at center,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 70%);
  animation: footerGlow 8s ease-in-out infinite;
}
@keyframes footerGlow {
  0%, 100% {
    transform: translateX(-25%);
    opacity: 0.3;
  }
  50% {
    transform: translateX(25%);
    opacity: 0.6;
  }
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.logo-icon {
  font-size: 2rem;
  animation: brainPulse 3s ease-in-out infinite;
}
@keyframes brainPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
}
.logo-text {
  font-size: 2rem;
  font-weight: 800;
  background:
    linear-gradient(
      135deg,
      #3b82f6,
      #8b5cf6,
      #06d6a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.footer-tagline {
  color: #94a3b8;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  position: relative;
}
.footer-tagline::before {
  content: '"';
  color: #3b82f6;
  font-size: 1.5rem;
  position: absolute;
  left: -15px;
  top: -5px;
}
.footer-tagline::after {
  content: '"';
  color: #3b82f6;
  font-size: 1.5rem;
  position: absolute;
  right: -15px;
  bottom: -15px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-section h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background:
    linear-gradient(
      135deg,
      #3b82f6,
      #8b5cf6);
  border-radius: 1px;
}
.footer-section a {
  display: block;
  color: #cbd5e0;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}
.footer-section a::before {
  content: "\2192";
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: #3b82f6;
}
.footer-section a:hover {
  color: #3b82f6;
  transform: translateX(5px);
}
.footer-section a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.fun-fact {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 20px;
  transition: color 0.3s ease;
}
.fun-fact:hover {
  color: #cbd5e0;
}
.footer-divider {
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(59, 130, 246, 0.3),
      transparent);
  margin: 2rem 0;
  position: relative;
}
.footer-divider::before {
  content: "\26a1";
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  background: #1a202c;
  padding: 0 1rem;
  color: #3b82f6;
  font-size: 1.2rem;
  animation: sparkle 2s ease-in-out infinite;
}
@keyframes sparkle {
  0%, 100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
  }
}
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-copyright p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}
.tech-stack {
  color: #64748b;
  font-size: 0.85rem;
  font-style: italic;
}
.footer-tech {
  text-align: right;
}
.tech-credits {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
}
.tech-credits a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}
.tech-credits a:hover {
  color: #8b5cf6;
}
.tech-credits a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background:
    linear-gradient(
      135deg,
      #3b82f6,
      #8b5cf6);
  transition: width 0.3s ease;
}
.tech-credits a:hover::after {
  width: 100%;
}
.footer-easter-egg {
  text-align: center;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.1);
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}
.footer-easter-egg::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(59, 130, 246, 0.1),
      transparent);
  animation: shine 3s ease-in-out infinite;
}
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.footer-easter-egg p {
  color: #cbd5e0;
  font-size: 0.9rem;
  margin: 0;
  position: relative;
  z-index: 1;
  font-family: "Courier New", monospace;
}
@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  .footer-tech {
    text-align: center;
  }
  .footer-brand,
  .footer-section {
    text-align: center;
  }
  .footer-section a {
    padding-left: 0;
  }
  .footer-section a::before {
    display: none;
  }
  .fun-fact {
    padding-left: 0;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer-logo {
    justify-content: center;
  }
  .logo-text {
    font-size: 1.5rem;
  }
  .logo-icon {
    font-size: 1.5rem;
  }
  .footer-easter-egg {
    padding: 1rem;
  }
  .footer-easter-egg p {
    font-size: 0.8rem;
  }
}
@media (max-width: 1024px) {
  .hero-content {
    gap: 3rem;
  }
  .globe-container {
    max-width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .nav-container {
    padding: 1rem;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 0 1rem;
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 2rem;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-text {
    order: 1;
  }
  .hero-visual {
    order: 2;
  }
  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
  }
  .hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
  .section-title {
    font-size: 2rem;
  }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    justify-content: center;
  }
  .globe-container {
    max-width: 300px;
    height: 300px;
  }
  .globe-overlay {
    top: 10px;
    right: 10px;
    padding: 0.75rem;
  }
  .count {
    font-size: 1.5rem;
  }
  .label {
    font-size: 0.75rem;
  }
  .skill-item,
  .project-card {
    margin: 0 1rem;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 0 0.5rem;
    padding-top: 5rem;
  }
  .hero-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 0.75rem;
  }
  .hero-subtitle {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    margin-bottom: 1rem;
  }
  .hero-description {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    margin-bottom: 1.5rem;
  }
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  .globe-container {
    max-width: 250px;
    height: 250px;
  }
  .globe-overlay {
    top: 5px;
    right: 5px;
    padding: 0.5rem;
  }
  .count {
    font-size: 1.25rem;
  }
  .label {
    font-size: 0.7rem;
  }
  .projects-grid,
  .skills-categories {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .skill-category {
    padding: 1.5rem;
  }
  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .category-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .wave {
    margin-right: 0.25rem;
  }
}
@media (max-width: 480px) {
  .skills-categories {
    gap: 1rem;
  }
  .skill-category {
    padding: 1rem;
    border-radius: 1rem;
  }
  .category-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }
  .category-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }
  .category-title {
    font-size: 1.1rem;
  }
  .skill-item {
    padding: 0.75rem 1rem;
  }
  .skill-name {
    font-size: 0.9rem;
  }
  .skill-level {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
  }
}
/*# sourceMappingURL=index.css.map */
