/* Base Styles */
:root {
  --primary: #FFB200;
  --secondary: #EB5B00;
  --accent: #D91656;
  --dark: #640D5F;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --gray: #888888;
  --dark-gray: #333333;
  --black: #111111;
  --transition: all 0.3s ease;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

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

.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  box-shadow: 0 4px 10px rgba(255, 178, 0, 0.3);
}

.btn:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(235, 91, 0, 0.4);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo img {
  height: 40px;
}

.nav-menu ul {
  display: flex;
}

.nav-menu li {
  margin: 0 20px;
}

.nav-menu a {
  font-weight: 500;
  color: var(--dark-gray);
  position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--accent);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--accent);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

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

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box input {
  padding: 10px 40px 10px 15px;
  border-radius: 50px;
  border: 1px solid var(--gray);
  background: transparent;
  transition: var(--transition);
}

.search-box input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 22, 86, 0.1);
}

.search-box button {
  position: absolute;
  right: 10px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--gray);
  transition: var(--transition);
}

.search-box button:hover {
  color: var(--accent);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-gray);
  margin-bottom: 5px;
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding-top: 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, var(--white) 50%, var(--light-gray) 50%);
}

.hero-content {
  display: flex;
  align-items: center;
}

.hero-text {
  flex: 1;
  padding-right: 60px;
}

.hero-text h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 30px;
  color: var(--dark-gray);
}

.hero-image {
  flex: 1;
  height: calc(100vh - 200px);
  background-image: url('https://www-live.hacksawgaming.com/casino_thumbnails/1689_hero_Background.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* About Section */
.about {
  padding: 100px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--dark);
  position: relative;
}

.about-text h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.about-text p {
  margin-bottom: 20px;
}

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

.about-images img {
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.about-images img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.image-top, .image-bottom {
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
}

.image-top img, .image-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Top Games Section */
.top-games {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.top-games h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--dark);
  position: relative;
}

.top-games h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: var(--primary);
}

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

.game-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.game-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}

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

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

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(100, 13, 95, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.play-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transform: translateY(20px);
  transition: var(--transition);
}

.game-card:hover .play-btn {
  transform: translateY(0);
}

.play-btn:hover {
  background: var(--secondary);
}

.game-card h3 {
  padding: 20px;
  text-align: center;
  font-size: 18px;
  color: var(--dark-gray);
}

/* Casino Games Section */
.casino-games {
  padding: 100px 0;
}

.casino-games h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--dark);
  position: relative;
}

.casino-games h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.slider-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.slider {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.slide {
  display: flex;
  background: var(--white);
  transition: var(--transition);
}

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

.slide-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark);
}

.slide-image {
  flex: 1;
}

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

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--dark-gray);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 10;
  transition: var(--transition);
}

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

.prev-btn {
  left: -20px;
}

.next-btn {
  right: -20px;
}

/* Disclaimer Section */
.disclaimer {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.disclaimer-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.disclaimer-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.disclaimer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.disclaimer-text {
  flex: 1;
}

.disclaimer-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--dark);
  position: relative;
}

.disclaimer-text h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.disclaimer-text p {
  margin-bottom: 15px;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 80px 0 30px;
}

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

.footer-logo img {
  height: 40px;
  margin-bottom: 15px;
}

.footer-logo p {
  color: var(--light-gray);
}

.footer-links h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

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

.footer-links ul li a {
  color: var(--light-gray);
}

.footer-links ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-newsletter h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}

.footer-newsletter h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-newsletter form {
  display: flex;
  margin-top: 20px;
}

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

.footer-newsletter .btn {
  border-radius: 0 50px 50px 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Game Page Styles */
.game-content {
  padding-top: 100px;
  min-height: calc(100vh - 200px);
}

.game-frame {
  width: 100%;
  height: 80vh;
  margin-bottom: 30px;
  border: none;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.game-details {
  margin-bottom: 30px;
}

.game-details h1 {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--dark);
}

.game-details p {
  margin-bottom: 15px;
}

.game-info {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item {
  flex: 1;
  background: var(--light-gray);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.info-item h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--dark);
}

.info-item p {
  font-weight: 600;
  color: var(--accent);
  font-size: 20px;
}

.related-games {
  margin-top: 50px;
}

.related-games h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--dark);
}