/* ==========================================
   ERKINOV G'OLIB - PORTFOLIO DESIGN SYSTEM
   Modern, Minimal, Professional
   ========================================== */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800&display=swap');

/* === CSS VARIABLES / DESIGN TOKENS === */
:root {
  /* Colors - Light Mode - Enhanced & Vibrant */
  --primary: hsl(230, 100%, 65%);
  --primary-color: var(--primary);
  --primary-dark: hsl(230, 90%, 55%);
  --primary-light: hsl(230, 100%, 75%);
  
  --secondary: hsl(280, 85%, 65%);
  --secondary-dark: hsl(280, 80%, 55%);
  
  --accent: hsl(330, 95%, 65%);
  --accent-dark: hsl(330, 90%, 55%);
  
  --success: hsl(150, 80%, 45%);
  --warning: hsl(45, 100%, 55%);
  --error: hsl(0, 85%, 60%);
  
  /* Backgrounds */
  --bg-primary: hsl(0, 0%, 100%);
  --bg-secondary: hsl(220, 14%, 96%);
  --bg-tertiary: hsl(220, 14%, 92%);
  --bg-hover: hsl(220, 14%, 94%);
  
  /* Text */
  --text-primary: hsl(220, 13%, 18%);
  --text-secondary: hsl(220, 9%, 46%);
  --text-tertiary: hsl(220, 9%, 66%);
  --text-inverse: hsl(0, 0%, 100%);
  
  /* Borders */
  --border-color: hsl(220, 13%, 91%);
  --border-hover: hsl(220, 13%, 85%);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
  
  --font-size-xs: 0.75rem;      /* 12px */
  --font-size-sm: 0.875rem;     /* 14px */
  --font-size-base: 1rem;       /* 16px */
  --font-size-lg: 1.125rem;     /* 18px */
  --font-size-xl: 1.25rem;      /* 20px */
  --font-size-2xl: 1.5rem;      /* 24px */
  --font-size-3xl: 1.875rem;    /* 30px */
  --font-size-4xl: 2.25rem;     /* 36px */
  --font-size-5xl: 3rem;        /* 48px */
  --font-size-6xl: 3.75rem;     /* 60px */
  
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 800;
  
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  /* Spacing */
  --spacing-xs: 0.5rem;    /* 8px */
  --spacing-sm: 1rem;      /* 16px */
  --spacing-md: 1.5rem;    /* 24px */
  --spacing-lg: 2rem;      /* 32px */
  --spacing-xl: 3rem;      /* 48px */
  --spacing-2xl: 4rem;     /* 64px */
  --spacing-3xl: 6rem;     /* 96px */
  --spacing-4xl: 8rem;     /* 128px */
  
  /* Effects */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.20);
  
  --shadow-colored: 0 8px 32px rgba(59, 130, 246, 0.3);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1100;
  --z-fixed: 1200;
  --z-modal: 1300;
  --z-popover: 1400;
  --z-tooltip: 1500;
  
  /* Gradient Backgrounds */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  --gradient-hero: linear-gradient(135deg, 
    var(--primary) 0%, 
    var(--secondary) 50%, 
    var(--accent) 100%
  );
  
  /* Glassmorphism Defaults */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* === DARK MODE === */
[data-theme="dark"] {
  /* Dark Mode Colors - Futuristic & Deep */
  --bg-primary: #020617; /* Very deep slate/black */
  --primary-color: var(--primary);
  --bg-secondary: rgba(30, 41, 59, 0.4);
  --bg-tertiary: rgba(51, 65, 85, 0.5);
  --bg-hover: rgba(71, 85, 105, 0.6);
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-tertiary: #94a3b8;
  
  --border-color: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.2);
  
  --glass-bg: rgba(15, 23, 42, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .navbar,
[data-theme="dark"] .card,
[data-theme="dark"] .nav-link,
[data-theme="dark"] .btn-secondary,
[data-theme="dark"] .skill-card,
[data-theme="dark"] .project-card {
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

/* === NATURE / ECO THEME (LIGHT & VIBRANT) === */
[data-theme="nature"] {
  /* Fresh Lime & Soft Yellow Palette */
  --primary: #84cc16; /* Vibrant Lime */
  --primary-color: var(--primary);
  --primary-dark: #65a30d;
  --primary-light: #bef264;
  
  --secondary: #eab308; /* Golden Yellow */
  --secondary-dark: #ca8a04;
  
  --accent: #d97706;
  
  --bg-primary: #f7fee7; /* Very Light Lime Background */
  --bg-secondary: #ecfccb;
  --bg-tertiary: #d9f99d;
  --bg-hover: #bef264;
  
  --text-primary: #1a2e05; /* Deep Olive Green for readability */
  --text-secondary: #365314;
  --text-tertiary: #4d7c0f;
  
  --border-color: #d9f99d;
  --border-hover: #bef264;
  
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(132, 204, 22, 0.2);
  
  --gradient-primary: linear-gradient(135deg, #bef264 0%, #fde047 100%);
}

[data-theme="nature"] .navbar,
[data-theme="nature"] .card,
[data-theme="nature"] .nav-link,
[data-theme="nature"] .skill-card,
[data-theme="nature"] .project-card,
[data-theme="nature"] .ai-chat-window {
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 rgba(132, 204, 22, 0.1);
  color: var(--text-primary);
}

[data-theme="nature"] .hero-title,
[data-theme="nature"] .section-title,
[data-theme="nature"] .footer-brand {
  color: #365314;
  text-shadow: none;
}

[data-theme="nature"] .hero-subtitle {
  color: #4d7c0f;
}

[data-theme="nature"] .nav-link {
  color: #365314;
}

[data-theme="nature"] .nav-link:hover,
[data-theme="nature"] .nav-link.active {
  color: #84cc16;
}

/* === NATURE THEME SPECIFIC STYLES === */
[data-theme="nature"] {
  --bg-primary: #042f2e; /* Very dark teal/green */
  --bg-secondary: rgba(6, 78, 59, 0.4);
  --bg-tertiary: rgba(6, 95, 70, 0.5);
  
  --text-primary: #fbbf24; /* Yellow text */
  --text-secondary: #fcd34d;
  
  --border-color: rgba(251, 191, 36, 0.3);
  
  --glass-bg: rgba(6, 78, 59, 0.3);
  --glass-border: rgba(251, 191, 36, 0.4);
}

[data-theme="nature"] .card, 
[data-theme="nature"] .nav-link,
[data-theme="nature"] .btn-secondary {
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

[data-theme="nature"] h1, 
[data-theme="nature"] h2, 
[data-theme="nature"] h3,
[data-theme="nature"] .text-gradient {
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

[data-theme="nature"] .sun-icon,
[data-theme="nature"] .moon-icon,
[data-theme="nature"] .nature-icon {
  color: #fbbf24;
}

/* === RESET & BASE STYLES === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: background-color var(--transition-base), color var(--transition-base);
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-black);
}

h2 {
  font-size: var(--font-size-4xl);
}

h3 {
  font-size: var(--font-size-3xl);
}

h4 {
  font-size: var(--font-size-2xl);
}

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

/* === UTILITY CLASSES === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.container-narrow {
  max-width: 800px;
}

.section {
  padding: var(--spacing-4xl) 0;
}

.section-sm {
  padding: var(--spacing-2xl) 0;
}

.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  font-family: var(--font-display);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-inverse);
  box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-hover);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
}

.btn-ghost:hover {
  background: var(--bg-secondary);
}

/* === CARDS === */
.card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.card-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .card-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fadeInRight {
  animation: fadeInRight 0.8s ease-out forwards;
}

/* Scroll Animation Classes */
.scroll-animate {
  opacity: 0;
}

.scroll-animate.animate {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  :root {
    --font-size-6xl: 3rem;
    --font-size-5xl: 2.5rem;
    --font-size-4xl: 2rem;
  }
  
  .container {
    padding: 0 var(--spacing-md);
  }
  
  .section {
    padding: var(--spacing-3xl) 0;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-6xl: 2.5rem;
    --font-size-5xl: 2rem;
    --font-size-4xl: 1.75rem;
    --font-size-3xl: 1.5rem;
  }
  
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .section {
    padding: var(--spacing-2xl) 0;
  }
  
  .btn {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: var(--font-size-sm);
  }
}

/* === FOCUS STYLES === */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* === SELECTION === */
::selection {
  background: var(--primary);
  color: var(--text-inverse);
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius-full);
}




/* === RAMADAN FEATURE === */
/* Restored Button Styles - Unhide and Style */
.btn-ramadan {
  display: inline-flex; /* Ensure it is visible */
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: white;
  border: 1px solid #f59e0b;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  position: relative;
  overflow: hidden;
  font-weight: 700;
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.btn-ramadan:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-ramadan svg {
  margin-right: 0.5rem;
  width: 20px;
  height: 20px;
}

/* Remove Floating Trigger Styles */
.ramadan-floating-trigger, .trigger-glow {
  display: none;
}

/* Modal Styles */
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Outfit:wght@300;400;600;800&display=swap');

/* Modal Styles */
.ramadan-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 9, 20, 0.96); 
  backdrop-filter: blur(15px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem;
}

.ramadan-modal.active {
  display: flex;
  opacity: 1;
}

.ramadan-modal-content {
  background: linear-gradient(180deg, #050a18 0%, #110d35 100%);
  padding: 0;
  border-radius: 35px;
  text-align: center;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 0 100px rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.1);
  transform: scale(0.92) translateY(20px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 560px;
}

.ramadan-modal.active .ramadan-modal-content {
  transform: scale(1) translateY(0);
}

.ramadan-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.ramadan-close:hover {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.3);
  transform: rotate(90deg);
}

/* Greeting View - Vertical & Poetic */
.ramadan-view {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  animation: fadeIn 0.8s ease;
}

.greeting-content {
  padding: 3.5rem 2.5rem 1rem 2.5rem;
  flex: 1; 
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ramadan-decoration {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fbbf24;
  letter-spacing: 5px;
  opacity: 0.8;
}

.ramadan-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(to bottom, #fde68a, #fbbf24, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  line-height: 1;
  letter-spacing: -1px;
}

.ramadan-message-wrapper {
  max-width: 90%;
  position: relative;
}

.ramadan-message-text {
  font-family: 'Amiri', serif;
  font-size: 1.35rem;
  line-height: 1.8;
  color: #f1f5f9;
  text-align: center;
  font-weight: 400;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.ramadan-message-text strong {
  color: #fbbf24;
  font-weight: 700;
}

/* Interactive Footer - Small & Shiny */
.ramadan-interactive-footer {
  width: 100%;
  padding: 1.5rem 0 2rem 0;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to top, rgba(251, 191, 36, 0.05), transparent);
}

.click-hint-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ramadan-trigger-wrapper {
  position: relative;
  width: 70px; /* Even smaller as requested */
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  border-radius: 50%; /* Circle for better focus */
  background: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.ramadan-trigger-wrapper:hover {
  transform: scale(1.2);
  background: rgba(251, 191, 36, 0.1);
}

.hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: scale(1.1);
}

.hero-slider-img.active {
  opacity: 1;
  transform: scale(1);
  position: relative;
}

.ramadan-trigger-img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
  z-index: 5;
  animation: lantern-float 3s ease-in-out infinite;
}

@keyframes lantern-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.trigger-shine-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right, 
    transparent, 
    rgba(255, 255, 255, 0.6), 
    transparent
  );
  transform: skewX(-25deg);
  animation: trigger-shine 2.5s infinite;
  z-index: 6;
}

@keyframes trigger-shine {
  0% { left: -150%; }
  30% { left: 150%; }
  100% { left: 150%; }
}

/* Greeting Layout Refinements */
.ramadan-view.vertical-layout {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  gap: 2rem;
}

.ramadan-decorative-footer {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Custom Share Menu Grid */
.share-menu-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeIn 0.4s ease-out;
  max-width: 400px;
  margin: 0 auto;
}

.share-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease;
  color: white;
  width: 70px;
}

.share-item:hover {
  transform: translateY(-5px);
}

.share-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.share-icon svg {
  width: 25px;
  height: 25px;
}

.share-item span {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.8;
}

/* Platform Colors */
.share-item.telegram .share-icon {
  background: #229ED9;
  box-shadow: 0 4px 15px rgba(34, 158, 217, 0.4);
}

.share-item.whatsapp .share-icon {
  background: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.share-item.copy .share-icon {
  background: #6366f1;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.share-item:hover .share-icon {
  filter: brightness(1.2);
  transform: scale(1.1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-ramadan-share {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #020617;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.btn-ramadan-share:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.6);
  filter: brightness(1.1);
}

.btn-ramadan-share:active {
  transform: translateY(0) scale(0.98);
}

/* Victory Screen styles are no longer needed, removing them */
/* All game specific styles (stars, planets, telescope) are removed */

/* Victory Screen */
.ramadan-victory {
  padding: 3rem;
  color: white;
  animation: fadeIn 1s ease;
}

.ramadan-decoration {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.ramadan-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.ramadan-message {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.ramadan-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fbbf24;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: sparkleAnim 1.5s linear forwards;
}

@keyframes sparkleAnim {
  0% { transform: scale(0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
