:root {
  --primary-glow: #a855f7;
  --secondary-glow: #3b82f6;
  --bg-dark: #050505;
  --text-main: #ffffff;
  --text-muted: #9ca3af;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  position: relative;
  /* UPDATED: Removed 'touch-action: none' to allow scrolling on mobile */
}

/* --- BACKGROUND LAYERS --- */

.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% -20%, #1a0b2e 0%, #000000 80%);
  z-index: -5;
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
  pointer-events: none;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      #eee,
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 90px 40px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 130px 80px, #fff, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.6;
}

.comet {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff, 0 0 20px var(--secondary-glow);
  z-index: -3;
  opacity: 0;
  pointer-events: none;
}
.comet::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.8));
}

#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  mix-blend-mode: lighten;
}

/* --- MAIN LAYOUT --- */
main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem 2rem 1rem;
  position: relative;
  z-index: 10;
}

.header-content {
  text-align: center;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(20px);
  padding: 0 15px;
  pointer-events: none;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

p.subtitle {
  color: #d1d5db;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  text-wrap: balance;
}

/* --- SWIPER CAROUSEL --- */
.swiper {
  width: 100%;
  max-width: 1400px;
  padding-top: 15px;
  padding-bottom: 45px;
  overflow: visible;
}

.swiper-wrapper {
  align-items: center;
  transform-style: preserve-3d;
}

.swiper-slide {
  width: 300px;
  height: 410px;
  background: transparent;
}

.slide-inner {
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 23, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.swiper-slide-active .slide-inner {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.2),
    inset 0 0 20px rgba(139, 92, 246, 0.1);
  transform: scale(1.05);
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background-color: #ffffff !important;
  opacity: 0.4 !important;
  width: 10px;
  height: 10px;
}
.swiper-pagination-bullet-active {
  background-color: var(--primary-glow) !important;
  opacity: 1 !important;
}

/* --- CARD CONTENT --- */
.card-icon-wrapper {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.card-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(167, 139, 250, 0.5));
}

.card-content {
  text-align: center;
  width: 100%;
}

.header-line-1 {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.header-line-2 {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.card-btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  width: 100%;
  max-width: 180px;
  cursor: pointer;
  position: relative;
  z-index: 20;
}
.card-btn.disabled {
  background: #27272a;
  color: #52525b;
  cursor: not-allowed;
}

/* --- SOCIALS --- */
.socials-wrapper {
  margin-top: 1.5rem;
  padding: 0.85rem 2rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
}

.socials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: center;
  width: fit-content;
}

.social-link {
  display: flex;
  align-items: center;
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease-in-out;
  cursor: pointer;
}

.social-link:hover {
  color: var(--primary-glow);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-icon {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.arrow-icon {
  margin-left: 4px;
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.2s ease;
}

.social-link:hover .arrow-icon {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .swiper {
    padding: 0 20px;
    margin-top: 1rem;
  }
  .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: none !important;
    width: 100%;
  }
  .swiper-slide {
    width: 100%;
    max-width: 340px;
    height: auto;
    min-height: 410px;
    transform: none !important;
    margin: 0 auto !important;
  }
  .slide-inner {
    transform: none !important;
    cursor: default;
  }

  .socials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
:root {
  --primary-glow: #a855f7;
  --secondary-glow: #3b82f6;
  --bg-dark: #050505;
  --text-main: #ffffff;
  --text-muted: #9ca3af;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  position: relative;
  /* UPDATED: Removed 'touch-action: none' to allow scrolling on mobile */
}

/* --- BACKGROUND LAYERS --- */

.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% -20%, #1a0b2e 0%, #000000 80%);
  z-index: -5;
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
  pointer-events: none;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      #eee,
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 90px 40px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 130px 80px, #fff, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.6;
}

.comet {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff, 0 0 20px var(--secondary-glow);
  z-index: -3;
  opacity: 0;
  pointer-events: none;
}
.comet::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.8));
}

#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  mix-blend-mode: lighten;
}

/* --- MAIN LAYOUT --- */
main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem 2rem 1rem;
  position: relative;
  z-index: 10;
}

.header-content {
  text-align: center;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(20px);
  padding: 0 15px;
  pointer-events: none;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

p.subtitle {
  color: #d1d5db;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  text-wrap: balance;
}

/* --- SWIPER CAROUSEL --- */
.swiper {
  width: 100%;
  max-width: 1400px;
  padding-top: 15px;
  padding-bottom: 45px;
  overflow: visible;
}

.swiper-wrapper {
  align-items: center;
  transform-style: preserve-3d;
}

.swiper-slide {
  width: 300px;
  height: 410px;
  background: transparent;
}

.slide-inner {
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 23, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.swiper-slide-active .slide-inner {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.2),
    inset 0 0 20px rgba(139, 92, 246, 0.1);
  transform: scale(1.05);
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background-color: #ffffff !important;
  opacity: 0.4 !important;
  width: 10px;
  height: 10px;
}
.swiper-pagination-bullet-active {
  background-color: var(--primary-glow) !important;
  opacity: 1 !important;
}

/* --- CARD CONTENT --- */
.card-icon-wrapper {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.card-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(167, 139, 250, 0.5));
}

.card-content {
  text-align: center;
  width: 100%;
}

.header-line-1 {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.header-line-2 {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.card-btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  width: 100%;
  max-width: 180px;
  cursor: pointer;
  position: relative;
  z-index: 20;
}
.card-btn.disabled {
  background: #27272a;
  color: #52525b;
  cursor: not-allowed;
}

/* --- SOCIALS --- */
.socials-wrapper {
  margin-top: 1.5rem;
  padding: 0.85rem 2rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
}

.socials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: center;
  width: fit-content;
}

.social-link {
  display: flex;
  align-items: center;
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease-in-out;
  cursor: pointer;
}

.social-link:hover {
  color: var(--primary-glow);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-icon {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.arrow-icon {
  margin-left: 4px;
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.2s ease;
}

.social-link:hover .arrow-icon {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .swiper {
    padding: 0 20px;
    margin-top: 1rem;
  }
  .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: none !important;
    width: 100%;
  }
  .swiper-slide {
    width: 100%;
    max-width: 340px;
    height: auto;
    min-height: 410px;
    transform: none !important;
    margin: 0 auto !important;
  }
  .slide-inner {
    transform: none !important;
    cursor: default;
  }

  .socials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
:root {
  --primary-glow: #a855f7;
  --secondary-glow: #3b82f6;
  --bg-dark: #050505;
  --text-main: #ffffff;
  --text-muted: #9ca3af;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  position: relative;
  /* UPDATED: Removed 'touch-action: none' to allow scrolling on mobile */
}

/* --- BACKGROUND LAYERS --- */

.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% -20%, #1a0b2e 0%, #000000 80%);
  z-index: -5;
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
  pointer-events: none;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      #eee,
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 90px 40px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 130px 80px, #fff, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.6;
}

.comet {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff, 0 0 20px var(--secondary-glow);
  z-index: -3;
  opacity: 0;
  pointer-events: none;
}
.comet::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.8));
}

#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  mix-blend-mode: lighten;
}

/* --- MAIN LAYOUT --- */
main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem 2rem 1rem;
  position: relative;
  z-index: 10;
}

.header-content {
  text-align: center;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(20px);
  padding: 0 15px;
  pointer-events: none;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

p.subtitle {
  color: #d1d5db;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  text-wrap: balance;
}

/* --- SWIPER CAROUSEL --- */
.swiper {
  width: 100%;
  max-width: 1400px;
  padding-top: 15px;
  padding-bottom: 45px;
  overflow: visible;
}

.swiper-wrapper {
  align-items: center;
  transform-style: preserve-3d;
}

.swiper-slide {
  width: 300px;
  height: 410px;
  background: transparent;
}

.slide-inner {
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 23, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.swiper-slide-active .slide-inner {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.2),
    inset 0 0 20px rgba(139, 92, 246, 0.1);
  transform: scale(1.05);
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background-color: #ffffff !important;
  opacity: 0.4 !important;
  width: 10px;
  height: 10px;
}
.swiper-pagination-bullet-active {
  background-color: var(--primary-glow) !important;
  opacity: 1 !important;
}

/* --- CARD CONTENT --- */
.card-icon-wrapper {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.card-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(167, 139, 250, 0.5));
}

.card-content {
  text-align: center;
  width: 100%;
}

.header-line-1 {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.header-line-2 {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.card-btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  width: 100%;
  max-width: 180px;
  cursor: pointer;
  position: relative;
  z-index: 20;
}
.card-btn.disabled {
  background: #27272a;
  color: #52525b;
  cursor: not-allowed;
}

/* --- SOCIALS --- */
.socials-wrapper {
  margin-top: 1.5rem;
  padding: 0.85rem 2rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
}

.socials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: center;
  width: fit-content;
}

.social-link {
  display: flex;
  align-items: center;
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease-in-out;
  cursor: pointer;
}

.social-link:hover {
  color: var(--primary-glow);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-icon {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.arrow-icon {
  margin-left: 4px;
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.2s ease;
}

.social-link:hover .arrow-icon {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .swiper {
    padding: 0 20px;
    margin-top: 1rem;
  }
  .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: none !important;
    width: 100%;
  }
  .swiper-slide {
    width: 100%;
    max-width: 340px;
    height: auto;
    min-height: 410px;
    transform: none !important;
    margin: 0 auto !important;
  }
  .slide-inner {
    transform: none !important;
    cursor: default;
  }

  .socials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
:root {
  --primary-glow: #a855f7;
  --secondary-glow: #3b82f6;
  --bg-dark: #050505;
  --text-main: #ffffff;
  --text-muted: #9ca3af;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  position: relative;
  /* UPDATED: Removed 'touch-action: none' to allow scrolling on mobile */
}

/* --- BACKGROUND LAYERS --- */

.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% -20%, #1a0b2e 0%, #000000 80%);
  z-index: -5;
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
  pointer-events: none;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      #eee,
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 90px 40px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 130px 80px, #fff, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.6;
}

.comet {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff, 0 0 20px var(--secondary-glow);
  z-index: -3;
  opacity: 0;
  pointer-events: none;
}
.comet::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.8));
}

#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  mix-blend-mode: lighten;
}

/* --- MAIN LAYOUT --- */
main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem 2rem 1rem;
  position: relative;
  z-index: 10;
}

.header-content {
  text-align: center;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(20px);
  padding: 0 15px;
  pointer-events: none;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

p.subtitle {
  color: #d1d5db;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  text-wrap: balance;
}

/* --- SWIPER CAROUSEL --- */
.swiper {
  width: 100%;
  max-width: 1400px;
  padding-top: 15px;
  padding-bottom: 45px;
  overflow: visible;
}

.swiper-wrapper {
  align-items: center;
  transform-style: preserve-3d;
}

.swiper-slide {
  width: 300px;
  height: 410px;
  background: transparent;
}

.slide-inner {
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 23, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.swiper-slide-active .slide-inner {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.2),
    inset 0 0 20px rgba(139, 92, 246, 0.1);
  transform: scale(1.05);
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background-color: #ffffff !important;
  opacity: 0.4 !important;
  width: 10px;
  height: 10px;
}
.swiper-pagination-bullet-active {
  background-color: var(--primary-glow) !important;
  opacity: 1 !important;
}

/* --- CARD CONTENT --- */
.card-icon-wrapper {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.card-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(167, 139, 250, 0.5));
}

.card-content {
  text-align: center;
  width: 100%;
}

.header-line-1 {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.header-line-2 {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.card-btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  width: 100%;
  max-width: 180px;
  cursor: pointer;
  position: relative;
  z-index: 20;
}
.card-btn.disabled {
  background: #27272a;
  color: #52525b;
  cursor: not-allowed;
}

/* --- SOCIALS --- */
.socials-wrapper {
  margin-top: 1.5rem;
  padding: 0.85rem 2rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
}

.socials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: center;
  width: fit-content;
}

.social-link {
  display: flex;
  align-items: center;
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease-in-out;
  cursor: pointer;
}

.social-link:hover {
  color: var(--primary-glow);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-icon {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.arrow-icon {
  margin-left: 4px;
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.2s ease;
}

.social-link:hover .arrow-icon {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .swiper {
    padding: 0 20px;
    margin-top: 1rem;
  }
  .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: none !important;
    width: 100%;
  }
  .swiper-slide {
    width: 100%;
    max-width: 340px;
    height: auto;
    min-height: 410px;
    transform: none !important;
    margin: 0 auto !important;
  }
  .slide-inner {
    transform: none !important;
    cursor: default;
  }

  .socials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
:root {
  --primary-glow: #a855f7;
  --secondary-glow: #3b82f6;
  --bg-dark: #050505;
  --text-main: #ffffff;
  --text-muted: #9ca3af;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  position: relative;
  /* UPDATED: Removed 'touch-action: none' to allow scrolling on mobile */
}

/* --- BACKGROUND LAYERS --- */

.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% -20%, #1a0b2e 0%, #000000 80%);
  z-index: -5;
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
  pointer-events: none;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      #eee,
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 90px 40px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 130px 80px, #fff, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.6;
}

.comet {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff, 0 0 20px var(--secondary-glow);
  z-index: -3;
  opacity: 0;
  pointer-events: none;
}
.comet::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.8));
}

#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  mix-blend-mode: lighten;
}

/* --- MAIN LAYOUT --- */
main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem 2rem 1rem;
  position: relative;
  z-index: 10;
}

.header-content {
  text-align: center;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(20px);
  padding: 0 15px;
  pointer-events: none;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

p.subtitle {
  color: #d1d5db;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  text-wrap: balance;
}

/* --- SWIPER CAROUSEL --- */
.swiper {
  width: 100%;
  max-width: 1400px;
  padding-top: 15px;
  padding-bottom: 45px;
  overflow: visible;
}

.swiper-wrapper {
  align-items: center;
  transform-style: preserve-3d;
}

.swiper-slide {
  width: 300px;
  height: 410px;
  background: transparent;
}

.slide-inner {
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 23, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.swiper-slide-active .slide-inner {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.2),
    inset 0 0 20px rgba(139, 92, 246, 0.1);
  transform: scale(1.05);
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background-color: #ffffff !important;
  opacity: 0.4 !important;
  width: 10px;
  height: 10px;
}
.swiper-pagination-bullet-active {
  background-color: var(--primary-glow) !important;
  opacity: 1 !important;
}

/* --- CARD CONTENT --- */
.card-icon-wrapper {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.card-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(167, 139, 250, 0.5));
}

.card-content {
  text-align: center;
  width: 100%;
}

.header-line-1 {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.header-line-2 {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.card-btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  width: 100%;
  max-width: 180px;
  cursor: pointer;
  position: relative;
  z-index: 20;
}
.card-btn.disabled {
  background: #27272a;
  color: #52525b;
  cursor: not-allowed;
}

/* --- SOCIALS --- */
.socials-wrapper {
  margin-top: 1.5rem;
  padding: 0.85rem 2rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
}

.socials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: center;
  width: fit-content;
}

.social-link {
  display: flex;
  align-items: center;
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease-in-out;
  cursor: pointer;
}

.social-link:hover {
  color: var(--primary-glow);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-icon {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.arrow-icon {
  margin-left: 4px;
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.2s ease;
}

.social-link:hover .arrow-icon {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .swiper {
    padding: 0 20px;
    margin-top: 1rem;
  }
  .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: none !important;
    width: 100%;
  }
  .swiper-slide {
    width: 100%;
    max-width: 340px;
    height: auto;
    min-height: 410px;
    transform: none !important;
    margin: 0 auto !important;
  }
  .slide-inner {
    transform: none !important;
    cursor: default;
  }

  .socials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
:root {
  --primary-glow: #a855f7;
  --secondary-glow: #3b82f6;
  --bg-dark: #050505;
  --text-main: #ffffff;
  --text-muted: #9ca3af;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  position: relative;
  /* UPDATED: Removed 'touch-action: none' to allow scrolling on mobile */
}

/* --- BACKGROUND LAYERS --- */

.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% -20%, #1a0b2e 0%, #000000 80%);
  z-index: -5;
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
  pointer-events: none;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      #eee,
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 90px 40px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 130px 80px, #fff, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.6;
}

.comet {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff, 0 0 20px var(--secondary-glow);
  z-index: -3;
  opacity: 0;
  pointer-events: none;
}
.comet::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.8));
}

#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  mix-blend-mode: lighten;
}

/* --- MAIN LAYOUT --- */
main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem 2rem 1rem;
  position: relative;
  z-index: 10;
}

.header-content {
  text-align: center;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(20px);
  padding: 0 15px;
  pointer-events: none;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

p.subtitle {
  color: #d1d5db;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  text-wrap: balance;
}

/* --- SWIPER CAROUSEL --- */
.swiper {
  width: 100%;
  max-width: 1400px;
  padding-top: 15px;
  padding-bottom: 45px;
  overflow: visible;
}

.swiper-wrapper {
  align-items: center;
  transform-style: preserve-3d;
}

.swiper-slide {
  width: 300px;
  height: 410px;
  background: transparent;
}

.slide-inner {
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 23, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.swiper-slide-active .slide-inner {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.2),
    inset 0 0 20px rgba(139, 92, 246, 0.1);
  transform: scale(1.05);
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background-color: #ffffff !important;
  opacity: 0.4 !important;
  width: 10px;
  height: 10px;
}
.swiper-pagination-bullet-active {
  background-color: var(--primary-glow) !important;
  opacity: 1 !important;
}

/* --- CARD CONTENT --- */
.card-icon-wrapper {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.card-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(167, 139, 250, 0.5));
}

.card-content {
  text-align: center;
  width: 100%;
}

.header-line-1 {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.header-line-2 {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.card-btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  width: 100%;
  max-width: 180px;
  cursor: pointer;
  position: relative;
  z-index: 20;
}
.card-btn.disabled {
  background: #27272a;
  color: #52525b;
  cursor: not-allowed;
}

/* --- SOCIALS --- */
.socials-wrapper {
  margin-top: 1.5rem;
  padding: 0.85rem 2rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
}

.socials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: center;
  width: fit-content;
}

.social-link {
  display: flex;
  align-items: center;
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease-in-out;
  cursor: pointer;
}

.social-link:hover {
  color: var(--primary-glow);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-icon {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.arrow-icon {
  margin-left: 4px;
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.2s ease;
}

.social-link:hover .arrow-icon {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .swiper {
    padding: 0 20px;
    margin-top: 1rem;
  }
  .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: none !important;
    width: 100%;
  }
  .swiper-slide {
    width: 100%;
    max-width: 340px;
    height: auto;
    min-height: 410px;
    transform: none !important;
    margin: 0 auto !important;
  }
  .slide-inner {
    transform: none !important;
    cursor: default;
  }

  .socials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
:root {
  --primary-glow: #a855f7;
  --secondary-glow: #3b82f6;
  --bg-dark: #050505;
  --text-main: #ffffff;
  --text-muted: #9ca3af;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  position: relative;
  /* UPDATED: Removed 'touch-action: none' to allow scrolling on mobile */
}

/* --- BACKGROUND LAYERS --- */

.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% -20%, #1a0b2e 0%, #000000 80%);
  z-index: -5;
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
  pointer-events: none;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      #eee,
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 90px 40px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 130px 80px, #fff, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.6;
}

.comet {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff, 0 0 20px var(--secondary-glow);
  z-index: -3;
  opacity: 0;
  pointer-events: none;
}
.comet::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.8));
}

#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  mix-blend-mode: lighten;
}

/* --- MAIN LAYOUT --- */
main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem 2rem 1rem;
  position: relative;
  z-index: 10;
}

.header-content {
  text-align: center;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(20px);
  padding: 0 15px;
  pointer-events: none;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

p.subtitle {
  color: #d1d5db;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  text-wrap: balance;
}

/* --- SWIPER CAROUSEL --- */
.swiper {
  width: 100%;
  max-width: 1400px;
  padding-top: 15px;
  padding-bottom: 45px;
  overflow: visible;
}

.swiper-wrapper {
  align-items: center;
  transform-style: preserve-3d;
}

.swiper-slide {
  width: 300px;
  height: 410px;
  background: transparent;
}

.slide-inner {
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 23, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.swiper-slide-active .slide-inner {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.2),
    inset 0 0 20px rgba(139, 92, 246, 0.1);
  transform: scale(1.05);
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background-color: #ffffff !important;
  opacity: 0.4 !important;
  width: 10px;
  height: 10px;
}
.swiper-pagination-bullet-active {
  background-color: var(--primary-glow) !important;
  opacity: 1 !important;
}

/* --- CARD CONTENT --- */
.card-icon-wrapper {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.card-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(167, 139, 250, 0.5));
}

.card-content {
  text-align: center;
  width: 100%;
}

.header-line-1 {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.header-line-2 {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.card-btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  width: 100%;
  max-width: 180px;
  cursor: pointer;
  position: relative;
  z-index: 20;
}
.card-btn.disabled {
  background: #27272a;
  color: #52525b;
  cursor: not-allowed;
}

/* --- SOCIALS --- */
.socials-wrapper {
  margin-top: 1.5rem;
  padding: 0.85rem 2rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
}

.socials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: center;
  width: fit-content;
}

.social-link {
  display: flex;
  align-items: center;
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease-in-out;
  cursor: pointer;
}

.social-link:hover {
  color: var(--primary-glow);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-icon {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.arrow-icon {
  margin-left: 4px;
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.2s ease;
}

.social-link:hover .arrow-icon {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .swiper {
    padding: 0 20px;
    margin-top: 1rem;
  }
  .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: none !important;
    width: 100%;
  }
  .swiper-slide {
    width: 100%;
    max-width: 340px;
    height: auto;
    min-height: 410px;
    transform: none !important;
    margin: 0 auto !important;
  }
  .slide-inner {
    transform: none !important;
    cursor: default;
  }

  .socials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
:root {
  --primary-glow: #a855f7;
  --secondary-glow: #3b82f6;
  --bg-dark: #050505;
  --text-main: #ffffff;
  --text-muted: #9ca3af;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  position: relative;
  /* UPDATED: Removed 'touch-action: none' to allow scrolling on mobile */
}

/* --- BACKGROUND LAYERS --- */

.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% -20%, #1a0b2e 0%, #000000 80%);
  z-index: -5;
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
  pointer-events: none;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      #eee,
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 90px 40px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 130px 80px, #fff, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.6;
}

.comet {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff, 0 0 20px var(--secondary-glow);
  z-index: -3;
  opacity: 0;
  pointer-events: none;
}
.comet::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.8));
}

#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  mix-blend-mode: lighten;
}

/* --- MAIN LAYOUT --- */
main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem 2rem 1rem;
  position: relative;
  z-index: 10;
}

.header-content {
  text-align: center;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(20px);
  padding: 0 15px;
  pointer-events: none;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

p.subtitle {
  color: #d1d5db;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  text-wrap: balance;
}

/* --- SWIPER CAROUSEL --- */
.swiper {
  width: 100%;
  max-width: 1400px;
  padding-top: 15px;
  padding-bottom: 45px;
  overflow: visible;
}

.swiper-wrapper {
  align-items: center;
  transform-style: preserve-3d;
}

.swiper-slide {
  width: 300px;
  height: 410px;
  background: transparent;
}

.slide-inner {
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 23, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.swiper-slide-active .slide-inner {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.2),
    inset 0 0 20px rgba(139, 92, 246, 0.1);
  transform: scale(1.05);
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background-color: #ffffff !important;
  opacity: 0.4 !important;
  width: 10px;
  height: 10px;
}
.swiper-pagination-bullet-active {
  background-color: var(--primary-glow) !important;
  opacity: 1 !important;
}

/* --- CARD CONTENT --- */
.card-icon-wrapper {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.card-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(167, 139, 250, 0.5));
}

.card-content {
  text-align: center;
  width: 100%;
}

.header-line-1 {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.header-line-2 {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.card-btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  width: 100%;
  max-width: 180px;
  cursor: pointer;
  position: relative;
  z-index: 20;
}
.card-btn.disabled {
  background: #27272a;
  color: #52525b;
  cursor: not-allowed;
}

/* --- SOCIALS --- */
.socials-wrapper {
  margin-top: 1.5rem;
  padding: 0.85rem 2rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
}

.socials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: center;
  width: fit-content;
}

.social-link {
  display: flex;
  align-items: center;
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease-in-out;
  cursor: pointer;
}

.social-link:hover {
  color: var(--primary-glow);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-icon {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.arrow-icon {
  margin-left: 4px;
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.2s ease;
}

.social-link:hover .arrow-icon {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .swiper {
    padding: 0 20px;
    margin-top: 1rem;
  }
  .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: none !important;
    width: 100%;
  }
  .swiper-slide {
    width: 100%;
    max-width: 340px;
    height: auto;
    min-height: 410px;
    transform: none !important;
    margin: 0 auto !important;
  }
  .slide-inner {
    transform: none !important;
    cursor: default;
  }

  .socials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
:root {
  --primary-glow: #a855f7;
  --secondary-glow: #3b82f6;
  --bg-dark: #050505;
  --text-main: #ffffff;
  --text-muted: #9ca3af;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  position: relative;
  /* UPDATED: Removed 'touch-action: none' to allow scrolling on mobile */
}

/* --- BACKGROUND LAYERS --- */

.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% -20%, #1a0b2e 0%, #000000 80%);
  z-index: -5;
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
  pointer-events: none;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      #eee,
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 90px 40px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 130px 80px, #fff, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.6;
}

.comet {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff, 0 0 20px var(--secondary-glow);
  z-index: -3;
  opacity: 0;
  pointer-events: none;
}
.comet::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.8));
}

#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  mix-blend-mode: lighten;
}

/* --- MAIN LAYOUT --- */
main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem 2rem 1rem;
  position: relative;
  z-index: 10;
}

.header-content {
  text-align: center;
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(20px);
  padding: 0 15px;
  pointer-events: none;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

p.subtitle {
  color: #d1d5db;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  text-wrap: balance;
}

/* --- SWIPER CAROUSEL --- */
.swiper {
  width: 100%;
  max-width: 1400px;
  padding-top: 15px;
  padding-bottom: 45px;
  overflow: visible;
}

.swiper-wrapper {
  align-items: center;
  transform-style: preserve-3d;
}

.swiper-slide {
  width: 300px;
  height: 410px;
  background: transparent;
}

.slide-inner {
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 23, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.swiper-slide-active .slide-inner {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.2),
    inset 0 0 20px rgba(139, 92, 246, 0.1);
  transform: scale(1.05);
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background-color: #ffffff !important;
  opacity: 0.4 !important;
  width: 10px;
  height: 10px;
}
.swiper-pagination-bullet-active {
  background-color: var(--primary-glow) !important;
  opacity: 1 !important;
}

/* --- CARD CONTENT --- */
.card-icon-wrapper {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.card-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(167, 139, 250, 0.5));
}

.card-content {
  text-align: center;
  width: 100%;
}

.header-line-1 {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.header-line-2 {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.card-btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  width: 100%;
  max-width: 180px;
  cursor: pointer;
  position: relative;
  z-index: 20;
}
.card-btn.disabled {
  background: #27272a;
  color: #52525b;
  cursor: not-allowed;
}

/* --- SOCIALS --- */
.socials-wrapper {
  margin-top: 1.5rem;
  padding: 0.85rem 2rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
}

.socials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: center;
  width: fit-content;
}

.social-link {
  display: flex;
  align-items: center;
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease-in-out;
  cursor: pointer;
}

.social-link:hover {
  color: var(--primary-glow);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-icon {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.arrow-icon {
  margin-left: 4px;
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.2s ease;
}

.social-link:hover .arrow-icon {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .swiper {
    padding: 0 20px;
    margin-top: 1rem;
  }
  .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: none !important;
    width: 100%;
  }
  .swiper-slide {
    width: 100%;
    max-width: 340px;
    height: auto;
    min-height: 410px;
    transform: none !important;
    margin: 0 auto !important;
  }
  .slide-inner {
    transform: none !important;
    cursor: default;
  }

  .socials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
