:root {
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --purple-200: #e9d5ff;
  --cyan-400: #22d3ee;
  --blue-400: #60a5fa;
  --indigo-500: #6366f1;
  --sky-400: #0ea5e9;
  --blue-500: #3b82f6;
  --purple-500: #a855f7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: white;
  overflow-x: hidden;
  line-height: 1.6;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  position: relative;
}

.glass-dark {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
}

.social-icon {
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.text-gradient {
  background: linear-gradient(135deg, #8b5cf6, #06b6d4, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.playfair {
  font-family: 'Playfair Display', serif;
}

.glow {
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
  transition: box-shadow 0.3s ease;
}

.glow:hover {
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
}

.float {
  animation: float 6s ease-in-out infinite;
}

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

.blob {
  animation: blob 7s infinite ease-in-out;
}

@keyframes blob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(0deg); }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: rotate(180deg); }
}

.animated-bg {
  background: linear-gradient(-45deg, #0f0f23, #1a1a2e, #16213e, #0f3460, #e94560);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

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

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
}

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

@keyframes marquee {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

.no-drag {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

.pointer-events-none {
  pointer-events: none;
}

.select-none {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.transition {
  transition: all 0.3s ease;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

.hover\:text-purple-200:hover {
  color: var(--purple-200);
}

.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-gradient-to-br {
  background: linear-gradient(to bottom right, var(--from), var(--to));
}

.bg-gradient-to-r {
  background: linear-gradient(to right, var(--from), var(--to));
}

.from-blue-400 {
  --from: var(--blue-400);
}

.to-cyan-300 {
  --to: #67e8f9;
}

.from-cyan-400 {
  --from: var(--cyan-400);
}

.to-blue-500 {
  --to: var(--blue-500);
}

.from-blue-400 {
  --from: var(--blue-400);
}

.to-indigo-500 {
  --to: var(--indigo-500);
}

.from-sky-400 {
  --from: var(--sky-400);
}

.to-cyan-500 {
  --to: #06b6d4;
}

.from-blue-500 {
  --from: var(--blue-500);
}

.to-purple-500 {
  --to: var(--purple-500);
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.overflow-hidden {
  overflow: hidden;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.transform {
  transform: translate(var(--tx, 0), var(--ty, 0)) rotate(var(--r, 0)) skewX(var(--sx, 0)) skewY(var(--sy, 0)) scaleX(var(--sx, 1)) scaleY(var(--sy, 1));
}

.scale-125 {
  --sx: 1.25;
  --sy: 1.25;
}

.scale-[1.2] {
  --sx: 1.2;
  --sy: 1.2;
}

.scale-[1.1] {
  --sx: 1.1;
  --sy: 1.1;
}

.scale-[1.8] {
  --sx: 1.8;
  --sy: 1.8;
}

.leading-tight {
  line-height: 1.2;
}

.leading-relaxed {
  line-height: 1.625;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-8xl {
  font-size: 6rem;
  line-height: 1;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.font-black {
  font-weight: 900;
}

.text-white {
  color: white;
}

.text-white\/50 {
  color: rgba(255, 255, 255, 0.5);
}

.text-white\/60 {
  color: rgba(255, 255, 255, 0.6);
}

.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-purple-700 {
  color: #7c3aed;
}

.bg-white {
  background-color: white;
}

.bg-green-400 {
  background-color: #4ade80;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px white;
}

.focus\:ring-white\/30:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.pt-4 {
  padding-top: 1rem;
}

.flex {
  display: flex;
}

.flex-grow {
  flex-grow: 1;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.space-x-2 > * + * {
  margin-left: 0.5rem;
}

.space-x-3 > * + * {
  margin-left: 0.75rem;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

.space-x-6 > * + * {
  margin-left: 1.5rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.md\:grid-cols-2 {
  @media (min-width: 768px) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.md\:grid-cols-3 {
  @media (min-width: 768px) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.lg\:grid-cols-4 {
  @media (min-width: 1024px) { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.lg\:grid-cols-10 {
  @media (min-width: 1024px) { grid-template-columns: repeat(10, minmax(0, 1fr)); }
}

.xl\:grid-cols-10 {
  @media (min-width: 1280px) { grid-template-columns: repeat(10, minmax(0, 1fr)); }
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex-wrap {
  flex-wrap: wrap;
}

.w-5 {
  width: 1.25rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.w-16 {
  width: 4rem;
}

.w-32 {
  width: 8rem;
}

.w-40 {
  width: 10rem;
}

.w-48 {
  width: 12rem;
}

.w-full {
  width: 100%;
}

.h-2 {
  height: 0.5rem;
}

.h-5 {
  height: 1.25rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-14 {
  height: 3.5rem;
}

.h-16 {
  height: 4rem;
}

.h-32 {
  height: 8rem;
}

.h-40 {
  height: 10rem;
}

.h-48 {
  height: 12rem;
}

.h-full {
  height: 100%;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-xs {
  max-width: 20rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.z-10 {
  z-index: 10;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.top-0 {
  top: 0;
}

.top-20 {
  top: 5rem;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.-translate-x-1\/2 {
  --tx: -50%;
}

.-translate-y-1\/2 {
  --ty: -50%;
}

.-translate-x-10 {
  --tx: -2.5rem;
}

.translate-x-10 {
  --tx: 2.5rem;
}

.-translate-y-10 {
  --ty: -2.5rem;
}

.translate-y-10 {
  --ty: 2.5rem;
}

.md:translate-x-32 {
  @media (min-width: 768px) { --tx: 8rem; }
}

.md:-translate-y-32 {
  @media (min-width: 768px) { --ty: -8rem; }
}

.md:-translate-x-24 {
  @media (min-width: 768px) { --tx: -6rem; }
}

.md:translate-y-24 {
  @media (min-width: 768px) { --ty: 6rem; }
}

.overflow-hidden {
  overflow: hidden;
}

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

.align-text-bottom {
  vertical-align: text-bottom;
}

.align-middle {
  vertical-align: middle;
}

.min-h-screen {
  min-height: 100vh;
}

.pt-36 {
  padding-top: 9rem;
}

.md:pt-20 {
  @media (min-width: 768px) { padding-top: 5rem; }
}

.whitespace-nowrap {
  white-space: nowrap;
}

.border-t {
  border-top-width: 1px;
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md:text-4xl {
    font-size: 2.25rem;
  }
  .md:text-6xl {
    font-size: 3.75rem;
  }
  .md:text-8xl {
    font-size: 6rem;
  }
  .md:p-12 {
    padding: 3rem;
  }
  .md:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .sm\:text-base {
    font-size: 1rem;
  }
  .sm\:text-3xl {
    font-size: 1.875rem;
  }
  .sm\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .text-6xl {
    font-size: 2.5rem;
  }
}