@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --background: 270 50% 8%;
  --foreground: 45 100% 96%;

  --card: 270 45% 12%;
  --card-foreground: 45 100% 96%;

  --popover: 270 45% 12%;
  --popover-foreground: 45 100% 96%;

  --primary: 45 100% 50%;
  --primary-foreground: 270 50% 8%;

  --secondary: 280 60% 25%;
  --secondary-foreground: 45 100% 96%;

  --muted: 270 30% 18%;
  --muted-foreground: 270 10% 65%;

  --accent: 45 100% 60%;
  --accent-foreground: 270 50% 8%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;

  --border: 270 30% 20%;
  --input: 270 30% 20%;
  --ring: 45 100% 50%;

  --radius: 0.75rem;

  --gold: 45 100% 50%;
  --gold-light: 45 100% 65%;
  --gold-dark: 45 100% 35%;
  --purple-dark: 270 50% 8%;
  --purple-mid: 270 45% 15%;
  --purple-light: 280 60% 25%;

  --font-heading: 'Cinzel', serif;
  --font-body: 'Poppins', sans-serif;

  --gradient-gold: linear-gradient(135deg, hsl(45 100% 50%), hsl(45 100% 65%), hsl(45 100% 50%));
  --gradient-purple: linear-gradient(180deg, hsl(270 50% 8%), hsl(270 45% 15%));
  --gradient-hero: linear-gradient(135deg, hsl(270 50% 8%) 0%, hsl(280 60% 15%) 50%, hsl(270 50% 8%) 100%);
  
  --shadow-gold: 0 0 30px hsl(45 100% 50% / 0.3);
  --shadow-card: 0 10px 40px hsl(0 0% 0% / 0.4);
}

* {
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* Button Styles */
.btn-gold {
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--gradient-gold);
  color: hsl(var(--purple-dark));
  box-shadow: var(--shadow-gold);
  border: none;
  display: inline-block;
  text-decoration: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px hsl(45 100% 50% / 0.5);
}

.btn-outline-gold {
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
  border: 2px solid hsl(var(--gold));
  color: hsl(var(--gold));
  display: inline-block;
  text-decoration: none;
}

.btn-outline-gold:hover {
  background: hsl(var(--gold) / 0.1);
  box-shadow: var(--shadow-gold);
}

/* Card Styles */
.card-casino {
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s;
  background: hsl(var(--card));
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(var(--border));
}

.card-casino:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px hsl(0 0% 0% / 0.5);
  border-color: hsl(var(--gold) / 0.3);
}

/* Text Styles */
.text-gold-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-gold {
  text-shadow: 0 0 20px hsl(45 100% 50% / 0.5);
}

/* Section Styles */
.section-gradient {
  background: var(--gradient-hero);
}

.page-container {
  min-height: 100vh;
  background: var(--gradient-purple);
}

.content-section {
  padding: 4rem 1rem;
  max-width: 72rem;
  margin: 0 auto;
}

/* Navigation Styles */
.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.3s;
  color: hsl(var(--foreground));
  text-decoration: none;
}

.nav-link:hover {
  color: hsl(var(--gold));
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 0.3s;
  background: hsl(var(--gold));
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: hsl(var(--primary));
}

/* Game Card Styles */
.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px hsl(45 100% 50% / 0.3);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.game-card:hover img {
  transform: scale(1.1);
}

/* Hero Text */
.hero-text {
  font-family: var(--font-heading);
  text-shadow: 0 4px 20px hsl(0 0% 0% / 0.5);
}

/* Animations */
.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.shine {
  position: relative;
  overflow: hidden;
}

.shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 0%,
    hsl(45 100% 90% / 0.2) 50%,
    transparent 100%
  );
  transform: rotate(30deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(30deg); }
  100% { transform: translateX(100%) rotate(30deg); }
}

.pulse-gold {
  animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 20px hsl(45 100% 50% / 0.3); }
  50% { box-shadow: 0 0 40px hsl(45 100% 50% / 0.6); }
}

.fade-in {
  animation: fade-in 0.6s ease-out forwards;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer Styles */
.footer-link {
  color: hsl(var(--muted-foreground));
  transition: color 0.3s;
  text-decoration: none;
}

.footer-link:hover {
  color: hsl(var(--gold));
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}

nav {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

nav > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
  
  .mobile-menu-button {
    display: none;
  }
}

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  color: hsl(var(--foreground));
  font-family: var(--font-body);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Utility Classes */
.text-balance {
  text-wrap: balance;
}

.hidden {
  display: none;
}

@media (min-width: 1024px) {
  .lg\:hidden {
    display: none;
  }
  
  .lg\:flex {
    display: flex;
  }
}

/* Grid Utilities */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.gap-8 {
  gap: 2rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-2 {
  gap: 0.5rem;
}

/* Flex Utilities */
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
}

/* Spacing */
.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.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-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pt-20 {
  padding-top: 5rem;
}

.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;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Text Styles */
.text-center {
  text-align: center;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-4xl {
  font-size: 2.25rem;
}

@media (min-width: 768px) {
  .md\:text-5xl {
    font-size: 3rem;
  }
  
  .md\:text-xl {
    font-size: 1.25rem;
  }
  
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:text-7xl {
    font-size: 4.5rem;
  }
  
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.text-8xl {
  font-size: 6rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

/* Colors */
.text-primary {
  color: hsl(var(--primary));
}

.text-foreground {
  color: hsl(var(--foreground));
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}

.bg-background {
  background-color: hsl(var(--background));
}

.bg-card {
  background-color: hsl(var(--card));
}

.bg-primary {
  background-color: hsl(var(--primary));
}

.bg-primary\/20 {
  background-color: hsl(var(--primary) / 0.2);
}

.text-primary-foreground {
  color: hsl(var(--primary-foreground));
}

/* Border */
.border {
  border-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-border {
  border-color: hsl(var(--border));
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Width & Height */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.w-auto {
  width: auto;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-7xl {
  max-width: 80rem;
}

/* Position */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

/* Object Fit */
.object-cover {
  object-fit: cover;
}

/* Aspect Ratio */
.aspect-square {
  aspect-ratio: 1 / 1;
}

/* Opacity */
.opacity-60 {
  opacity: 0.6;
}

.opacity-0 {
  opacity: 0;
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

/* Transition */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  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;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

/* Min Height */
.min-h-screen {
  min-height: 100vh;
}

.min-h-\[90vh\] {
  min-height: 90vh;
}

/* Space */
.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;
}

/* List */
.list-disc {
  list-style-type: disc;
}

.list-inside {
  list-style-position: inside;
}

/* Leading */
.leading-relaxed {
  line-height: 1.625;
}

/* Resize */
.resize-none {
  resize: none;
}

/* Cursor */
.cursor-pointer {
  cursor: pointer;
}

/* Shadow */
.shadow-xl {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* Prose */
.prose {
  max-width: 65ch;
}

.prose-invert {
  color: hsl(var(--foreground));
}

.prose-invert h2 {
  color: hsl(var(--primary));
}

.prose-invert ul {
  color: hsl(var(--foreground) / 0.8);
}

/* Uppercase */
.uppercase {
  text-transform: uppercase;
}

/* Inline Block */
.inline-block {
  display: inline-block;
}

/* Flex Items */
.flex-items-center {
  display: flex;
  align-items: center;
}

/* Icon Styles */
.icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
}

