/* Base Styles */
:root {
  --primary-color: #03A9F4;
  --secondary-color: #FFAD33;
  --primary-dark: #0288D1;
  --secondary-dark: #F29A00;
  --white: #ffffff;
  --light-gray: #f4f4f4;
  --medium-gray: #e0e0e0;
  --dark-gray: #333333;
  --text-color: #212121;
  --transition-speed: 0.3s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: 3.125rem; /* 50px */
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 32px;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: var(--secondary-color);
  margin-top: 16px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all var(--transition-speed) ease;
}

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

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 80px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all var(--transition-speed) ease;
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

#nav-menu ul {
  display: flex;
  list-style: none;
}

#nav-menu ul li {
  margin: 0 16px;
}

#nav-menu ul li a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
}

#nav-menu ul li a.active,
#nav-menu ul li a:hover {
  color: var(--primary-color);
}

#nav-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

#nav-menu ul li a:hover::after,
#nav-menu ul li a.active::after {
  width: 100%;
}

.search-container {
  position: relative;
}

.search-container form {
  display: flex;
}

.search-container input {
  padding: 8px 16px;
  border: 1px solid var(--medium-gray);
  border-radius: 4px 0 0 4px;
  font-size: 0.875rem;
  width: 200px;
  transition: width var(--transition-speed) ease;
}

.search-container input:focus {
  outline: none;
  border-color: var(--primary-color);
  width: 250px;
}

.search-container button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 0 4px 4px 0;
  padding: 8px 12px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.search-container button:hover {
  background-color: var(--primary-dark);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

/* Hero Section */
#hero {
  height: 100vh;
  display: flex;
  position: relative;
  margin-top: 72px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  background-color: var(--white);
}

.hero-content h1 {
  margin-bottom: 24px;
  color: var(--text-color);
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  color: var(--dark-gray);
  max-width: 600px;
}

.hero-image {
  flex: 1;
  background-image: url('https://i.pinimg.com/736x/83/17/88/8317887680c9c227d79b734a2b2ae919.jpg');
  background-size: cover;
  background-position: center;
}

/* About Section */
#about .container {
  display: flex;
  align-items: center;
  gap: 48px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 16px;
}

.about-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.image-top, .image-bottom {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.image-top:hover img, .image-bottom:hover img {
  transform: scale(1.05);
}

/* Top Games Section */
#top-games {
  background-color: var(--light-gray);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.game-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

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

.game-image {
  width: 100%;
  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.05);
}

.game-card h3 {
  padding: 16px 16px 8px;
  font-size: 1.25rem;
}

.game-card .btn {
  margin: 0 16px 16px;
  width: calc(100% - 32px);
}

/* Casino Games Slider Section */
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  display: flex;
  background-color: var(--white);
}

.slide-content {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-image {
  flex: 1;
  overflow: hidden;
}

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

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

.prev-btn, .next-btn {
  background-color: var(--primary-color);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  margin: 0 16px;
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--medium-gray);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Disclaimer Section */
#disclaimer {
  background-color: var(--white);
}

#disclaimer .container {
  display: flex;
  align-items: center;
  gap: 48px;
}

.disclaimer-content {
  flex: 1;
}

.disclaimer-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

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

/* Footer */
#footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.footer-logo p {
  margin-top: 16px;
  color: var(--medium-gray);
}

.footer-links h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: var(--medium-gray);
  transition: color var(--transition-speed) ease;
}

.footer-links ul li a:hover {
  color: var(--white);
}

.footer-newsletter h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.footer-newsletter p {
  margin-bottom: 16px;
  color: var(--medium-gray);
}

.footer-newsletter form {
  display: flex;
}

.footer-newsletter input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 4px 0 0 4px;
}

.footer-newsletter button {
  border-radius: 0 4px 4px 0;
  padding: 0 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--medium-gray);
  margin-bottom: 0;
}

.social-media {
  display: flex;
  gap: 16px;
}

.social-media a {
  color: var(--white);
  font-size: 1.25rem;
  transition: all var(--transition-speed) ease;
}

.social-media a:hover {
  color: var(--secondary-color);
  transform: translateY(-3px);
}