@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Space Grotesk", sans-serif;
  
  --color-gold: #FFD700;
  --color-neon-blue: #00BFFF;
  --color-ghana-red: #CE1126;
  --color-ghana-green: #006B3F;
  --color-ghana-yellow: #FCD116;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-bg-main: #050505;
  --color-bg-alt: #080808;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-main);
  color: var(--color-white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Utility Classes */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1 1 0%; }

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

.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; }
.gap-16 { gap: 4rem; }

.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.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-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.pt-8 { padding-top: 2rem; }
.pt-24 { padding-top: 6rem; }
.pb-12 { padding-bottom: 3rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-8 { padding-left: 2rem; }
.pr-4 { padding-right: 1rem; }

.m-4 { margin: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-4 { margin-top: 1rem; }
.mt-12 { margin-top: 3rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.ml-1 { margin-left: 0.25rem; }

.w-full { width: 100%; }
.w-1\/2 { width: 50%; }
.w-0 { width: 0; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-24 { width: 6rem; }
.w-96 { width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.h-1 { height: 0.25rem; }
.h-1.5 { height: 0.375rem; }
.h-2 { height: 0.5rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-24 { height: 6rem; }
.h-96 { height: 24rem; }
.h-screen { height: 100vh; }
.h-full { height: 100%; }

.opacity-0 { opacity: 0; }
.opacity-5 { opacity: 0.05; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.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-7xl { font-size: 4.5rem; line-height: 1; }
.text-9xl { font-size: 8rem; line-height: 1; }

.font-sans { font-family: var(--font-sans); }
.font-display { font-family: var(--font-display); }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.font-medium { font-weight: 500; }
.font-light { font-weight: 300; }
.font-semibold { font-weight: 600; }
.italic { font-style: italic; }

.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-\[0\.4em\] { letter-spacing: 0.4em; }

.uppercase { text-transform: uppercase; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }

.bg-black { background-color: var(--color-black); }
.bg-white { background-color: var(--color-white); }
.bg-gold { background-color: var(--color-gold); }
.bg-neon-blue { background-color: var(--color-neon-blue); }
.bg-ghana-red { background-color: var(--color-ghana-red); }
.bg-ghana-yellow { background-color: var(--color-ghana-yellow); }
.bg-ghana-green { background-color: var(--color-ghana-green); }
.bg-\[\#050505\] { background-color: #050505; }
.bg-\[\#080808\] { background-color: #080808; }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-black\/20 { background-color: rgba(0, 0, 0, 0.2); }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }
.bg-black\/80 { background-color: rgba(0, 0, 0, 0.8); }
.bg-gold\/5 { background-color: rgba(255, 215, 0, 0.05); }
.bg-gold\/10 { background-color: rgba(255, 215, 0, 0.1); }
.bg-gold\/20 { background-color: rgba(255, 215, 0, 0.2); }
.bg-neon-blue\/5 { background-color: rgba(0, 191, 255, 0.05); }
.bg-neon-blue\/20 { background-color: rgba(0, 191, 255, 0.2); }
.bg-ghana-red\/10 { background-color: rgba(206, 17, 38, 0.1); }
.bg-ghana-yellow\/10 { background-color: rgba(252, 209, 22, 0.1); }
.bg-ghana-green\/10 { background-color: rgba(0, 107, 63, 0.1); }

.text-white { color: var(--color-white); }
.text-black { color: var(--color-black); }
.text-gold { color: var(--color-gold); }
.text-neon-blue { color: var(--color-neon-blue); }
.text-ghana-red { color: var(--color-ghana-red); }
.text-ghana-yellow { color: var(--color-ghana-yellow); }
.text-ghana-green { color: var(--color-ghana-green); }
.text-white\/20 { color: rgba(255, 255, 255, 0.2); }
.text-white\/30 { color: rgba(255, 255, 255, 0.3); }
.text-white\/40 { color: rgba(255, 255, 255, 0.4); }
.text-white\/50 { color: rgba(255, 255, 255, 0.5); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-\[10px\] { font-size: 10px; }

.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-\[2\.5rem\] { border-radius: 2.5rem; }
.rounded-\[3rem\] { border-radius: 3rem; }

.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.top-1\/4 { top: 25%; }
.top-6 { top: 1.5rem; }
.top-\[-10\%\] { top: -10%; }
.left-0 { left: 0; }
.left-6 { left: 1.5rem; }
.left-1\/2 { left: 50%; }
.left-1\/4 { left: 25%; }
.left-\[-10\%\] { left: -10%; }
.right-0 { right: 0; }
.right-6 { right: 1.5rem; }
.right-1\/4 { right: 25%; }
.right-\[-10\%\] { right: -10%; }
.bottom-0 { bottom: 0; }
.bottom-6 { bottom: 1.5rem; }
.bottom-10 { bottom: 2.5rem; }
.bottom-1\/4 { bottom: 25%; }
.bottom-\[-10\%\] { bottom: -10%; }
.translate-y-\[-100\%\] { transform: translateY(-100%); }
.translate-y-0 { transform: translateY(0); }
.-top-4 { top: -1rem; }
.-left-4 { left: -1rem; }
.-left-20 { left: -5rem; }
.-bottom-4 { bottom: -1rem; }
.-right-4 { right: -1rem; }
.-right-20 { right: -5rem; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }

.z-0 { z-index: 0; }
.z-5 { z-index: 5; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-\[100\] { z-index: 100; }
.z-\[-1\] { z-index: -1; }

.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

.border { border: 1px solid transparent; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-gold { border-color: var(--color-gold); }
.border-gold\/20 { border-color: rgba(255, 215, 0, 0.2); }
.border-gold\/30 { border-color: rgba(255, 215, 0, 0.3); }
.border-gold\/50 { border-color: rgba(255, 215, 0, 0.5); }
.border-neon-blue\/30 { border-color: rgba(0, 191, 255, 0.3); }
.border-l-4 { border-left-width: 4px; }
.border-l-2 { border-left-width: 2px; }
.border-r-2 { border-right-width: 2px; }
.border-t-2 { border-top-width: 2px; }
.border-b-2 { border-bottom-width: 2px; }
.border-t { border-top-width: 1px; }

.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:border-gold:focus { border-color: var(--color-gold); }

.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-white\/30 { background-color: rgba(255, 255, 255, 0.3); }
.bg-white\/40 { background-color: rgba(255, 255, 255, 0.4); }
.bg-white\/50 { background-color: rgba(255, 255, 255, 0.5); }
.bg-white\/60 { background-color: rgba(255, 255, 255, 0.6); }
.bg-white\/70 { background-color: rgba(255, 255, 255, 0.7); }
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }

.bg-black\/10 { background-color: rgba(0, 0, 0, 0.1); }
.bg-black\/30 { background-color: rgba(0, 0, 0, 0.3); }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-black\/70 { background-color: rgba(0, 0, 0, 0.7); }
.bg-black\/90 { background-color: rgba(0, 0, 0, 0.9); }
.bg-black\/95 { background-color: rgba(0, 0, 0, 0.95); }

.bg-gold\/30 { background-color: rgba(255, 215, 0, 0.3); }
.bg-gold\/40 { background-color: rgba(255, 215, 0, 0.4); }
.bg-gold\/50 { background-color: rgba(255, 215, 0, 0.5); }

.bg-neon-blue\/10 { background-color: rgba(0, 191, 255, 0.1); }
.bg-neon-blue\/30 { background-color: rgba(0, 191, 255, 0.3); }
.bg-neon-blue\/40 { background-color: rgba(0, 191, 255, 0.4); }
.bg-neon-blue\/50 { background-color: rgba(0, 191, 255, 0.5); }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-100 { transition-duration: 100ms; animation-duration: 100ms; }
.duration-300 { transition-duration: 300ms; animation-duration: 300ms; }
.duration-500 { transition-duration: 500ms; animation-duration: 500ms; }
.duration-700 { transition-duration: 700ms; animation-duration: 700ms; }
.duration-\[10000ms\] { transition-duration: 10000ms; animation-duration: 10000ms; }

.scale-105 { transform: scale(1.05); }
.min-w-full { min-width: 100%; }

.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }

.from-black\/60 { --tw-gradient-from: rgba(0, 0, 0, 0.6); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.via-black\/40 { --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0.4), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.to-\[\#050505\] { --tw-gradient-to: #050505; }
.from-black\/80 { --tw-gradient-from: rgba(0, 0, 0, 0.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.to-black\/20 { --tw-gradient-to: rgba(0, 0, 0, 0.2); }
.from-gold { --tw-gradient-from: var(--color-gold); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 215, 0, 0)); }
.to-transparent { --tw-gradient-to: transparent; }
.from-ghana-red\/10 { --tw-gradient-from: rgba(206, 17, 38, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 17, 38, 0)); }
.via-ghana-yellow\/10 { --tw-gradient-stops: var(--tw-gradient-from), rgba(252, 209, 22, 0.1), var(--tw-gradient-to, rgba(252, 209, 22, 0)); }
.to-ghana-green\/10 { --tw-gradient-to: rgba(0, 107, 63, 0.1); }

.w-\[50\%\] { width: 50%; }
.h-\[50\%\] { height: 50%; }
.h-\[1px\] { height: 1px; }
.h-\[400px\] { height: 400px; }
.blur-\[120px\] { filter: blur(120px); }
.blur-2xl { filter: blur(40px); }

.translate-y-\[200\%\] { transform: translateY(200%); }

.glass {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

.neon-glow {
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

.gold-glow {
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: var(--color-black);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

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

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

.reveal, .reveal-left, .reveal-right {
  opacity: 1;
  transform: none;
  transition: all 0.8s ease-out;
}

/* Only hide if JS is ready and the element isn't active yet */
.reveal-ready .reveal:not(.active) {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-ready .reveal-left:not(.active) {
  opacity: 0;
  transform: translateX(-50px);
}

.reveal-ready .reveal-right:not(.active) {
  opacity: 0;
  transform: translateX(50px);
}

.reveal.active, .reveal-left.active, .reveal-right.active {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

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

.animate-shimmer {
  animation: shimmer 2s infinite;
}

.animate-spin-slow {
  animation: spin 8s linear infinite;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.delay-700 { transition-delay: 700ms; animation-delay: 700ms; }
.delay-1000 { transition-delay: 1000ms; animation-delay: 1000ms; }

/* Media Queries */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-row-reverse { flex-direction: row-reverse; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:text-9xl { font-size: 8rem; line-height: 1; }
  .md\:w-auto { width: auto; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-96 { width: 24rem; }
  .md\:h-\[700px\] { height: 700px; }
  .md\:left-auto { left: auto; }
  .md\:right-6 { right: 1.5rem; }
}

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

/* Hover Effects */
.hover\:bg-white:hover { background-color: var(--color-white); color: var(--color-black); }
.hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }
.hover\:text-gold:hover { color: var(--color-gold); }
.hover\:text-white:hover { color: var(--color-white); }
.hover\:bg-gold:hover { background-color: var(--color-gold); color: var(--color-black); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:border-gold\/50:hover { border-color: rgba(255, 215, 0, 0.5); }
.hover\:grayscale-0:hover { filter: grayscale(0); }

.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:opacity-20 { opacity: 0.2; }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:bg-black\/20 { background-color: rgba(0, 0, 0, 0.2); }
.group:hover .group-hover\:bg-gold { background-color: var(--color-gold); color: var(--color-black); }
.group:hover .group-hover\:text-black { color: var(--color-black); }
.group:hover .group-hover\:text-gold { color: var(--color-gold); }
.group:hover .group-hover\:translate-x-2 { transform: translateX(0.5rem); }
.group:hover .group-hover\:rotate-45 { transform: rotate(45deg); }

/* Custom Selections */
::selection {
  background-color: var(--color-gold);
  color: var(--color-black);
}

/* Specific Styles */
.grayscale { filter: grayscale(100%); }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.object-cover { object-fit: cover; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-32 > * + * { margin-top: 8rem; }
