/* ===========================
   PREMIUM PORTFOLIO 2026
   Cinematic Developer Experience
   =========================== */

:root {
  /* Dark Theme Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: rgba(20, 20, 20, 0.8);
  
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;

  /* Accent Colors - Premium Gradient */
  --accent-primary: #6366f1;
  --accent-secondary: #8b5cf6;
  --accent-tertiary: #ec4899;
  --accent-success: #10b981;
  --accent-warning: #f59e0b;

  /* Gradients */
  --gradient-main: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
  --gradient-text: linear-gradient(90deg, #ffffff 0%, #a0a0a0 100%);

  /* Effects */
  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.02);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.3);
  
  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Light Theme */
body.light-mode {
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  --bg-tertiary: #e5e5e5;
  --bg-card: rgba(255, 255, 255, 0.8);
  
  --text-primary: #0a0a0a;
  --text-secondary: #4a4a4a;
  --text-muted: #888888;
  
  --glass-border: 1px solid rgba(0, 0, 0, 0.08);
  --glass-bg: rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ===========================
   BASE STYLES
   =========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  cursor: none;
}

body.light-mode {
  cursor: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===========================
   CUSTOM CURSOR
   =========================== */

.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.15s ease, opacity 0.15s ease;
  opacity: 0;
}

.cursor-glow {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.3s ease;
  opacity: 0;
  mix-blend-mode: screen;
}

body:not(.light-mode) .custom-cursor,
body:not(.light-mode) .cursor-glow {
  opacity: 1;
}

.custom-cursor.hover {
  transform: scale(1.5);
  border-color: var(--accent-tertiary);
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: var(--glass-border);
  padding: 1.2rem 0;
  transition: all var(--transition-normal);
}

body.light-mode .header {
  background: rgba(255, 255, 255, 0.7);
}

.header.scrolled {
  padding: 0.8rem 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo a {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: transform var(--transition-fast);
}

.logo a:hover {
  transform: translateY(-2px);
}

.logo-bracket {
  color: var(--accent-primary);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-btn:hover {
  background: var(--glass-bg);
  border-color: var(--accent-primary);
  transform: rotate(180deg);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-normal);
}

/* ===========================
   FLOATING STATUS BADGE
   =========================== */

.floating-status {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: var(--glass-border);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  animation: floatIn 0.6s ease-out;
}

@keyframes floatIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.status-pulse {
  width: 10px;
  height: 10px;
  background: var(--accent-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
}

.status-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ===========================
   HERO SECTION
   =========================== */

.home-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.home-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--gradient-main);
  top: -10%;
  right: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--gradient-secondary);
  bottom: -10%;
  left: -10%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-50px, 50px) scale(0.9);
  }
}

.home-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.home-content {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 50px;
  color: var(--accent-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: slideInLeft 0.6s ease-out 0.2s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.greeting {
  font-size: 1.5rem;
  color: var(--text-secondary);
  font-weight: 500;
  animation: fadeIn 0.6s ease-out 0.3s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.name-wrapper {
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.highlight-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.terminal-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 2.5rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  animation: slideInLeft 0.8s ease-out 0.6s both;
}

.terminal-cursor {
  color: var(--accent-primary);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-description {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 600px;
  animation: fadeIn 0.8s ease-out 0.8s both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  animation: fadeIn 0.8s ease-out 1s both;
}

.stat-badge {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  animation: fadeIn 0.8s ease-out 1.2s both;
}

.btn {
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-normal);
  cursor: pointer;
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  border: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--text-secondary);
  color: var(--text-primary);
}

.btn-secondary:hover {
  border-color: var(--accent-primary);
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

.btn-linkedin {
  background: #0077b5;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 119, 181, 0.3);
}

.btn-linkedin:hover {
  background: #005885;
  box-shadow: 0 15px 40px rgba(0, 119, 181, 0.4);
}

/* Magnetic Button Effect */
.magnetic-btn {
  position: relative;
}

.btn-hover-text {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.magnetic-btn:hover .btn-hover-text {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  animation: fadeIn 0.8s ease-out 1.4s both;
}

.social-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: var(--glass-border);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 1.3rem;
  transition: all var(--transition-normal);
}

.social-icon:hover {
  background: var(--gradient-main);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

/* ===========================
   HOME VISUAL
   =========================== */

.home-visual {
  position: relative;
  height: 600px;
  animation: fadeIn 0.8s ease-out 0.5s both;
}

.visual-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-md);
  animation: floatCard 6s infinite ease-in-out;
}

.card-1 {
  top: 10%;
  right: 0;
  animation-delay: 0s;
}

.card-2 {
  top: 40%;
  left: 0;
  animation-delay: 2s;
}

.card-3 {
  bottom: 15%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-main);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

.card-label {
  font-weight: 600;
  color: var(--text-primary);
}

.code-window {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  background: var(--bg-secondary);
  border: var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.window-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: var(--glass-border);
}

.window-buttons {
  display: flex;
  gap: 6px;
}

.window-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.window-btn.close { background: #ff5f56; }
.window-btn.minimize { background: #ffbd2e; }
.window-btn.maximize { background: #27c93f; }

.window-title {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

.window-content {
  padding: 1.5rem;
}

.window-content code {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.8;
}

.code-line {
  display: block;
  color: var(--text-secondary);
}

.code-keyword { color: #ff79c6; }
.code-property { color: #50fa7b; }
.code-string { color: #f1fa8c; }

/* ===========================
   SECTIONS
   =========================== */

.section {
  padding: 8rem 2rem;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-primary);
  font-weight: 600;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-main-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.about-heading {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: var(--accent-primary);
}

.about-heading:first-child {
  margin-top: 0;
}

.about-paragraph {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-paragraph strong {
  color: var(--text-primary);
  font-weight: 600;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: var(--glass-border);
}

.highlight-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  transition: all var(--transition-normal);
}

.highlight-box:hover {
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-5px);
}

.highlight-box i {
  font-size: 2rem;
  color: var(--accent-primary);
}

.highlight-box strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.highlight-box span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.stats-showcase {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: #fff;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===========================
   SKILLS SECTION
   =========================== */

.skills-section {
  background: var(--bg-primary);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.skill-category {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all var(--transition-normal);
}

.skill-category:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: var(--accent-primary);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.category-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-main);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

.category-header h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-tag {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
  font-weight: 500;
}

.skill-tag:hover {
  background: rgba(99, 102, 241, 0.2);
  color: var(--accent-primary);
  transform: translateY(-3px);
}

.skill-tag i {
  font-size: 1.1rem;
}

.skills-journey {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.journey-card {
  background: var(--bg-secondary);
  border: var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
}

.journey-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-primary);
}

.journey-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.journey-items span {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.journey-items i {
  color: var(--accent-primary);
}

/* ===========================
   PROJECTS SECTION (MACBOOK STYLE)
   =========================== */

.projects-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.macbook-card {
  position: relative;
  transition: transform var(--transition-normal);
  cursor: pointer;
}

.macbook-card:hover {
  transform: translateY(-10px);
}

.macbook-screen {
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
}

.macbook-card:hover .macbook-screen {
  box-shadow: 0 30px 60px rgba(99, 102, 241, 0.3);
}

.macbook-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.macbook-buttons {
  display: flex;
  gap: 8px;
}

.mac-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.macbook-card:hover .mac-btn {
  transform: scale(1.2);
}

.mac-btn.red { background: #ff5f56; }
.mac-btn.yellow { background: #ffbd2e; }
.mac-btn.green { background: #27c93f; }

.macbook-title {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

.macbook-content {
  height: 250px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.macbook-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.project-visual {
  position: relative;
  z-index: 1;
}

.project-icon-large {
  width: 100px;
  height: 100px;
  background: var(--gradient-main);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.project-details {
  padding: 2rem 0 0;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.project-header h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
}

.project-badges {
  display: flex;
  gap: 12px;
  align-items: center;
}

.live-badge,
.github-badge {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-badge {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-success);
  border: 1px solid var(--accent-success);
}

.github-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.project-link {
  width: 35px;
  height: 35px;
  background: var(--bg-card);
  border: var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.project-link:hover {
  background: var(--gradient-main);
  color: #fff;
  transform: rotate(45deg);
}

.project-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.project-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.project-highlights span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-highlights i {
  color: var(--accent-success);
  font-size: 0.75rem;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.tech-stack span {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
  color: var(--text-secondary);
}

.projects-cta {
  text-align: center;
  padding: 3rem;
  background: var(--bg-card);
  border-radius: 20px;
  border: var(--glass-border);
}

.projects-cta p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ===========================
   CONTACT SECTION
   =========================== */

.contact-section {
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-intro {
  margin-bottom: 3rem;
}

.contact-intro p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-card);
  border: var(--glass-border);
  border-radius: 16px;
  transition: all var(--transition-normal);
}

.contact-method:hover {
  transform: translateX(10px);
  border-color: var(--accent-primary);
}

.method-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-main);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.method-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.method-details a {
  color: var(--accent-primary);
  transition: color var(--transition-fast);
}

.method-details a:hover {
  color: var(--accent-tertiary);
}

.method-note {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.linkedin-cta-box {
  background: linear-gradient(135deg, rgba(0, 119, 181, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
  border: 1px solid rgba(0, 119, 181, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.cta-icon {
  width: 70px;
  height: 70px;
  background: #0077b5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  flex-shrink: 0;
}

.cta-content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.cta-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-form-wrapper {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.form-header {
  margin-bottom: 2.5rem;
}

.form-header h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: var(--accent-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: var(--bg-secondary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

.form-status {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--accent-success);
  color: var(--accent-success);
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: var(--bg-secondary);
  border-top: var(--glass-border);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: var(--glass-border);
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-column a {
  display: block;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.terminal-cursor-small {
  color: var(--accent-primary);
  animation: blink 1s infinite;
}

/* ===========================
   EASTER EGG
   =========================== */

.easter-egg-notification {
  position: fixed;
  top: 100px;
  right: 30px;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: var(--glass-border);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.5s ease;
}

.easter-egg-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.easter-egg-notification i {
  color: var(--accent-success);
  font-size: 1.3rem;
}

.easter-egg-notification span {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1200px) {
  .home-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .home-visual {
    height: 400px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 968px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .terminal-text {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }
  
  .custom-cursor,
  .cursor-glow {
    display: none;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: var(--glass-border);
    z-index: 999;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .terminal-text {
    font-size: 1.5rem;
  }
  
  .hero-stats {
    flex-wrap: wrap;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .home-visual {
    display: none;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
  }
  
  .skills-journey {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 5rem 1.5rem;
  }
  
  .floating-status {
    bottom: 20px;
    right: 20px;
    font-size: 0.75rem;
  }
  
  .linkedin-cta-box {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .macbook-card {
    min-width: 100%;
  }
}

/* ===========================
   POLISHED UI ENHANCEMENTS
   =========================== */

/* Increased Section Spacing */
.section {
  padding: 10rem 2rem !important;
}

/* Larger Headings */
.section-title {
  font-size: 4rem !important;
}

.hero-title {
  font-size: 4.2rem !important;
}

/* Enhanced Card Shadows */
.macbook-screen,
.skill-category-premium,
.stat-card,
.contact-method,
.about-main-card {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6) !important;
}

/* Modern Border Radius */
.macbook-screen {
  border-radius: 18px !important;
}

.skill-category-premium,
.stat-card,
.contact-method {
  border-radius: 24px !important;
}

/* Smoother Hover Transitions */
.btn,
.magnetic-btn,
.project-card,
.macbook-card,
.skill-category-premium,
.stat-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ===========================
   PREMIUM SKILLS SECTION
   =========================== */

.skills-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
}

.skill-category-premium {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-category-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.skill-category-premium:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 80px rgba(99, 102, 241, 0.25), 
              0 0 0 1px rgba(99, 102, 241, 0.3);
  border-color: rgba(99, 102, 241, 0.4);
}

.skill-category-premium:hover::before {
  opacity: 1;
}

.category-header-premium {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.category-icon-premium {
  width: 60px;
  height: 60px;
  background: var(--gradient-main);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.35);
}

.category-header-premium h3 {
  font-size: 1.7rem;
  color: var(--text-primary);
  font-weight: 700;
}

.skill-tags-premium {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-tag-premium {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.25);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.skill-tag-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.15), transparent);
  transition: left 0.5s ease;
}

.skill-tag-premium:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.5);
  color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.skill-tag-premium:hover::before {
  left: 100%;
}

/* GitHub CTA Button */
.github-cta-wrapper {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.github-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--gradient-main);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.35);
  position: relative;
  overflow: hidden;
}

.github-cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.github-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(99, 102, 241, 0.45);
}

.github-cta-btn:hover::before {
  width: 350px;
  height: 350px;
}

.github-cta-btn i:first-child {
  font-size: 1.3rem;
}

.github-cta-btn i:last-child {
  transition: transform 0.3s ease;
}

.github-cta-btn:hover i:last-child {
  transform: translateX(5px);
}

/* ===========================
   AI ASSISTANT
   =========================== */

.ai-assistant-bubble {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 998;
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.45);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: bubbleFloat 3s ease-in-out infinite;
}

@keyframes bubbleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.ai-assistant-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.6);
}

.ai-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  animation: aiPulse 2s ease-out infinite;
}

@keyframes aiPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.ai-assistant-panel {
  position: fixed;
  bottom: 180px;
  right: 30px;
  width: 380px;
  max-height: 550px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: var(--glass-border);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-assistant-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.ai-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: var(--glass-border);
  background: rgba(99, 102, 241, 0.05);
  border-radius: 24px 24px 0 0;
}

.ai-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-header-content i {
  font-size: 1.5rem;
  color: var(--accent-primary);
}

.ai-header-content h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.ai-close-btn {
  width: 35px;
  height: 35px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  transform: rotate(90deg);
}

.ai-panel-messages {
  padding: 1.5rem;
  max-height: 450px;
  overflow-y: auto;
}

.ai-message {
  display: flex;
  gap: 12px;
  margin-bottom: 1.5rem;
  animation: messageSlide 0.4s ease-out;
}

@keyframes messageSlide {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ai-avatar {
  width: 40px;
  height: 40px;
  background: var(--gradient-main);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ai-message-content {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Custom Scrollbar for AI Panel */
.ai-panel-messages::-webkit-scrollbar {
  width: 6px;
}

.ai-panel-messages::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.ai-panel-messages::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: 10px;
}

/* ===========================
   ENHANCED CURSOR
   =========================== */

.custom-cursor {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.custom-cursor.hover {
  transform: scale(2) !important;
  background: rgba(99, 102, 241, 0.2);
  border-color: var(--accent-primary);
}

.cursor-glow {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ===========================
   RESPONSIVE ADJUSTMENTS
   =========================== */

@media (max-width: 1200px) {
  .skills-grid-premium {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 3.5rem !important;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 6rem 1.5rem !important;
  }
  
  .section-title {
    font-size: 2.8rem !important;
  }
  
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .ai-assistant-panel {
    width: calc(100vw - 40px);
    right: 20px;
    bottom: 150px;
  }
  
  .ai-assistant-bubble {
    bottom: 80px;
    right: 20px;
  }
  
  .github-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .skill-category-premium {
    padding: 2rem;
  }
  
  .category-icon-premium {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .category-header-premium h3 {
    font-size: 1.4rem;
  }
}