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

:root {
  --primary-color: #ffffff;
  --secondary-color: #f5f5f5;
  --accent-color: #e0e0e0;
  --highlight-color: #333333;
  --neon-dark: #222222;
  --neon-glow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 0, 0, 0.08), 0 0 40px rgba(0, 0, 0, 0.05);
  --text-color: #222222;
  --text-muted: #666666;
  --card-bg: #ffffff;
  --card-hover-bg: #ffffff;
  --messenger-blue: #0084ff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 30%, #f0f2f5 100%);
  color: var(--text-color);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at top left, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
  opacity: 0.04;
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.profile-section {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  animation: fadeInUp 0.8s ease-out;
  position: relative;
}


.profile-image-container {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 25px;
}

.profile-image-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out;
}

.profile-image-wrapper:hover {
  transform: translate(-50%, -50%) scale(1.02);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.2),
    0 15px 25px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circular-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: rotate 25s linear infinite;
}

.circular-text text {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  fill: var(--text-muted);
}

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

.name {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
  text-shadow: 12px 12px 30px rgba(0, 0, 0, 0.15), 5px 5px 15px rgba(0, 0, 0, 0.1);
  transition: text-shadow 0.3s ease;
}

.tagline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.tagline .divider {
  color: var(--highlight-color);
}

.credentials {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 0.8rem;
  color: #333;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.credentials span {
  flex: 1;
  text-align: center;
  padding: 0 10px;
  position: relative;
}

.credentials span:not(:last-child)::after {
  content: '//';
  position: absolute;
  right: -8px;
  color: #555;
  font-weight: 500;
}

.quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  padding: 10px 20px;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 35px;
  color: #222;
  letter-spacing: 1px;
}

.section-heading-small {
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: #444;
}

/* Ventures Section - Business Cards */
.ventures-section {
  margin-bottom: 50px;
  padding: 0 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ventures-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Venture Cards - Premium Glass Style */
.venture-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 40px 30px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.05),
    0 16px 40px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.venture-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.9) 50%, transparent 100%);
}

.venture-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(0,0,0,0.01) 0%, transparent 50%);
  pointer-events: none;
}

.venture-card:hover,
.venture-card.scroll-active {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.08),
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 40px 80px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(0, 0, 0, 0.15);
}

/* Avirasphere Accent */
.venture-card.avirasphere-accent {
  border-top: 2px solid transparent;
  background-image: linear-gradient(145deg, #ffffff 0%, #fafafa 100%), 
                    linear-gradient(90deg, #8b5cf6 0%, #a78bfa 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.venture-card.avirasphere-accent::after {
  background: radial-gradient(ellipse at 50% -20%, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
}

/* Skyflex Accent */
.venture-card.skyflex-accent {
  border-top: 2px solid transparent;
  background-image: linear-gradient(145deg, #ffffff 0%, #fafafa 100%), 
                    linear-gradient(90deg, #06b6d4 0%, #22d3ee 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.venture-card.skyflex-accent::after {
  background: radial-gradient(ellipse at 50% -20%, rgba(6, 182, 212, 0.06) 0%, transparent 60%);
}

.venture-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.venture-logo {
  max-width: 300px;
  height: auto;
  filter: brightness(0) saturate(100%);
  transition: all 0.4s ease;
}

.venture-logo.avirasphere-logo {
  max-width: 280px;
  filter: none;
  transition: all 0.4s ease;
}


.venture-title-boxed {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 4px;
  padding: 14px 28px;
  border: 2.5px solid #0f172a;
  border-radius: 10px;
}


.venture-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 2px;
}

.venture-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.venture-arrow i {
  font-size: 0.9rem;
  color: #94a3b8;
  transition: all 0.3s ease;
}

.venture-card:hover .venture-arrow {
  border-color: rgba(0, 0, 0, 0.2);
  background: #0f172a;
  transform: translateX(2px);
}

.venture-card:hover .venture-arrow i {
  color: #fff;
}

/* Hobbies Section - Stacked Cards */
.hobbies-section {
  margin-bottom: 60px;
  padding: 0 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hobbies-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Personal Section Card Styles - Masculine Dark Design */
.personal-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.15),
    0 8px 40px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

.personal-card:hover,
.personal-card.scroll-active {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 
    0 16px 50px rgba(0, 0, 0, 0.3),
    0 30px 80px rgba(0, 0, 0, 0.2);
}

.personal-card.scroll-active .personal-card-icon {
  transform: scale(1.15);
  transition: transform 0.4s ease;
}

.personal-card.scroll-active .personal-card-title {
  letter-spacing: 3px;
  transition: letter-spacing 0.4s ease;
}

.personal-card-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  padding: 20px;
  text-align: center;
}

.personal-card-icon {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.personal-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.personal-card-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

/* Spotify Card - Dark Industrial */
.spotify-card-styled {
  background: linear-gradient(145deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
  position: relative;
}

.spotify-card-styled::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(29, 185, 84, 0.2) 0%, transparent 60%);
  z-index: 1;
}

.spotify-card-styled .personal-card-icon {
  color: #1DB954;
}

@keyframes glowPulse {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.spotify-card-styled .spotify-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
}

.spotify-card-styled .spotify-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: floatParticle 5s ease-in-out infinite;
}

.spotify-card-styled .spotify-particles span:nth-child(1) { top: 15%; left: 20%; animation-delay: 0s; }
.spotify-card-styled .spotify-particles span:nth-child(2) { top: 70%; left: 75%; animation-delay: 1s; }
.spotify-card-styled .spotify-particles span:nth-child(3) { top: 40%; left: 50%; animation-delay: 2s; }
.spotify-card-styled .spotify-particles span:nth-child(4) { top: 80%; left: 30%; animation-delay: 3s; }
.spotify-card-styled .spotify-particles span:nth-child(5) { top: 25%; left: 85%; animation-delay: 4s; }

/* Visual Work Card */
.visual-card {
  background: linear-gradient(145deg, #111111 0%, #1c1c1c 50%, #0a0a0a 100%);
  position: relative;
}

.visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.15) 0%, transparent 60%);
  z-index: 1;
}

/* Blog Card */
.blog-card-styled {
  background: linear-gradient(145deg, #1a1a1a 0%, #252525 50%, #0f0f0f 100%);
  position: relative;
}

.blog-card-styled::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.15) 0%, transparent 60%);
  z-index: 1;
}

/* Minimal Card Style for Personal Section */
.minimal-card {
  background: #fff !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  aspect-ratio: auto !important;
}

.minimal-card:hover,
.minimal-card.scroll-active {
  border-color: #ddd !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-2px) !important;
}

.minimal-card-inner {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  gap: 16px;
  width: 100%;
}

.minimal-icon {
  font-size: 1.6rem;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.minimal-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.minimal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.5px;
}

.minimal-subtitle {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.minimal-arrow {
  font-size: 0.85rem;
  color: #ccc;
  transition: all 0.3s ease;
}

.minimal-card:hover .minimal-arrow,
.minimal-card.scroll-active .minimal-arrow {
  color: #666;
  transform: translateX(3px);
}

@media (max-width: 600px) {
  .section-heading {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
  
  .section-heading-small {
    font-size: 1.2rem;
  }
  
  .ventures-stack {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .venture-card {
    aspect-ratio: 4/3;
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .venture-logo.avirasphere-logo {
    max-width: 200px;
  }
  
  .venture-title-boxed {
    font-size: 1.2rem;
    padding: 12px 20px;
    letter-spacing: 3px;
  }
  
  .venture-subtitle {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
  }
  
  .venture-arrow {
    width: 34px;
    height: 34px;
    bottom: 15px;
    right: 15px;
    border-radius: 10px;
  }
  
  .hobbies-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .personal-card {
    aspect-ratio: 4/3;
    width: 100%;
  }
  
  .minimal-card-inner {
    padding: 16px 18px;
  }
}

/* Banner Card Base - Collapsed State */
.banner-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-card:hover,
.banner-card.scroll-active {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.12);
}

.spotify-play-btn {
  width: 50px;
  height: 50px;
  background: #1DB954;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(29, 185, 84, 0.4);
}

.spotify-play-btn i {
  color: #fff;
  font-size: 1.2rem;
  margin-left: 3px;
}

.spotify-card:hover .spotify-play-btn,
.spotify-card.scroll-active .spotify-play-btn {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(29, 185, 84, 0.6);
}

/* Banner Preview - Always visible in collapsed state */
.banner-preview {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 15;
  transition: opacity 0.3s ease;
}

.banner-preview-icon {
  font-size: 5rem;
  margin-bottom: 25px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.avirasphere-logo-large {
  width: 80% !important;
  max-width: 280px;
  height: auto !important;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .avirasphere-logo-large {
    width: 100% !important;
    max-width: none;
    transform: scale(1.15);
    margin-bottom: 10px;
  }
}

.avira-expanded-logo {
  width: 300px;
  max-width: 80%;
  height: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 10px 30px rgba(168, 85, 247, 0.4));
}

@media (max-width: 768px) {
  .avira-expanded-logo {
    width: 90%;
    max-width: none;
    margin-bottom: 20px;
  }
}

.banner-preview-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.skyflex-boxed-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  border: 3px solid #000;
  padding: 2px 10px;
  margin-bottom: 20px;
  display: inline-block;
  width: auto;
  max-width: 240px;
  box-sizing: border-box;
}

.banner-preview-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 8px;
  text-align: center;
}

/* Expanded State - Full Page Overlay */
.banner-expanded-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-expanded-overlay.active {
  opacity: 1;
  visibility: visible;
}

.banner-expanded-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.banner-expanded-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.banner-expanded-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.banner-expanded-overlay.active .banner-expanded-content {
  transform: scale(1);
  opacity: 1;
}

/* Revolution banners inside overlays */
.banner-expanded-content .avirasphere-revolution,
.banner-expanded-content .skyflex-revolution,
.banner-expanded-content .spotify-revolution,
.banner-expanded-content .soundcloud-revolution {
  width: 100%;
  margin-left: 0;
  min-height: 100vh;
}


/* Banner Card Backgrounds */
.avirasphere-card {
  background: #ffffff;
}

.avirasphere-card .avira-lofi-gradient,
.avirasphere-card .avira-bokeh {
  display: none;
}

.skyflex-card {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.skyflex-card .sky-gradient-layer,
.skyflex-card .sky-particles {
  display: none;
}

.skyflex-card .sky-gradient-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 50%, #0a1628 100%);
  z-index: 0;
}

.skyflex-card .sky-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(0, 212, 255, 0.6);
  border-radius: 50%;
  animation: skyParticleFloat 8s infinite ease-in-out;
}

.skyflex-card .sky-particles span:nth-child(1) { left: 15%; top: 25%; animation-delay: 0s; }
.skyflex-card .sky-particles span:nth-child(2) { left: 30%; top: 55%; animation-delay: 1s; }
.skyflex-card .sky-particles span:nth-child(3) { left: 50%; top: 20%; animation-delay: 2s; }
.skyflex-card .sky-particles span:nth-child(4) { left: 70%; top: 65%; animation-delay: 0.5s; }
.skyflex-card .sky-particles span:nth-child(5) { left: 85%; top: 35%; animation-delay: 1.5s; }

.spotify-card {
  background: linear-gradient(135deg, #191414 0%, #1a2e1a 50%, #191414 100%);
}

.spotify-card .spotify-gradient-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #191414 0%, #1a2e1a 50%, #191414 100%);
}

.spotify-card .spotify-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(29, 185, 84, 0.6);
  border-radius: 50%;
  animation: spotifyParticle 8s infinite ease-in-out;
}

.spotify-card .spotify-particles span:nth-child(1) { left: 15%; top: 25%; animation-delay: 0s; }
.spotify-card .spotify-particles span:nth-child(2) { left: 30%; top: 60%; animation-delay: 1s; }
.spotify-card .spotify-particles span:nth-child(3) { left: 55%; top: 20%; animation-delay: 2s; }
.spotify-card .spotify-particles span:nth-child(4) { left: 70%; top: 70%; animation-delay: 0.5s; }
.spotify-card .spotify-particles span:nth-child(5) { left: 85%; top: 40%; animation-delay: 1.5s; }

.soundcloud-card {
  background: linear-gradient(135deg, #1a0a0a 0%, #2d1515 50%, #3d1a1a 100%);
}

.soundcloud-play-btn-card {
  width: 50px;
  height: 50px;
  background: #ff5500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 85, 0, 0.4);
}

.soundcloud-play-btn-card i {
  color: #fff;
  font-size: 1.2rem;
}

.soundcloud-card:hover .soundcloud-play-btn-card,
.soundcloud-card.scroll-active .soundcloud-play-btn-card {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 85, 0, 0.6);
}

/* Photography Card */
.photography-card {
  background: linear-gradient(135deg, #1a0a15 0%, #2d1525 50%, #3d1a35 100%);
}

.photography-card .photography-gradient-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1a0a15 0%, #2d1525 50%, #3d1a35 100%);
}

.photography-card .photography-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(233, 30, 99, 0.6);
  border-radius: 50%;
  animation: scParticle 8s infinite ease-in-out;
}

.photography-card .photography-particles span:nth-child(1) { left: 15%; top: 25%; animation-delay: 0s; }
.photography-card .photography-particles span:nth-child(2) { left: 30%; top: 60%; animation-delay: 1s; }
.photography-card .photography-particles span:nth-child(3) { left: 55%; top: 20%; animation-delay: 2s; }
.photography-card .photography-particles span:nth-child(4) { left: 70%; top: 70%; animation-delay: 0.5s; }
.photography-card .photography-particles span:nth-child(5) { left: 85%; top: 40%; animation-delay: 1.5s; }

.photography-btn-card {
  width: 50px;
  height: 50px;
  background: #e91e63;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.photography-btn-card i {
  color: #fff;
  font-size: 1.2rem;
}

.photography-card:hover .photography-btn-card,
.photography-card.scroll-active .photography-btn-card {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(233, 30, 99, 0.6);
}

/* Blog Card */
.blog-card {
  background: linear-gradient(135deg, #0a1a1a 0%, #152d2d 50%, #1a3d3d 100%);
}

.blog-card .blog-gradient-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0a1a1a 0%, #152d2d 50%, #1a3d3d 100%);
}

.blog-card .blog-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(0, 188, 212, 0.6);
  border-radius: 50%;
  animation: scParticle 8s infinite ease-in-out;
}

.blog-card .blog-particles span:nth-child(1) { left: 15%; top: 25%; animation-delay: 0s; }
.blog-card .blog-particles span:nth-child(2) { left: 30%; top: 60%; animation-delay: 1s; }
.blog-card .blog-particles span:nth-child(3) { left: 55%; top: 20%; animation-delay: 2s; }
.blog-card .blog-particles span:nth-child(4) { left: 70%; top: 70%; animation-delay: 0.5s; }
.blog-card .blog-particles span:nth-child(5) { left: 85%; top: 40%; animation-delay: 1.5s; }

.blog-btn-card {
  width: 50px;
  height: 50px;
  background: #00bcd4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
}

.blog-btn-card i {
  color: #fff;
  font-size: 1.2rem;
}

.blog-card:hover .blog-btn-card,
.blog-card.scroll-active .blog-btn-card {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 188, 212, 0.6);
}

.hobby-card .photography-btn-card,
.hobby-card .blog-btn-card {
  width: 40px;
  height: 40px;
  margin-top: 10px;
}

.hobby-card .photography-btn-card i,
.hobby-card .blog-btn-card i {
  font-size: 1rem;
}

/* Photography Overlay Styles */
.photography-revolution {
  display: block;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 100vh;
  overflow: hidden;
}

.photography-bg-layers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.photography-gradient-layer-full {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1a0a15 0%, #2d1525 25%, #3d1a35 50%, #e91e63 150%);
  background-size: 300% 300%;
  animation: photographyGradient 15s ease-in-out infinite;
}

@keyframes photographyGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.photography-content-wrapper {
  position: relative;
  z-index: 10;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 20px;
  text-align: center;
}

.photography-icon-container {
  width: 120px;
  height: 120px;
  background: rgba(233, 30, 99, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.photography-main-icon {
  font-size: 4rem;
  color: #e91e63;
}

.photography-label {
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.photography-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 10px 0;
}

.photography-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
}

.banner-expanded-content .photography-revolution {
  width: 100%;
  margin-left: 0;
  min-height: 100vh;
}

/* Blog Overlay Styles */
.blog-revolution {
  display: block;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 100vh;
  overflow: hidden;
}

.blog-bg-layers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.blog-gradient-layer-full {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0a1a1a 0%, #152d2d 25%, #1a3d3d 50%, #00bcd4 150%);
  background-size: 300% 300%;
  animation: blogGradient 15s ease-in-out infinite;
}

@keyframes blogGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.blog-content-wrapper {
  position: relative;
  z-index: 10;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 20px;
  text-align: center;
}

.blog-icon-container {
  width: 120px;
  height: 120px;
  background: rgba(0, 188, 212, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.blog-main-icon {
  font-size: 4rem;
  color: #00bcd4;
}

.blog-label {
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 10px 0;
}

.blog-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
}

.banner-expanded-content .blog-revolution {
  width: 100%;
  margin-left: 0;
  min-height: 100vh;
}

.soundcloud-card .soundcloud-gradient-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1a0a0a 0%, #2d1515 50%, #3d1a1a 100%);
}

.soundcloud-card .soundcloud-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 85, 0, 0.6);
  border-radius: 50%;
  animation: scParticle 8s infinite ease-in-out;
}

.soundcloud-card .soundcloud-particles span:nth-child(1) { left: 15%; top: 25%; animation-delay: 0s; }
.soundcloud-card .soundcloud-particles span:nth-child(2) { left: 30%; top: 60%; animation-delay: 1s; }
.soundcloud-card .soundcloud-particles span:nth-child(3) { left: 55%; top: 20%; animation-delay: 2s; }
.soundcloud-card .soundcloud-particles span:nth-child(4) { left: 70%; top: 70%; animation-delay: 0.5s; }
.soundcloud-card .soundcloud-particles span:nth-child(5) { left: 85%; top: 40%; animation-delay: 1.5s; }

.banner {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 60px;
  min-height: 70vh;
  background: var(--card-bg);
  text-decoration: none;
  color: var(--text-color);
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.banner:nth-child(even) {
  flex-direction: row-reverse;
  background: white;
}

.banner:hover {
  background: var(--card-hover-bg);
}

.banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.banner-visual {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  transition: transform 0.6s ease;
}

.banner:hover .banner-visual {
  transform: scale(1.05);
}

.banner-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.spotify-visual {
  background: #191414;
  position: relative;
}

.spotify-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(29, 185, 84, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(29, 185, 84, 0.2) 0%, transparent 40%);
}

.spotify-visual i {
  font-size: 5rem;
  color: #1DB954;
  z-index: 1;
}

.banner-content {
  flex: 1;
}

.banner-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.banner-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text-color);
}

.banner-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 500px;
}

.banner-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-bottom: 25px;
}

.banner-services li {
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.banner-services.compact {
  gap: 6px;
}

.banner-services.compact li {
  padding: 5px 12px;
  font-size: 0.75rem;
}

.sub-service {
  display: block;
  font-size: 0.7rem;
  color: #aaa;
  margin-top: 3px;
  font-weight: 400;
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
  transition: gap 0.3s ease;
}

.banner:hover .banner-cta {
  gap: 15px;
}

.banner-cta i {
  transition: transform 0.3s ease;
}

.banner:hover .banner-cta i {
  transform: translateX(5px);
}

.reveal {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

.reveal:nth-child(odd) {
  transform: translateX(-60px);
}

.reveal:nth-child(even) {
  transform: translateX(60px);
}

.reveal.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal .banner-visual {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.reveal.in-view .banner-visual {
  opacity: 1;
  transform: scale(1);
}

.reveal.in-view .banner-visual img {
  filter: drop-shadow(20px 20px 45px rgba(0, 0, 0, 0.6)) drop-shadow(8px 8px 20px rgba(0, 0, 0, 0.5));
  transition: filter 0.8s ease 0.3s;
}

.reveal .banner-content > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view .banner-content > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal.in-view .banner-label { transition-delay: 0.3s; }
.reveal.in-view .banner-content h2 { 
  transition-delay: 0.4s; 
  text-shadow: 15px 15px 35px rgba(0, 0, 0, 0.55), 6px 6px 15px rgba(0, 0, 0, 0.45);
}
.reveal.in-view .banner-description { transition-delay: 0.5s; }
.reveal.in-view .banner-services { transition-delay: 0.6s; }
.reveal.in-view .banner-cta { transition-delay: 0.7s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 768px) {
  .banner {
    flex-direction: column !important;
    text-align: center;
    padding: 60px 20px;
    gap: 30px;
    min-height: auto;
  }
  
  .banner-visual {
    width: 180px;
    height: 180px;
  }
  
  .banner-content h2 {
    font-size: 2rem;
  }
  
  .banner-description {
    max-width: 100%;
  }
  
  .banner-services {
    justify-content: center;
  }
  
  .banner-cta {
    justify-content: center;
  }
  
  .reveal:nth-child(odd),
  .reveal:nth-child(even) {
    transform: translateY(40px);
  }
  
  .reveal.in-view {
    transform: translateY(0);
  }
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.01) 100%);
}

.contact-card-inner {
  display: flex;
  align-items: center;
  padding: 30px;
  gap: 25px;
  min-height: 200px;
}

.contact-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrapper .fa-envelope {
  font-size: 3.5rem;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.contact-icon-wrapper .send-icon {
  position: absolute;
  font-size: 1.5rem;
  color: var(--text-color);
  opacity: 0;
  transform: translateX(-10px) translateY(10px);
  transition: all 0.4s ease;
}

.contact-card:hover .fa-envelope {
  transform: scale(0.9);
  opacity: 0.5;
}

.contact-card:hover .send-icon {
  opacity: 1;
  transform: translateX(15px) translateY(-15px);
}

.contact-content {
  flex: 1;
}

.contact-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-color);
}

.contact-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.contact-cta i {
  transition: transform 0.3s ease;
}

.contact-card:hover .contact-cta {
  color: var(--text-color);
}

.contact-card:hover .contact-cta i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact-card-inner {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  
  .contact-icon-wrapper {
    margin-bottom: 10px;
  }
}

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

.social-section {
  text-align: center;
  margin-bottom: 40px;
}

.social-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--text-color);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
  background: var(--text-color);
  color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

footer {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.messenger-widget {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
}

.messenger-trigger {
  position: relative;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.messenger-trigger.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}

.messenger-trigger .trigger-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.messenger-trigger:hover .trigger-avatar {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 132, 255, 0.5);
}

.trigger-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  background: var(--messenger-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 132, 255, 0.4);
}

.trigger-badge i {
  font-size: 0.75rem;
  color: white;
}

.messenger-chat {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 340px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.messenger-chat.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.messenger-chat-header {
  background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.messenger-profile {
  position: relative;
}

.messenger-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.messenger-status {
  position: absolute;
  bottom: 2px;
  right: 2px;
}

.status-dot {
  display: block;
  width: 10px;
  height: 10px;
  background: #31a24c;
  border-radius: 50%;
  border: 2px solid white;
}

.messenger-chat-header .messenger-info {
  position: static;
  flex: 1;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: transparent;
  box-shadow: none;
  width: auto;
  border-radius: 0;
}

.messenger-chat-header .messenger-info h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.messenger-subtitle {
  font-size: 0.75rem;
  opacity: 0.85;
}

.messenger-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.messenger-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.messenger-chat-body {
  padding: 20px;
  background: #f5f5f5;
  min-height: 150px;
}

.messenger-welcome {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.welcome-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.welcome-bubble {
  background: white;
  padding: 12px 16px;
  border-radius: 18px;
  border-top-left-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 220px;
}

.welcome-bubble p {
  margin: 0;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
}

.messenger-prompt {
  text-align: center;
  padding: 10px;
}

.messenger-prompt p {
  margin: 0;
  font-size: 0.8rem;
  color: #666;
}

.messenger-chat-footer {
  padding: 15px 20px;
  background: white;
  border-top: 1px solid #eee;
}

.messenger-send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
  color: white;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 132, 255, 0.3);
}

.messenger-send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 132, 255, 0.4);
}

.messenger-send-btn i {
  font-size: 1.1rem;
}

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

@media (max-width: 768px) {
  .name {
    font-size: 2.25rem;
  }
  
  .tagline {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .credentials {
    flex-wrap: nowrap;
    max-width: 100%;
    font-size: 0.6rem;
    padding: 0 10px;
  }
  
  .credentials span {
    padding: 0 8px;
  }
  
  .credentials span:not(:last-child)::after {
    right: -4px;
    font-size: 0.55rem;
  }
  
  .quote {
    font-size: 1rem;
    padding: 10px 15px;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .card-content {
    text-align: center;
  }
  
  .profile-image {
    width: 150px;
    height: 150px;
  }
  
  .messenger-widget {
    left: 15px;
    bottom: 20px;
  }
  
  .messenger-chat {
    width: calc(100vw - 30px);
    max-width: 340px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 25px 15px;
  }
  
  .name {
    font-size: 1.85rem;
  }
  
  .credentials {
    flex-wrap: nowrap;
    gap: 4px;
    font-size: 0.45rem;
    letter-spacing: 0.3px;
  }
  
  .credentials span:not(:last-child)::after {
    margin-left: 4px;
  }
  
  .social-links {
    gap: 15px;
  }
  
  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

.avirasphere-card {
  cursor: pointer;
  position: relative;
}

.client-subcard {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #4a90d9 0%, #667eea 100%);
  color: white;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.avirasphere-card:hover .client-subcard {
  opacity: 1;
  transform: translateY(0);
}

.client-subcard i {
  transition: transform 0.3s ease;
}

.avirasphere-card:hover .client-subcard i {
  transform: translateX(5px);
}

.carousel-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.carousel-modal.active {
  opacity: 1;
  visibility: visible;
}

.carousel-content {
  max-width: 900px;
  width: 90%;
  text-align: center;
}

.carousel-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #999;
}

.carousel-close {
  position: fixed;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
}

.carousel-close:hover {
  color: #222;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.carousel-track-container {
  flex: 1;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 10px;
}

.client-logo-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-placeholder i {
  display: none;
}

.client-logo-placeholder span {
  color: #ccc;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.carousel-nav {
  background: none;
  border: 1px solid #ddd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #999;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carousel-nav:hover {
  border-color: #222;
  color: #222;
}

.visit-avirasphere-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
  padding: 12px 24px;
  background: none;
  border: 1px solid #ddd;
  color: #666;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.visit-avirasphere-btn:hover {
  border-color: #222;
  color: #222;
}

@media (max-width: 768px) {
  .carousel-close {
    top: 20px;
    right: 20px;
  }
  
  .carousel-nav {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }
  
  .client-logo-placeholder {
    height: 80px;
  }
  
  .client-logo-placeholder i {
    font-size: 3rem;
  }
}

.spotify-revolution {
  display: block;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 100vh;
  overflow: hidden;
  text-decoration: none;
  border-radius: 0;
}

.spotify-bg-layers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.spotify-gradient-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, #191414 0%, #121212 25%, #1a1a2e 50%, #16213e 75%, #0f3460 100%);
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { 
    background-position: 0% 50%;
    filter: hue-rotate(0deg);
  }
  50% { 
    background-position: 100% 50%;
    filter: hue-rotate(15deg);
  }
}

.spotify-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.spotify-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(29, 185, 84, 0.6);
  border-radius: 50%;
  animation: floatParticle 15s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(29, 185, 84, 0.5), 0 0 20px rgba(29, 185, 84, 0.3);
}

.spotify-particles span:nth-child(1) { left: 5%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
.spotify-particles span:nth-child(2) { left: 15%; top: 60%; animation-delay: 2s; animation-duration: 14s; }
.spotify-particles span:nth-child(3) { left: 30%; top: 10%; animation-delay: 1s; animation-duration: 13s; }
.spotify-particles span:nth-child(4) { left: 45%; top: 80%; animation-delay: 3s; animation-duration: 11s; }
.spotify-particles span:nth-child(5) { left: 60%; top: 30%; animation-delay: 0.5s; animation-duration: 15s; }
.spotify-particles span:nth-child(6) { left: 75%; top: 70%; animation-delay: 2.5s; animation-duration: 12s; }
.spotify-particles span:nth-child(7) { left: 85%; top: 15%; animation-delay: 1.5s; animation-duration: 14s; }
.spotify-particles span:nth-child(8) { left: 92%; top: 50%; animation-delay: 4s; animation-duration: 13s; }
.spotify-particles span:nth-child(9) { left: 25%; top: 45%; animation-delay: 3.5s; animation-duration: 16s; }
.spotify-particles span:nth-child(10) { left: 70%; top: 85%; animation-delay: 1s; animation-duration: 11s; }

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-30px) translateX(20px) scale(1.5);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-60px) translateX(-10px) scale(1);
    opacity: 0.5;
  }
  75% {
    transform: translateY(-30px) translateX(15px) scale(1.3);
    opacity: 0.7;
  }
}

.spotify-wave-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(29,185,84,0.1)' d='M0,160L48,144C96,128,192,96,288,112C384,128,480,192,576,192C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  animation: waveMove 10s ease-in-out infinite;
}

@keyframes waveMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-30px); }
}

.spotify-content-wrapper {
  position: relative;
  z-index: 10;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.spotify-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.spotify-icon-container {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotify-main-icon {
  font-size: 5rem;
  color: #1DB954;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(29, 185, 84, 0.5));
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 30px rgba(29, 185, 84, 0.5)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 50px rgba(29, 185, 84, 0.8)); }
}

.spotify-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(29, 185, 84, 0.4);
  border-radius: 50%;
  animation: pulseRing 3s ease-out infinite;
}

.spotify-pulse.delay-1 { animation-delay: 1s; }
.spotify-pulse.delay-2 { animation-delay: 2s; }

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

.spotify-title-section {
  text-align: center;
}

.spotify-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1DB954;
  margin-bottom: 10px;
  padding: 5px 15px;
  background: rgba(29, 185, 84, 0.15);
  border-radius: 20px;
  animation: labelGlow 2s ease-in-out infinite;
}

@keyframes labelGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(29, 185, 84, 0.3); }
  50% { box-shadow: 0 0 25px rgba(29, 185, 84, 0.6); }
}

.spotify-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 0 40px rgba(29, 185, 84, 0.3);
  letter-spacing: -0.5px;
}

.spotify-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.spotify-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.spotify-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.spotify-stat i {
  color: #1DB954;
}

.spotify-aurora-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(29, 185, 84, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(30, 215, 96, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 100% 60% at 50% -10%, rgba(29, 185, 84, 0.15) 0%, transparent 60%);
  filter: blur(60px);
  animation: auroraMove 8s ease-in-out infinite alternate;
}

@keyframes auroraMove {
  0% { transform: translateY(0) scale(1); opacity: 0.8; }
  100% { transform: translateY(20px) scale(1.05); opacity: 1; }
}

.spotify-noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
}

.spotify-sound-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  opacity: 0.15;
}

.spotify-sound-waves .wave-bar {
  width: 4px;
  background: linear-gradient(to top, #1DB954, transparent);
  border-radius: 2px;
  animation: waveBarMove 1.2s ease-in-out infinite;
}

@keyframes waveBarMove {
  0%, 100% { height: 20px; }
  50% { height: var(--wave-height, 60px); }
}

.spotify-hero {
  text-align: center;
}

.spotify-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.spotify-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.spotify-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  font-weight: 400;
}

.spotify-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.spotify-embed-wrapper {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}

.spotify-embed-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(ellipse, rgba(29, 185, 84, 0.1) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.spotify-artists-section {
  width: 100%;
  margin-bottom: 20px;
}

.artists-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.spotify-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.spotify-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #1ed760 0%, #1DB954 100%);
  border-radius: 50px;
  color: #000000;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 
    0 15px 40px rgba(29, 185, 84, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: all 0.3s ease;
}

.spotify-cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 25px 60px rgba(29, 185, 84, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.spotify-cta-button i {
  font-size: 1.3rem;
}

.spotify-cta-hint {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.spotify-jam-section {
  width: 100%;
  margin-bottom: 25px;
}

.spotify-jam-button {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.15) 0%, rgba(29, 185, 84, 0.08) 100%);
  border: 1px solid rgba(29, 185, 84, 0.3);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.spotify-jam-button:hover {
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.25) 0%, rgba(29, 185, 84, 0.15) 100%);
  border-color: rgba(29, 185, 84, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(29, 185, 84, 0.2);
}

.jam-icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1ed760 0%, #1DB954 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.jam-icon-wrapper i {
  color: #000000;
  font-size: 1.2rem;
  z-index: 2;
}

.jam-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #1DB954;
  border-radius: 50%;
  animation: jamPulse 2s ease-out infinite;
}

@keyframes jamPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

.jam-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.jam-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1DB954;
}

.jam-description {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.jam-arrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.spotify-jam-button:hover .jam-arrow {
  color: #1DB954;
  transform: translateX(5px);
}

.spotify-embed-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.spotify-embed-container iframe {
  display: block;
}

.spotify-equalizer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 40px;
}

.spotify-equalizer span {
  width: 6px;
  background: linear-gradient(to top, #1DB954, #1ed760);
  border-radius: 3px;
  animation: equalizerBounce 0.8s ease-in-out infinite;
}

.spotify-equalizer span:nth-child(1) { height: 15px; animation-delay: 0s; }
.spotify-equalizer span:nth-child(2) { height: 25px; animation-delay: 0.1s; }
.spotify-equalizer span:nth-child(3) { height: 35px; animation-delay: 0.2s; }
.spotify-equalizer span:nth-child(4) { height: 20px; animation-delay: 0.3s; }
.spotify-equalizer span:nth-child(5) { height: 40px; animation-delay: 0.4s; }
.spotify-equalizer span:nth-child(6) { height: 28px; animation-delay: 0.5s; }
.spotify-equalizer span:nth-child(7) { height: 18px; animation-delay: 0.6s; }
.spotify-equalizer span:nth-child(8) { height: 32px; animation-delay: 0.7s; }
.spotify-equalizer span:nth-child(9) { height: 22px; animation-delay: 0.8s; }
.spotify-equalizer span:nth-child(10) { height: 30px; animation-delay: 0.9s; }

@keyframes equalizerBounce {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

.spotify-artists-marquee {
  overflow: hidden;
  padding: 15px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-content {
  display: flex;
  gap: 12px;
  padding-right: 12px;
}

.artist-tag {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.artist-tag:hover {
  background: rgba(29, 185, 84, 0.3);
  border-color: #1DB954;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(29, 185, 84, 0.4);
}

.spotify-cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 10px;
}

.spotify-play-btn {
  width: 60px;
  height: 60px;
  background: #1DB954;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(29, 185, 84, 0.4);
}

.spotify-play-btn i {
  color: #000;
  font-size: 1.5rem;
  margin-left: 4px;
}

.spotify-revolution:hover .spotify-play-btn {
  transform: scale(1.15);
  box-shadow: 0 12px 50px rgba(29, 185, 84, 0.6);
}

.spotify-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.spotify-cta-arrow {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.spotify-revolution:hover .spotify-cta-arrow {
  transform: translateX(8px);
  color: #1DB954;
}

.spotify-revolution::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(29, 185, 84, 0.1), transparent);
  transition: left 0.8s ease;
  z-index: 5;
}

.spotify-revolution:hover::before {
  left: 100%;
}

@media (max-width: 768px) {
  .spotify-revolution {
    min-height: 500px;
  }
  
  .spotify-content-wrapper {
    padding: 40px 25px;
  }
  
  .spotify-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .spotify-icon-container {
    width: 100px;
    height: 100px;
  }
  
  .spotify-main-icon {
    font-size: 4rem;
  }
  
  .spotify-title {
    font-size: 1.8rem;
  }
  
  .spotify-meta {
    justify-content: center;
  }
  
  .spotify-equalizer span {
    width: 4px;
  }
  
  .spotify-cta-section {
    flex-direction: column;
    gap: 15px;
  }
}

.soundcloud-revolution {
  display: block;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 550px;
  overflow: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.soundcloud-bg-layers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.soundcloud-gradient-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1a0a0a 0%, #2d1515 25%, #3d1a1a 50%, #ff5500 150%);
  background-size: 300% 300%;
  animation: soundcloudGradient 15s ease-in-out infinite;
}

@keyframes soundcloudGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.soundcloud-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 85, 0, 0.6);
  border-radius: 50%;
  animation: scParticle 10s infinite ease-in-out;
  box-shadow: 0 0 15px rgba(255, 85, 0, 0.5);
}

.soundcloud-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.soundcloud-particles span:nth-child(2) { left: 25%; top: 60%; animation-delay: 1s; }
.soundcloud-particles span:nth-child(3) { left: 40%; top: 15%; animation-delay: 2s; }
.soundcloud-particles span:nth-child(4) { left: 55%; top: 75%; animation-delay: 0.5s; }
.soundcloud-particles span:nth-child(5) { left: 70%; top: 30%; animation-delay: 1.5s; }
.soundcloud-particles span:nth-child(6) { left: 85%; top: 55%; animation-delay: 2.5s; }
.soundcloud-particles span:nth-child(7) { left: 15%; top: 80%; animation-delay: 0.8s; }
.soundcloud-particles span:nth-child(8) { left: 60%; top: 45%; animation-delay: 1.8s; }
.soundcloud-particles span:nth-child(9) { left: 35%; top: 35%; animation-delay: 2.2s; }
.soundcloud-particles span:nth-child(10) { left: 80%; top: 70%; animation-delay: 0.3s; }

@keyframes scParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-30px) scale(1.5); opacity: 1; }
}

.soundcloud-wave-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
}

.soundcloud-wave-layer .wave {
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
  height: 100px;
  background: linear-gradient(to top, rgba(255, 85, 0, 0.15), transparent);
  border-radius: 50% 50% 0 0;
  animation: scWave 8s ease-in-out infinite;
}

.soundcloud-wave-layer .wave-1 { animation-delay: 0s; opacity: 0.5; }
.soundcloud-wave-layer .wave-2 { animation-delay: 2s; opacity: 0.3; height: 80px; }
.soundcloud-wave-layer .wave-3 { animation-delay: 4s; opacity: 0.2; height: 60px; }

@keyframes scWave {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(2%) translateY(-10px); }
}

.soundcloud-content-wrapper {
  position: relative;
  z-index: 10;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 30px;
  text-align: center;
}

.soundcloud-header {
  display: flex;
  align-items: center;
  gap: 30px;
  text-align: left;
  width: 100%;
  max-width: 800px;
}

.soundcloud-icon-container {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.soundcloud-main-icon {
  font-size: 4rem;
  color: #ff5500;
  z-index: 2;
  filter: drop-shadow(0 0 25px rgba(255, 85, 0, 0.5));
  animation: scIconPulse 2s ease-in-out infinite;
}

@keyframes scIconPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 25px rgba(255, 85, 0, 0.5)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 40px rgba(255, 85, 0, 0.8)); }
}

.soundcloud-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 85, 0, 0.4);
  border-radius: 50%;
  animation: scPulseRing 3s ease-out infinite;
}

.soundcloud-pulse.delay-1 { animation-delay: 1s; }
.soundcloud-pulse.delay-2 { animation-delay: 2s; }

@keyframes scPulseRing {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.soundcloud-title-section {
  flex: 1;
}

.soundcloud-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff5500;
  margin-bottom: 10px;
  padding: 5px 15px;
  background: rgba(255, 85, 0, 0.15);
  border-radius: 20px;
  animation: scLabelGlow 2s ease-in-out infinite;
}

@keyframes scLabelGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 85, 0, 0.3); }
  50% { box-shadow: 0 0 25px rgba(255, 85, 0, 0.6); }
}

.soundcloud-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 0 0 40px rgba(255, 85, 0, 0.3);
}

.soundcloud-meta {
  display: flex;
  gap: 25px;
}

.soundcloud-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.soundcloud-stat i {
  color: #ff5500;
}

.soundcloud-embed-container {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.soundcloud-embed-container iframe {
  display: block;
}

.soundcloud-tabs {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.sc-tab {
  padding: 10px 25px;
  background: rgba(255, 85, 0, 0.15);
  border: 1px solid rgba(255, 85, 0, 0.3);
  border-radius: 25px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sc-tab:hover {
  background: rgba(255, 85, 0, 0.3);
  border-color: rgba(255, 85, 0, 0.6);
}

.sc-tab.active {
  background: #ff5500;
  border-color: #ff5500;
  color: white;
  box-shadow: 0 5px 20px rgba(255, 85, 0, 0.4);
}

.sc-tab i {
  font-size: 0.8rem;
}

.soundcloud-embed-likes,
.soundcloud-embed-reposts {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.soundcloud-embed-likes iframe,
.soundcloud-embed-reposts iframe {
  display: block;
}

.soundcloud-cta-section {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 30px;
  background: rgba(255, 85, 0, 0.1);
  border: 1px solid rgba(255, 85, 0, 0.2);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.soundcloud-cta-section:hover {
  background: rgba(255, 85, 0, 0.2);
  border-color: rgba(255, 85, 0, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 85, 0, 0.3);
}

.soundcloud-play-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ff5500;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(255, 85, 0, 0.4);
}

.soundcloud-play-btn i {
  font-size: 1.25rem;
  color: white;
}

.soundcloud-cta-text {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.soundcloud-cta-arrow {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.soundcloud-cta-section:hover .soundcloud-cta-arrow {
  transform: translateX(5px);
  color: #ff5500;
}

@media (max-width: 768px) {
  .soundcloud-revolution {
    min-height: 500px;
  }
  
  .soundcloud-content-wrapper {
    padding: 35px 20px;
  }
  
  .soundcloud-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .soundcloud-icon-container {
    width: 80px;
    height: 80px;
  }
  
  .soundcloud-main-icon {
    font-size: 3rem;
  }
  
  .soundcloud-title {
    font-size: 1.5rem;
  }
  
  .soundcloud-meta {
    justify-content: center;
  }
  
  .soundcloud-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .sc-tab {
    padding: 8px 18px;
    font-size: 0.75rem;
  }
  
  .soundcloud-cta-section {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

.avirasphere-revolution {
  display: block;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 700px;
  overflow: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.avira-bg-layers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.avira-lofi-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 25%, #2d1b4e 50%, #1a1a2e 75%, #0d0d0d 100%);
  background-size: 400% 400%;
  animation: lofiShift 20s ease-in-out infinite;
}

@keyframes lofiShift {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 50%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
}

.avira-bokeh span {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  animation: bokehFloat 15s ease-in-out infinite;
}

.avira-bokeh span:nth-child(1) { width: 200px; height: 200px; background: rgba(168, 85, 247, 0.4); left: 5%; top: 10%; animation-delay: 0s; }
.avira-bokeh span:nth-child(2) { width: 150px; height: 150px; background: rgba(236, 72, 153, 0.3); right: 10%; top: 20%; animation-delay: 2s; }
.avira-bokeh span:nth-child(3) { width: 180px; height: 180px; background: rgba(59, 130, 246, 0.3); left: 20%; bottom: 15%; animation-delay: 4s; }
.avira-bokeh span:nth-child(4) { width: 120px; height: 120px; background: rgba(168, 85, 247, 0.5); right: 25%; bottom: 25%; animation-delay: 1s; }
.avira-bokeh span:nth-child(5) { width: 100px; height: 100px; background: rgba(236, 72, 153, 0.4); left: 40%; top: 5%; animation-delay: 3s; }
.avira-bokeh span:nth-child(6) { width: 160px; height: 160px; background: rgba(139, 92, 246, 0.3); right: 5%; bottom: 10%; animation-delay: 5s; }
.avira-bokeh span:nth-child(7) { width: 90px; height: 90px; background: rgba(192, 132, 252, 0.4); left: 60%; top: 30%; animation-delay: 2.5s; }
.avira-bokeh span:nth-child(8) { width: 130px; height: 130px; background: rgba(168, 85, 247, 0.3); left: 75%; bottom: 40%; animation-delay: 1.5s; }
.avira-bokeh span:nth-child(9) { width: 110px; height: 110px; background: rgba(59, 130, 246, 0.4); left: 15%; top: 50%; animation-delay: 4.5s; }
.avira-bokeh span:nth-child(10) { width: 140px; height: 140px; background: rgba(236, 72, 153, 0.3); right: 35%; top: 10%; animation-delay: 0.5s; }
.avira-bokeh span:nth-child(11) { width: 80px; height: 80px; background: rgba(168, 85, 247, 0.5); left: 50%; bottom: 5%; animation-delay: 3.5s; }
.avira-bokeh span:nth-child(12) { width: 170px; height: 170px; background: rgba(139, 92, 246, 0.25); right: 50%; top: 40%; animation-delay: 2.8s; }
.avira-bokeh span:nth-child(13) { width: 95px; height: 95px; background: rgba(192, 132, 252, 0.35); left: 80%; top: 60%; animation-delay: 1.8s; }
.avira-bokeh span:nth-child(14) { width: 125px; height: 125px; background: rgba(168, 85, 247, 0.4); left: 30%; top: 70%; animation-delay: 4.2s; }
.avira-bokeh span:nth-child(15) { width: 105px; height: 105px; background: rgba(59, 130, 246, 0.35); right: 15%; top: 55%; animation-delay: 0.8s; }

@keyframes bokehFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  25% { transform: translate(30px, -20px) scale(1.1); opacity: 0.5; }
  50% { transform: translate(-20px, 30px) scale(0.9); opacity: 0.4; }
  75% { transform: translate(20px, 20px) scale(1.05); opacity: 0.35; }
}

.avira-light-streaks {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.streak {
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(168, 85, 247, 0.3), transparent);
  animation: streakMove 8s linear infinite;
}

.streak-1 { left: 20%; animation-delay: 0s; }
.streak-2 { left: 50%; animation-delay: 2.5s; }
.streak-3 { left: 80%; animation-delay: 5s; }

@keyframes streakMove {
  0% { transform: translateY(-100%) rotate(15deg); opacity: 0; }
  50% { opacity: 0.6; }
  100% { transform: translateY(100%) rotate(15deg); opacity: 0; }
}

.avira-noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.08;
  pointer-events: none;
}

.avira-content-wrapper {
  position: relative;
  z-index: 10;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.avira-hero-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avira-giant-logo {
  width: 350px;
  height: 350px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 0 80px rgba(168, 85, 247, 0.8));
  animation: giantLogoPulse 4s ease-in-out infinite;
}

@keyframes giantLogoPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 80px rgba(168, 85, 247, 0.8)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 120px rgba(168, 85, 247, 1)); }
}

.avira-logo-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  animation: logoGlowPulse 3s ease-in-out infinite;
}

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

.avira-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #e879f9;
  padding: 10px 25px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  animation: labelPulse 2s ease-in-out infinite;
}

@keyframes labelPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(168, 85, 247, 0.3); }
  50% { box-shadow: 0 0 40px rgba(168, 85, 247, 0.6); }
}

.avira-service-sphere {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 20px auto;
  animation: sphereRotate 60s linear infinite;
}

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

.sphere-service {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center;
  transform: rotate(calc(var(--i) * 18deg)) translateX(220px) rotate(calc(var(--i) * -18deg));
  animation: sphereRotate 60s linear infinite reverse;
}

.sphere-service span {
  display: block;
  padding: 10px 18px;
  background: rgba(30, 30, 50, 0.8);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.sphere-service.glow span {
  animation: serviceGlow 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.sphere-service.shake span {
  animation: serviceShake 0.5s ease-in-out infinite;
}

@keyframes serviceGlow {
  0%, 100% { 
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
    border-color: rgba(168, 85, 247, 0.4);
  }
  50% { 
    box-shadow: 0 0 35px rgba(168, 85, 247, 0.8), 0 0 60px rgba(168, 85, 247, 0.4);
    border-color: rgba(168, 85, 247, 0.8);
  }
}

@keyframes serviceShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px) rotate(-1deg); }
  75% { transform: translateX(2px) rotate(1deg); }
}

.sphere-service:hover span {
  background: rgba(168, 85, 247, 0.3);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.7);
}

@media (max-width: 768px) {
  .avirasphere-revolution {
    min-height: 600px;
  }
  
  .avira-giant-logo {
    width: 280px;
    height: 280px;
  }
  
  .avirasphere-card .banner-preview-icon {
    width: 120px !important;
    height: auto !important;
  }
  
  .avira-logo-glow {
    width: 350px;
    height: 350px;
  }
  
  .avira-service-sphere {
    width: 320px;
    height: 320px;
  }
  
  .sphere-service {
    transform: rotate(calc(var(--i) * 18deg)) translateX(140px) rotate(calc(var(--i) * -18deg));
  }
  
  .sphere-service span {
    padding: 6px 12px;
    font-size: 0.6rem;
  }
  
  .avira-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    padding: 8px 16px;
  }
}

.avira-cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 10px;
}

.avira-cta-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(138, 43, 226, 0.5);
}

.avira-cta-btn i { color: #fff; font-size: 1.4rem; }

.avirasphere-revolution:hover .avira-cta-btn {
  transform: scale(1.15);
  box-shadow: 0 12px 50px rgba(138, 43, 226, 0.7);
}

.avira-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.avira-cta-arrow {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.avirasphere-revolution:hover .avira-cta-arrow {
  transform: translateX(8px);
  color: #a855f7;
}

.skyflex-revolution {
  display: block;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 100vh;
  overflow: hidden;
  text-decoration: none;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.sky-bg-layers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.sky-gradient-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #0a1628 0%, #1e3a5f 40%, #3b82f6 80%, #60a5fa 100%);
  background-size: 100% 200%;
  animation: skyGradientShift 15s ease-in-out infinite;
}

@keyframes skyGradientShift {
  0%, 100% { background-position: 50% 0%; }
  50% { background-position: 50% 100%; }
}

.sky-topo-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0.4;
}

.topo-svg {
  position: absolute;
  width: 200%;
  height: 100%;
  animation: topoScroll 30s linear infinite;
}

@keyframes topoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.topo-line {
  stroke: rgba(0, 212, 255, 0.5);
  stroke-width: 1.5;
  stroke-linecap: round;
  animation: topoGlow 4s ease-in-out infinite;
}

.topo-line.topo-1 { stroke: rgba(0, 212, 255, 0.6); animation-delay: 0s; }
.topo-line.topo-2 { stroke: rgba(96, 165, 250, 0.5); animation-delay: 0.5s; }
.topo-line.topo-3 { stroke: rgba(0, 212, 255, 0.4); animation-delay: 1s; }
.topo-line.topo-4 { stroke: rgba(96, 165, 250, 0.5); animation-delay: 1.5s; }
.topo-line.topo-5 { stroke: rgba(0, 212, 255, 0.6); animation-delay: 2s; }
.topo-line.topo-6 { stroke: rgba(96, 165, 250, 0.4); animation-delay: 2.5s; }

@keyframes topoGlow {
  0%, 100% { stroke-opacity: 0.3; stroke-width: 1; }
  50% { stroke-opacity: 1; stroke-width: 2; }
}

.sky-clouds {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  filter: blur(30px);
  animation: cloudDrift 30s linear infinite;
}

.cloud-1 {
  width: 400px;
  height: 80px;
  top: 20%;
  left: -200px;
  animation-duration: 35s;
}

.cloud-2 {
  width: 300px;
  height: 60px;
  top: 50%;
  left: -150px;
  animation-delay: 10s;
  animation-duration: 40s;
}

.cloud-3 {
  width: 350px;
  height: 70px;
  top: 70%;
  left: -175px;
  animation-delay: 20s;
  animation-duration: 45s;
}

@keyframes cloudDrift {
  from { transform: translateX(0); }
  to { transform: translateX(calc(100vw + 400px)); }
}

.sky-particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(96, 165, 250, 0.8);
  border-radius: 50%;
  animation: skyFloat 10s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(96, 165, 250, 0.6);
}

.sky-particles span:nth-child(1) { left: 5%; top: 30%; animation-delay: 0s; }
.sky-particles span:nth-child(2) { left: 20%; top: 60%; animation-delay: 1s; }
.sky-particles span:nth-child(3) { left: 35%; top: 20%; animation-delay: 2s; }
.sky-particles span:nth-child(4) { left: 50%; top: 70%; animation-delay: 0.5s; }
.sky-particles span:nth-child(5) { left: 65%; top: 40%; animation-delay: 1.5s; }
.sky-particles span:nth-child(6) { left: 80%; top: 80%; animation-delay: 2.5s; }
.sky-particles span:nth-child(7) { left: 90%; top: 25%; animation-delay: 0.8s; }
.sky-particles span:nth-child(8) { left: 15%; top: 85%; animation-delay: 1.8s; }
.sky-particles span:nth-child(9) { left: 45%; top: 15%; animation-delay: 3s; }
.sky-particles span:nth-child(10) { left: 75%; top: 55%; animation-delay: 0.3s; }

@keyframes skyFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.5; }
  50% { transform: translateY(-25px) translateX(15px); opacity: 1; }
}

.sky-drone {
  position: absolute;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.15);
  animation: droneFly 20s ease-in-out infinite;
  top: 30%;
  left: 10%;
}

@keyframes droneFly {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(60vw, -30px) rotate(5deg); }
  50% { transform: translate(70vw, 20px) rotate(-3deg); }
  75% { transform: translate(30vw, -10px) rotate(2deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

.sky-survey-equipment {
  position: absolute;
  top: 12%;
  right: 8%;
  z-index: 20;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.survey-tripod {
  position: relative;
  width: 80px;
  height: 120px;
}

.tripod-head {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 35px;
  background: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 100%);
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.survey-scope {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 20px;
  background: linear-gradient(180deg, #2a2a2a 0%, #111 100%);
  border-radius: 3px;
  border: 1px solid #444;
}

.scope-lens {
  position: absolute;
  top: 10px;
  right: -8px;
  width: 16px;
  height: 16px;
  background: #111;
  border-radius: 50%;
  border: 2px solid #00d4ff;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
  animation: lensGlow 2s ease-in-out infinite;
}

.scope-lens::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #00d4ff 0%, #0066ff 100%);
  border-radius: 50%;
}

@keyframes lensGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(0, 212, 255, 0.6); }
  50% { box-shadow: 0 0 25px rgba(0, 212, 255, 1); }
}

.tripod-leg {
  position: absolute;
  width: 4px;
  height: 85px;
  background: linear-gradient(180deg, #555 0%, #333 100%);
  border-radius: 2px;
  top: 30px;
}

.tripod-leg.leg-1 {
  left: 50%;
  transform: translateX(-50%) rotate(-15deg);
  transform-origin: top center;
}

.tripod-leg.leg-2 {
  left: 25%;
  transform: rotate(15deg);
  transform-origin: top center;
}

.tripod-leg.leg-3 {
  right: 25%;
  transform: rotate(-15deg);
  transform-origin: top center;
}

.survey-data-overlay {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  background: rgba(0, 20, 40, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 8px;
  backdrop-filter: blur(5px);
  animation: dataFlicker 4s ease-in-out infinite;
}

@keyframes dataFlicker {
  0%, 100% { opacity: 1; border-color: rgba(0, 212, 255, 0.4); }
  25% { opacity: 0.95; border-color: rgba(0, 212, 255, 0.6); }
  50% { opacity: 1; border-color: rgba(0, 212, 255, 0.3); }
  75% { opacity: 0.98; border-color: rgba(0, 212, 255, 0.7); }
}

.data-readout {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.readout-label {
  font-size: 0.6rem;
  color: rgba(0, 212, 255, 0.7);
  letter-spacing: 2px;
  font-weight: 600;
}

.readout-value {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
  animation: valueUpdate 3s steps(1) infinite;
}

@keyframes valueUpdate {
  0%, 33% { content: '324.7m'; }
  33%, 66% { opacity: 0.9; }
  66%, 100% { opacity: 1; }
}

@media (max-width: 768px) {
  .sky-survey-equipment {
    top: 8%;
    right: 5%;
    gap: 15px;
  }
  
  .survey-tripod {
    width: 60px;
    height: 90px;
  }
  
  .tripod-head {
    width: 40px;
    height: 28px;
  }
  
  .survey-scope {
    width: 32px;
    height: 16px;
  }
  
  .scope-lens {
    width: 12px;
    height: 12px;
    right: -6px;
    top: 8px;
  }
  
  .tripod-leg {
    height: 60px;
  }
  
  .survey-data-overlay {
    padding: 10px;
  }
  
  .readout-value {
    font-size: 0.85rem;
  }
}

.sky-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.8), transparent);
  animation: scanLine 4s linear infinite;
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

@keyframes scanLine {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.sky-content-wrapper {
  position: relative;
  z-index: 10;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 30px;
  text-align: center;
}

.sky-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.sky-logo-container {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sky-main-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.6));
  animation: skyLogoPulse 3s ease-in-out infinite;
}

@keyframes skyLogoPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.6)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 50px rgba(59, 130, 246, 0.9)); }
}

.sky-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(59, 130, 246, 0.5);
  border-radius: 50%;
  animation: skyPulseRing 3s ease-out infinite;
}

.sky-pulse.delay-1 { animation-delay: 1s; }
.sky-pulse.delay-2 { animation-delay: 2s; }

@keyframes skyPulseRing {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.sky-title-section { 
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sky-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 10px;
  padding: 5px 15px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  animation: skyLabelGlow 2s ease-in-out infinite;
}

@keyframes skyLabelGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(59, 130, 246, 0.4); }
  50% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.7); }
}

.sky-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  line-height: 1.4;
  max-width: 90%;
  width: 100%;
}

@media (max-width: 768px) {
  .sky-title {
    font-size: 1.4rem;
    font-weight: 400;
    max-width: 90%;
    margin-top: 25px;
  }
}


.sky-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.cta-button i {
  font-size: 0.9rem;
}

.sky-radar {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.8), transparent);
  transform-origin: left center;
  animation: radarSweep 3s linear infinite;
}

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

.radar-ping {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #60a5fa;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgba(96, 165, 250, 0.8);
  animation: radarPing 1.5s ease-out infinite;
}

@keyframes radarPing {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

.sky-services-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 20px;
  max-width: 900px;
}

.sky-service-card {
  padding: 25px 35px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.sky-service-card i {
  font-size: 1.8rem;
  color: #60a5fa;
}

.sky-service-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

.sky-service-card small {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

.sky-service-card:hover,
.sky-service-card.scroll-active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.sky-cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 10px;
}

.sky-cta-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
}

.sky-cta-btn i { color: #fff; font-size: 1.4rem; }

.skyflex-revolution:hover .sky-cta-btn {
  transform: scale(1.15);
  box-shadow: 0 12px 50px rgba(59, 130, 246, 0.7);
}

.sky-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.sky-cta-arrow {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.skyflex-revolution:hover .sky-cta-arrow {
  transform: translateX(8px);
  color: #60a5fa;
}

@media (max-width: 768px) {
  .avirasphere-revolution,
  .skyflex-revolution {
    min-height: 550px;
  }
  
  .avira-content-wrapper,
  .sky-content-wrapper {
    padding: 40px 25px;
  }
  
  .avira-header,
  .sky-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .avira-logo-container,
  .sky-logo-container {
    width: 120px;
    height: 120px;
  }
  
  .avira-main-logo,
  .sky-main-logo {
    width: 80px;
    height: 80px;
  }
  
  .avira-title,
  .sky-title {
    font-size: 2rem;
  }
  
  .avira-meta,
  .sky-meta {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .sky-services-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .sky-service-card {
    width: 100%;
    max-width: 280px;
  }
  
  .avira-cta-section,
  .sky-cta-section {
    flex-direction: column;
    gap: 15px;
  }
}

.clients-section {
  margin-bottom: 60px;
  padding: 30px 0;
}

.clients-carousel-wrapper {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-carousel {
  overflow: hidden;
  width: 100%;
}

.clients-track {
  display: flex;
  animation: scrollClients 30s linear infinite;
  width: max-content;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 50px;
  min-width: 220px;
}

.client-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.client-item:hover .client-name {
  color: #333;
}

.client-logo {
  max-height: 40px;
  max-width: 120px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.client-item:hover .client-logo {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .clients-track {
    animation: scrollClients 20s linear infinite;
  }
  
  .client-item {
    padding: 15px 30px;
    min-width: 150px;
  }
  
  .client-name {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }
}

.music-selection {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
}

.music-selection-header {
  text-align: center;
  margin-bottom: 40px;
}

.music-selection-icon {
  font-size: 3rem;
  color: #333;
  margin-bottom: 20px;
}

.music-selection-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.music-selection-subtitle {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
}

.music-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 400px;
}

.music-full-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  aspect-ratio: 16 / 9;
}

.music-full-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.music-card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.spotify-gradient {
  background: linear-gradient(135deg, #1DB954 0%, #191414 50%, #1DB954 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

.soundcloud-gradient {
  background: linear-gradient(135deg, #ff5500 0%, #ff8800 50%, #ff5500 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.music-card-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.music-card-particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: floatParticle 6s ease-in-out infinite;
}

.music-card-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.music-card-particles span:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.music-card-particles span:nth-child(3) { top: 40%; left: 50%; animation-delay: 2s; }
.music-card-particles span:nth-child(4) { top: 80%; left: 20%; animation-delay: 3s; }
.music-card-particles span:nth-child(5) { top: 10%; left: 70%; animation-delay: 4s; }

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.5); opacity: 0.6; }
}

.music-card-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  text-align: center;
}

.music-card-icon {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.music-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.music-card-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
}

#music-overlay .banner-expanded-close {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #333;
}

#music-overlay .banner-expanded-close:hover {
  background: rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .music-selection-title {
    font-size: 2rem;
  }
  
  .music-option-card {
    padding: 16px 20px;
  }
  
  .music-option-icon {
    width: 48px;
    height: 48px;
  }
  
  .music-option-icon i {
    font-size: 1.5rem;
  }
  
  .hobbies-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  
  .personal-card-icon {
    font-size: 1.8rem;
  }
  
  .personal-card-title {
    font-size: 0.85rem;
  }
  
  .personal-card-subtitle {
    font-size: 0.65rem;
  }
}
