:root {
  --primary: #5e3bee;
  --secondary: #ffd700;
  --accent: #ff6b6b;
  --background: #0f0f1a;
  --card: #1a1a2e;
  --text: #ffffff;
}

* {
  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: #1a1a2e;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.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(--text);
  font-size: 1.5rem;
  font-weight: bold;
}

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

.purple-text {
  color: var(--primary);
}

.desktop-nav {
  display: none;
}

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

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

.desktop-nav a:hover {
  color: var(--primary);
}

.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: #1a1a2e;
  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);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                    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: 2.5rem;
  margin-bottom: 1.5rem;
}

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

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

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

.btn-primary:hover {
  background-color: #4930a7;
  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(255, 215, 0, 0.7);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.9);
  }
}

/* About Section */
.about-section {
  background-color: #1a1a2e;
  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;
}

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

.about-text p {
  color: #e5e5e5;
  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.1);
}

.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: #141428;
  padding: 5rem 0;
}

.gaming-intro {
  text-align: center;
  color: #e5e5e5;
  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-color: var(--card);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

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

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

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--text);
}

.game-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.play-btn {
  background-color: var(--primary);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s;
}

.play-btn:hover {
  background-color: #4930a7;
  transform: scale(1.05);
}

/* 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.1);
}

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

.age-icon {
  background-color: #dc2626;
  color: var(--text);
  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: #e5e5e5;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.highlight {
  background-color: var(--secondary);
  color: #000;
  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 #2d2d3a;
}

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

.close-btn {
  background: none;
  border: none;
  color: #666;
  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: #1a1a2e;
  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: #2d3748;
}

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

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

.p-8 {
  padding: 2rem;
}

.section-heading {
  color: #c084fc; /* Tailwind text-purple-400 */
  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: #9ca3af;
}

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

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

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