/* ===== CLIPCRAFT PRO — PREMIUM DARK DESIGN ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

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

:root {
  /* Core palette */
  --red: #FF0000;
  --red-dark: #CC0000;
  --red-light: #FF3B30;
  --red-glow: rgba(255,0,0,0.15);
  --red-soft: rgba(255,0,0,0.08);

  /* Dark surfaces */
  --bg: #0A0A0B;
  --bg-1: #111114;
  --bg-2: #18181C;
  --bg-3: #1E1E24;

  /* Glass layers */
  --glass-1: rgba(255,255,255,0.03);
  --glass-2: rgba(255,255,255,0.06);
  --glass-3: rgba(255,255,255,0.09);
  --glass-border: rgba(255,255,255,0.08);
  --glass-border-hover: rgba(255,255,255,0.15);
  --glass-blur: blur(20px);

  /* Text */
  --text-1: #FFFFFF;
  --text-2: rgba(255,255,255,0.75);
  --text-3: rgba(255,255,255,0.45);
  --text-4: rgba(255,255,255,0.25);

  /* Light mode surfaces for sections */
  --surface: #FFFFFF;
  --surface-2: #F8F8F9;

  /* Accents */
  --green: #22c55e;
  --blue: #3b82f6;
  --amber: #f59e0b;
  --purple: #8b5cf6;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-red: 0 0 40px rgba(255,0,0,0.2);
  --shadow-glow: 0 0 0 1px rgba(255,0,0,0.3), 0 0 20px rgba(255,0,0,0.15);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-fast: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s var(--ease);
  --transition-fast: all 0.15s var(--ease-fast);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  animation: bodyFadeIn 0.6s var(--ease);
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ===== SELECTION ===== */
::selection { background: rgba(255,0,0,0.2); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed; pointer-events: none; z-index: 9999;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,0,0,0.06) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
  will-change: transform;
  display: none;
}
@media (hover: hover) {
  .cursor-glow { display: block; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,11,0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  animation: navSlideDown 0.5s var(--ease);
}
@keyframes navSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.navbar.scrolled {
  background: rgba(10,10,11,0.92);
  border-bottom-color: var(--glass-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--text-1);
  letter-spacing: -0.3px;
  transition: var(--transition);
}
.nav-logo:hover { opacity: 0.85; }

.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--red), #FF6B6B);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px;
  box-shadow: 0 0 20px rgba(255,0,0,0.4);
  transition: var(--transition);
}
.nav-logo:hover .logo-icon { box-shadow: 0 0 30px rgba(255,0,0,0.6); transform: scale(1.05) rotate(-3deg); }

.nav-links { display: flex; align-items: center; gap: 2px; }

.nav-links a {
  padding: 7px 15px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--text-3);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--text-1); background: var(--glass-2); transform: translateY(-1px); }
.nav-links a.active { color: var(--text-1); }
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 6px var(--red); }
  50% { box-shadow: 0 0 12px var(--red), 0 0 20px rgba(255,0,0,0.3); }
}

.nav-btn {
  padding: 8px 20px !important;
  background: linear-gradient(135deg, var(--red), var(--red-dark)) !important;
  color: white !important; border-radius: var(--radius-sm) !important;
  font-weight: 600 !important; box-shadow: 0 0 20px rgba(255,0,0,0.3) !important;
  transition: var(--transition) !important;
}
.nav-btn:hover {
  background: linear-gradient(135deg, #FF2020, var(--red)) !important;
  box-shadow: 0 0 30px rgba(255,0,0,0.5) !important;
  transform: translateY(-1px) !important;
  color: white !important;
}

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.mobile-toggle span {
  width: 22px; height: 2px;
  background: var(--text-2); border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ===== HERO ===== */
.hero {
  background: var(--bg);
  padding: 160px 24px 100px;
  text-align: center;
  position: relative; overflow: hidden;
  margin-top: 66px;
  min-height: calc(100vh - 66px);
  display: flex; align-items: center; justify-content: center;
  contain: layout paint;
  content-visibility: auto;
}

.hero-particles {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.6;
}

.hero-aurora {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 600px 350px at 30% 40%, rgba(255,0,0,0.06), transparent),
    radial-gradient(ellipse 400px 250px at 70% 60%, rgba(139,92,246,0.04), transparent);
  animation: auroraShift 12s ease-in-out infinite alternate;
  will-change: transform;
}

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

.hero-content {
  position: relative; z-index: 1;
  max-width: 780px; margin: 0 auto;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px;
  background: rgba(255,0,0,0.1);
  border: 1px solid rgba(255,0,0,0.25);
  border-radius: 50px;
  font-size: 12px; color: #FF6B6B;
  font-weight: 600; margin-bottom: 28px;
  text-transform: uppercase; letter-spacing: 1px;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
  50% { box-shadow: 0 0 0 6px rgba(255,0,0,0.06); }
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05; margin-bottom: 24px;
  letter-spacing: -2px;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--red) 0%, #FF6B6B 50%, var(--red-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero p {
  font-size: 18px; color: var(--text-3);
  max-width: 520px; margin: 0 auto 40px; line-height: 1.7;
}

.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600; cursor: pointer;
  border: none; font-family: inherit;
  position: relative; overflow: hidden;
  transition: var(--transition);
}

.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.06); }

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(255,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,0,0,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--glass-2);
  color: var(--text-2);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  border-color: var(--glass-border-hover);
  background: var(--glass-3);
  color: var(--text-1);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 1.5px solid rgba(255,0,0,0.4);
}
.btn-outline:hover {
  background: var(--red-soft);
  border-color: var(--red);
  transform: translateY(-1px);
}

.btn-cta {
  background: white; color: var(--red);
  box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.25);
}

.btn-sm { padding: 7px 16px; font-size: 12px; border-radius: 8px; }
.btn-full { width: 100%; justify-content: center; }

/* Ripple effect */
.btn-ripple { position: relative; overflow: hidden; }
.ripple {
  position: absolute; border-radius: 50%;
  transform: scale(0);
  background: rgba(255,255,255,0.25);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ===== STATS ===== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 1000px; margin: -50px auto 70px; padding: 0 24px;
  position: relative; z-index: 2;
}

.stat-card {
  background: var(--glass-2);
  backdrop-filter: blur(20px);
  padding: 26px 20px; border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  cursor: default;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,0,0,0.3);
  box-shadow: 0 0 30px rgba(255,0,0,0.1);
  background: var(--glass-3);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px; font-weight: 800;
  color: var(--red); margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(255,0,0,0.4);
}

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

/* ===== SECTIONS ===== */
.section { padding: 90px 24px; animation: sectionFadeIn 0.8s var(--ease); }
.section.light { background: var(--bg-1); }

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

.section-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }

.section-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--red); margin-bottom: 14px;
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 700;
  color: var(--text-1); margin-bottom: 14px;
  letter-spacing: -1px;
  line-height: 1.15;
}

.section-header p { font-size: 16px; color: var(--text-3); line-height: 1.7; }

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; max-width: 1100px; margin: 0 auto;
}

.service-card {
  background: var(--glass-1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative; overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.5s var(--ease);
}

.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 200px 200px at 50% 0%, rgba(255,0,0,0.05), transparent);
  opacity: 0; transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(255,0,0,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(255,0,0,0.08);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(255,0,0,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
  border: 1px solid rgba(255,0,0,0.15);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(255,0,0,0.15);
  box-shadow: 0 0 20px rgba(255,0,0,0.2);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 10px;
  color: var(--text-1);
}
.service-card p {
  font-size: 14px; color: var(--text-3); line-height: 1.65; margin-bottom: 20px;
}

.service-price, .product-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px; font-weight: 800; color: var(--red);
  text-shadow: 0 0 15px rgba(255,0,0,0.3);
}
.service-price span { font-size: 13px; font-weight: 400; color: var(--text-4); }

/* ===== SHOWCASE ===== */
.showcase { background: var(--bg-1); }

.showcase-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; max-width: 1100px; margin: 0 auto;
}

.showcase-item {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 16/9;
  background: var(--bg-2); cursor: pointer;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.showcase-item:hover {
  transform: scale(1.03);
  border-color: rgba(255,0,0,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.showcase-item video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.showcase-item:hover video { transform: scale(1.08); }

.showcase-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 50%);
  display: flex; align-items: flex-end; padding: 24px;
  opacity: 0; transition: var(--transition);
}

.showcase-item:hover .showcase-overlay { opacity: 1; }
.showcase-overlay h4 { color: white; font-size: 15px; font-weight: 600; }

.showcase-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 62px; height: 62px;
  background: rgba(255,0,0,0.9);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 24px;
  opacity: 0; transition: var(--transition);
  box-shadow: 0 0 30px rgba(255,0,0,0.5);
}

.showcase-item:hover .showcase-play {
  opacity: 1; transform: translate(-50%, -50%) scale(1);
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; max-width: 1100px; margin: 0 auto;
}

.testimonial-card {
  background: var(--glass-1);
  padding: 28px; border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  animation: cardPopIn 0.6s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 0.1s);
}
@keyframes cardPopIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.testimonial-card:nth-child(1) { --i: 0; }
.testimonial-card:nth-child(2) { --i: 1; }
.testimonial-card:nth-child(3) { --i: 2; }
.testimonial-card:nth-child(4) { --i: 3; }
.testimonial-card:nth-child(5) { --i: 4; }
.testimonial-card:nth-child(6) { --i: 5; }

.testimonial-card:hover {
  border-color: rgba(255,215,0,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.testimonial-stars {
  font-size: 16px; margin-bottom: 14px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.testimonial-card p {
  font-size: 14px; color: var(--text-2); line-height: 1.7;
  margin-bottom: 18px; font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 14px;
  box-shadow: 0 0 15px rgba(255,0,0,0.3);
  flex-shrink: 0;
}
.testimonial-author h4 { font-size: 14px; font-weight: 600; color: var(--text-1); }
.testimonial-author span { font-size: 12px; color: var(--text-4); }

/* ===== CTA ===== */
.cta-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a0000, #0A0A0B);
  padding: 100px 24px; text-align: center; color: white;
}

.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(255,0,0,0.12), transparent);
}

.cta-section > * { position: relative; z-index: 1; }

.cta-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px); font-weight: 800;
  margin-bottom: 16px; letter-spacing: -1px;
}
.cta-section p {
  font-size: 18px; color: var(--text-3);
  max-width: 480px; margin: 0 auto 36px; line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--glass-border);
  color: var(--text-3); padding: 70px 24px 28px;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-1); font-size: 22px; font-weight: 700; margin-bottom: 14px;
}
.footer-brand h3 span { color: var(--red); }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 260px; }
.footer h4 {
  color: var(--text-2); font-size: 13px; font-weight: 600;
  margin-bottom: 18px; letter-spacing: 0.5px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--red); transform: translateX(4px); }

.footer-bottom {
  max-width: 1100px; margin: 0 auto; padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--glass-2); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); transition: var(--transition);
  font-size: 12px; font-weight: 700;
}
.footer-social a:hover {
  background: var(--red); color: white;
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(255,0,0,0.3);
  transform: translateY(-2px);
}

/* ===== AUTH ===== */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 100px 24px 60px;
  background: var(--bg);
  position: relative; overflow: hidden;
}

.auth-page::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 30% 40%, rgba(255,0,0,0.05), transparent),
    radial-gradient(ellipse 400px 300px at 70% 60%, rgba(139,92,246,0.04), transparent);
}

.auth-container { width: 100%; max-width: 420px; position: relative; z-index: 1; }

.auth-card {
  background: var(--glass-2);
  backdrop-filter: blur(30px);
  border-radius: var(--radius-xl);
  padding: 44px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  animation: slideUpAuth 0.5s var(--ease);
}

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

.auth-header { text-align: center; margin-bottom: 32px; }

.auth-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: white; margin: 0 auto 18px;
  box-shadow: 0 0 30px rgba(255,0,0,0.4);
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.auth-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px; font-weight: 700; color: var(--text-1); margin-bottom: 6px;
}
.auth-header p { font-size: 14px; color: var(--text-3); }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--text-3); margin-bottom: 7px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: 14px; font-family: inherit;
  color: var(--text-1);
  transition: var(--transition);
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-4);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: rgba(255,0,0,0.5);
  box-shadow: 0 0 0 3px rgba(255,0,0,0.1), 0 0 20px rgba(255,0,0,0.05);
  background: rgba(255,255,255,0.07);
}

.form-group select option { background: var(--bg-2); color: var(--text-1); }

.form-options {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; font-size: 13px;
}
.form-options label { display: flex; align-items: center; gap: 8px; color: var(--text-3); cursor: pointer; }
.form-options a { color: var(--red); font-weight: 500; }
.form-options a:hover { text-decoration: underline; }

.auth-footer { text-align: center; margin-top: 24px; font-size: 13px; color: var(--text-3); }
.auth-footer a { color: var(--red); font-weight: 600; }

.password-input-wrapper { position: relative; }
.password-toggle {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: var(--text-4); font-size: 16px; line-height: 1;
  transition: var(--transition);
}
.password-toggle:hover { color: var(--text-2); }

/* ===== PRODUCTS PAGE ===== */
.products-header {
  background: var(--bg);
  padding: 120px 24px 60px; text-align: center; color: white;
  margin-top: 66px;
  position: relative; overflow: hidden;
}

.products-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 80%, rgba(255,0,0,0.06), transparent);
}

.products-header > * { position: relative; z-index: 1; }
.products-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px; font-weight: 800; margin-bottom: 10px;
  letter-spacing: -1px;
}
.products-header p { color: var(--text-3); font-size: 16px; }

.products-controls {
  max-width: 1100px; margin: 0 auto; padding: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.products-search { display: flex; flex: 1; max-width: 380px; }
.products-search input {
  flex: 1; padding: 11px 16px;
  background: var(--glass-2); border: 1px solid var(--glass-border);
  border-right: none; border-radius: 10px 0 0 10px;
  font-size: 13px; font-family: inherit; color: var(--text-1);
}
.products-search input::placeholder { color: var(--text-4); }
.products-search input:focus { outline: none; border-color: rgba(255,0,0,0.4); background: var(--glass-3); }
.products-search button {
  padding: 11px 18px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white; border: none;
  border-radius: 0 10px 10px 0; cursor: pointer;
  transition: var(--transition);
}
.products-search button:hover { box-shadow: 0 0 15px rgba(255,0,0,0.3); }
.products-filter select {
  padding: 11px 16px;
  background: var(--glass-2); border: 1px solid var(--glass-border);
  border-radius: 10px; font-size: 13px; font-family: inherit;
  cursor: pointer; color: var(--text-1);
}
.products-filter select option { background: var(--bg-2); }

.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px; max-width: 1100px; margin: 0 auto; padding: 0 24px 80px;
}

.product-card {
  background: var(--glass-1);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  animation: cardFadeIn 0.5s var(--ease) both;
}

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

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,0,0,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(255,0,0,0.08);
}

.product-thumbnail { aspect-ratio: 2/1; position: relative; overflow: hidden; background: var(--bg-2); }
.product-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.product-card:hover .product-thumbnail img { transform: scale(1.06); }

.product-info { padding: 22px; }

.product-category {
  display: inline-block; padding: 4px 12px;
  background: rgba(255,0,0,0.1); color: var(--red);
  border: 1px solid rgba(255,0,0,0.15);
  border-radius: 50px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px;
}

.product-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--text-1); }
.product-info p { font-size: 13px; color: var(--text-3); line-height: 1.6; margin-bottom: 14px; }

.product-meta { display: flex; justify-content: space-between; align-items: center; }
.product-rating { font-size: 12px; color: var(--text-3); }
.product-rating span { color: #FFD700; }

.product-action { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--glass-border); }

/* ===== ADMIN ===== */
.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
  width: 250px; background: var(--bg-1);
  border-right: 1px solid var(--glass-border);
  padding: 24px 0; position: fixed;
  top: 0; left: 0; height: 100vh; overflow-y: auto; z-index: 100;
}

.admin-sidebar-header {
  padding: 20px 20px 24px;
  border-bottom: 1px solid var(--glass-border); margin-bottom: 16px;
}
.admin-sidebar-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--text-1);
}
.admin-sidebar-header h2 span { color: var(--red); }
.admin-sidebar-header p { font-size: 11px; color: var(--text-4); margin-top: 4px; }

.admin-nav-group { padding: 8px 12px 4px; }
.admin-nav-group-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-4); padding: 0 8px 8px;
}

.admin-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; color: var(--text-3);
  font-size: 13px; font-weight: 500;
  transition: var(--transition); cursor: pointer;
  border: none; background: none; width: 100%;
  text-align: left; font-family: inherit;
  border-radius: var(--radius-sm);
  position: relative;
}

.admin-nav-item:hover { color: var(--text-1); background: var(--glass-2); }

.admin-nav-item.active {
  color: var(--text-1);
  background: rgba(255,0,0,0.12);
  border: 1px solid rgba(255,0,0,0.2);
}

.admin-nav-item.active .nav-icon { text-shadow: 0 0 10px rgba(255,0,0,0.5); }

.admin-nav-item .nav-icon { font-size: 16px; width: 22px; text-align: center; flex-shrink: 0; }

.admin-main {
  flex: 1; margin-left: 250px; padding: 32px;
  background: var(--bg); min-height: 100vh;
}

.admin-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 32px;
}
.admin-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px; font-weight: 700; color: var(--text-1);
}
.admin-header p { font-size: 13px; color: var(--text-3); margin-top: 4px; }

.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; margin-bottom: 32px; }

.admin-stat-card {
  background: var(--glass-1);
  padding: 22px; border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative; overflow: hidden;
}

.admin-stat-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0; transition: var(--transition);
}
.admin-stat-card:hover { border-color: rgba(255,0,0,0.2); transform: translateY(-2px); }
.admin-stat-card:hover::before { opacity: 1; }

.admin-stat-card .stat-title { font-size: 12px; color: var(--text-4); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.admin-stat-card .stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; font-weight: 800; color: var(--text-1);
}
.admin-stat-card .stat-change { font-size: 11px; margin-top: 6px; font-weight: 500; }
.stat-change.up { color: var(--green); }
.stat-change.down { color: var(--red); }

.admin-table {
  background: var(--glass-1);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border); overflow: hidden;
  margin-bottom: 24px;
}
.admin-table-header {
  padding: 18px 22px; border-bottom: 1px solid var(--glass-border);
  display: flex; justify-content: space-between; align-items: center;
}
.admin-table-header h3 { font-size: 16px; font-weight: 700; color: var(--text-1); }

.admin-table table { width: 100%; border-collapse: collapse; }
.admin-table th {
  text-align: left; padding: 12px 18px;
  font-size: 11px; font-weight: 700; color: var(--text-4);
  text-transform: uppercase; letter-spacing: 0.5px;
  background: var(--glass-1); border-bottom: 1px solid var(--glass-border);
}
.admin-table td {
  padding: 14px 18px; font-size: 13px; color: var(--text-2);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: var(--transition-fast);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--glass-2); }

.status-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.3px;
}
.status-badge::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: currentColor;
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.status-badge.completed { background: rgba(34,197,94,0.1); color: var(--green); }
.status-badge.pending { background: rgba(245,158,11,0.1); color: var(--amber); }
.status-badge.processing { background: rgba(59,130,246,0.1); color: var(--blue); }
.status-badge.cancelled { background: rgba(255,0,0,0.1); color: var(--red); }

.admin-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.btn-edit {
  background: rgba(59,130,246,0.1); color: var(--blue);
  border: 1px solid rgba(59,130,246,0.2);
  cursor: pointer; font-weight: 600; font-family: inherit;
  padding: 6px 14px; font-size: 11px; border-radius: 6px;
  transition: var(--transition);
}
.btn-edit:hover { background: rgba(59,130,246,0.2); transform: translateY(-1px); }
.btn-delete {
  background: rgba(255,0,0,0.1); color: var(--red);
  border: 1px solid rgba(255,0,0,0.2);
  cursor: pointer; font-weight: 600; font-family: inherit;
  padding: 6px 14px; font-size: 11px; border-radius: 6px;
  transition: var(--transition);
}
.btn-delete:hover { background: rgba(255,0,0,0.2); transform: translateY(-1px); }

/* ===== SECTION TRANSITIONS ===== */
.admin-section {
  animation: sectionIn 0.4s var(--ease);
}
@keyframes sectionIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  color: var(--text-1); padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500;
  animation: toastSlideIn 0.4s var(--ease);
  max-width: 380px; min-width: 250px;
  backdrop-filter: blur(20px);
}

.toast-progress {
  position: absolute; bottom: 0; left: 0; height: 2px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  animation: toastProgress 4s linear forwards;
}

@keyframes toastProgress { from { width: 100%; } to { width: 0%; } }

@keyframes toastSlideIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.toast.hiding {
  animation: toastSlideOut 0.3s var(--ease) forwards;
}
@keyframes toastSlideOut {
  to { opacity: 0; transform: translateY(10px) scale(0.95); }
}

.toast-success { border-left: 3px solid var(--green); }
.toast-success .toast-progress { background: var(--green); }
.toast-error { border-left: 3px solid var(--red); }
.toast-error .toast-progress { background: var(--red); }
.toast-info { border-left: 3px solid var(--blue); }
.toast-info .toast-progress { background: var(--blue); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 9998;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: overlayIn 0.2s ease;
}

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

.modal-content {
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 36px; max-width: 520px; width: 100%;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.4s var(--ease);
  position: relative; overflow: hidden;
}

.modal-content::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,0,0,0.4), transparent);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--text-1);
}
.modal-content p { font-size: 14px; color: var(--text-3); margin-bottom: 24px; }
.modal-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 8px; }

/* ===== ALERTS ===== */
.alert {
  padding: 13px 18px; border-radius: var(--radius-sm);
  font-size: 13px; margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
  animation: alertIn 0.3s var(--ease);
  font-weight: 500;
}
@keyframes alertIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.alert-success {
  background: rgba(34,197,94,0.1); color: #4ade80;
  border: 1px solid rgba(34,197,94,0.2);
}
.alert-error {
  background: rgba(255,0,0,0.1); color: #FF6B6B;
  border: 1px solid rgba(255,0,0,0.2);
}

/* ===== CHAT ===== */
.chat-bubble {
  animation: bubblePop 0.35s var(--ease);
}
@keyframes bubblePop {
  from { opacity: 0; transform: scale(0.85) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.typing-indicator {
  display: flex; gap: 4px; align-items: center;
  padding: 10px 16px;
  background: var(--glass-2);
  border-radius: 12px; border: 1px solid var(--glass-border);
  width: fit-content;
}
.typing-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-3);
  animation: typingBounce 1.4s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-6px); opacity: 1; }
}

/* ===== SHIMMER ===== */
.shimmer {
  background: linear-gradient(90deg, var(--glass-1) 25%, var(--glass-3) 50%, var(--glass-1) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; max-width: 1100px; margin: 0 auto;
  position: relative;
}

.step-card {
  text-align: center; padding: 32px 24px;
  background: var(--glass-1);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: rgba(255,0,0,0.2);
  transform: translateY(-4px);
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px; font-weight: 900;
  color: rgba(255,0,0,0.12);
  line-height: 1; margin-bottom: 16px;
  transition: var(--transition);
}
.step-card:hover .step-number { color: rgba(255,0,0,0.2); }
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text-1); }
.step-card p { font-size: 13px; color: var(--text-3); line-height: 1.6; }

/* ===== DASHBOARD STYLES ===== */
.dash-layout { display: flex; min-height: 100vh; padding-top: 66px; }
.dash-sidebar {
  width: 240px; background: var(--bg-1);
  border-right: 1px solid var(--glass-border);
  padding: 24px 12px; position: fixed; top: 66px; left: 0;
  height: calc(100vh - 66px); overflow-y: auto; z-index: 10;
}
.dash-sidebar-header { padding: 0 8px 20px; border-bottom: 1px solid var(--glass-border); margin-bottom: 16px; }
.dash-sidebar-header h3 { font-size: 15px; font-weight: 700; color: var(--text-1); }
.dash-sidebar-header p { font-size: 12px; color: var(--text-4); margin-top: 2px; }
.dash-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px; width: 100%; border: none;
  background: none; font-family: inherit; font-size: 13px;
  font-weight: 500; color: var(--text-3); cursor: pointer;
  transition: var(--transition); text-align: left;
  border-radius: var(--radius-sm);
}
.dash-nav-item:hover { color: var(--text-1); background: var(--glass-2); }
.dash-nav-item.active {
  color: var(--text-1);
  background: rgba(255,0,0,0.12);
  border: 1px solid rgba(255,0,0,0.2);
}

.dash-main { flex: 1; margin-left: 240px; padding: 36px; background: var(--bg); min-height: calc(100vh - 66px); }
.dash-order-card {
  background: var(--glass-1);
  border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--glass-border); margin-bottom: 18px;
  transition: var(--transition);
  animation: cardFadeIn 0.4s var(--ease) both;
}
.dash-order-card:hover { border-color: rgba(255,0,0,0.15); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 66px; left: 0; right: 0;
    background: rgba(10,10,11,0.95);
    backdrop-filter: blur(30px);
    flex-direction: column; padding: 16px;
    transform: translateY(-110%); opacity: 0;
    pointer-events: none; transition: var(--transition);
    border-bottom: 1px solid var(--glass-border);
    gap: 4px;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { width: 100%; padding: 12px 16px; border-radius: var(--radius-sm); }

  .hero { min-height: auto; padding: 120px 24px 80px; }
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .hero p { font-size: 15px; }
  .hero-buttons { flex-direction: column; align-items: center; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: -30px; }
  .stat-number { font-size: 26px; }

  .section { padding: 60px 20px; }
  .section-header h2 { font-size: 28px; }

  .services-grid, .showcase-grid, .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

  .products-controls { flex-direction: column; align-items: stretch; }
  .products-search { max-width: none; }

  .admin-layout { flex-direction: column; }
  .admin-sidebar {
    width: 100%; height: auto; position: relative;
    padding: 12px; display: flex; flex-wrap: wrap; gap: 6px;
  }
  .admin-nav-item { white-space: nowrap; padding: 8px 14px; border-radius: 8px; }
  .admin-main { margin-left: 0; padding: 20px; }
  .admin-table { overflow-x: auto; }

  .auth-card { padding: 28px 22px; }

  .dash-layout { flex-direction: column; }
  .dash-sidebar { width: 100%; height: auto; position: relative; top: 0; display: flex; overflow-x: auto; padding: 12px 8px; flex-direction: row; }
  .dash-nav-item { white-space: nowrap; padding: 8px 14px; }
  .dash-main { margin-left: 0; padding: 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .stats { grid-template-columns: 1fr; }
  .btn { justify-content: center; }
  .products-grid { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Reduced motion - keep animations but make subtler */
@media (prefers-reduced-motion: reduce) {
  .hero-particles { display: none; }
  .cursor-glow { display: none; }
}

/* Základní styl pro odkaz v patičce */
.footer-links .discord-link {
    text-decoration: none; /* Odstraní podtržení */
}

/* Styl pro samotnou ikonku */
.footer-links .discord-icon {
    font-size: 32px;      /* Tady nastavuješ velikost! (Zkus třeba 24px - 48px) */
    color: #ffffff;      /* Základní barva ikonky (třeba bílá, pokud máš tmavý footer) */
    transition: all 0.2s ease-in-out; /* Plynulý přechod pro zvětšení a barvu */
}

/* Efekt při najetí myší */
.footer-links .discord-link:hover .discord-icon {
    color: #5865F2;      /* Změna barvy na "Discord modrou" */
    transform: scale(1.15); /* Jemné zvětšení o 15 % (volitelné) */
}