:root {
  --primary: #4f46e5;
  --secondary: #f59e0b;
  --accent: #ec4899;
  --background: #f3f4f6;
  --card: #ffffff;
  --text: #1f2937;
  --text-light: #6b7280;
  --colorr:#000000
 
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

/* Header Styles */
.header {
  position: fixed;
  width: 100%;
  z-index: 50;
  transition: all 0.3s;
  padding: 1rem 0;
}

.header.scrolled {
  background-color: #000000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--secondary);
  font-size: 1.5rem;
  font-weight: bold;
}

.gamepad-icon {
  color: var(--primary);
}

.purple-text {
  color: #ffffff;
}

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    gap: 2rem;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

.desktop-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.desktop-nav a:hover {
  color: #ffffff;
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text);
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  background-color: #000000;
  padding: 1rem;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text);
  text-decoration: none;
  transition: background-color 0.3s;
}

.mobile-nav a:hover {
  background-color: var(--primary);
  color: #ffffff;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                    url('images/casino-hero.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-content h1 span {
  display: block;
  color: var(--secondary);
  margin-top: 0.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e5e7eb;
}

/* Button Styles */
.btn-primary {
  background-color: #000000;
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 9999px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #4338ca;
  transform: scale(1.05);
}

.pulse-effect {
  animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.7);
  }
}

/* About Section */
.about-section {
  background-color: var(--card);
  padding: 5rem 0;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  text-align: center;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.about-image {
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* Gaming Section */
.gaming-section {
  background-color: var(--background);
  padding: 5rem 0;
}

.gaming-intro {
  text-align: center;
  color: var(--text-light);
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.game-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.game-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.15);
}

.game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: #ffffff;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.game-card:hover .game-overlay {
  transform: translateY(0);
  opacity: 1;
}

.game-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.play-btn {
  background: linear-gradient(135deg, var(--primary, #6366f1) 0%, #7c3aed 100%);
  color: #ffffff;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  animation: pulse 2s infinite ease-in-out;
}

.play-btn:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #6d28d9 100%);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.play-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.4);
}

.play-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.play-btn:hover::before {
  left: 100%;
}

.play-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.5);
  }
  100% {
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  }
}

/* Accessibility improvements */
.play-btn[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .play-btn {
    animation: none;
    transition: none;
  }
  .play-btn::before {
    transition: none;
  }
}
/* Disclaimer */
.disclaimer {
  background-color: var(--card);
  padding: 2rem;
  border-radius: 0.5rem;
  margin-top: 4rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.age-warning {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.age-icon {
  background-color: #ef4444;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclaimer h3 {
  font-size: 1.5rem;
  color: var(--text);
}

.disclaimer p {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.highlight {
  background-color: var(--secondary);
  color: var(--text);
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  margin: 0 0.25rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--card);
  width: 95%;
  max-width: 1200px;
  border-radius: 0.5rem;
  overflow: hidden;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
  font-size: 1.5rem;
  color: var(--text);
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.close-btn:hover {
  color: var(--text);
}

.modal-body {
  padding: 1rem;
}

.modal-body iframe {
  width: 100%;
  height: 600px;
  border: none;
}

/* Footer */
footer {
  background-color: var(--card);
  padding: 2rem 0;
  text-align: center;
}

footer p {
  color: var(--text);
}

footer a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--primary);
}

/* Privacy Policy */
.pt-24 {
  padding-top: 6rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

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

.max-w-4xl {
  max-width: 56rem;
}

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

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

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

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

.text-4xl {
  font-size: 2.25rem;
  font-weight: bold;
}

.bg-gray-800 {
  background-color: #e5e7eb;
}

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

.shadow-xl {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.p-8 {
  padding: 2rem;
}

.section-heading {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.text-gray-400 {
  color: var(--text-light);
}

.mt-8 {
  margin-top: 2rem;
}

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

.mb-12 {
  margin-bottom: 3rem;
}