/* Base Styles */
:root {
  --primary-color: #FFD700;
  --secondary-color: #121212;
  --accent-color: #e5a00d;
  --text-light: #ffffff;
  --text-dark: #121212;
  --bg-dark: #0a0a0a;
  --bg-light: #f8f8f8;
  --card-bg: #1e1e1e;
  --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2 span {
  color: var(--primary-color);
}

.section-header p {
  color: #aaa;
  font-size: 1.1rem;
}

section {
  padding: 100px 0;
  position: relative;
}

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

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

.logo {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  /* width: 20%; */
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 80%; */
}

.nav-menu li {
  margin-left: 30px;
}

.nav-link {
  color: var(--text-light);
  font-weight: 300;
  position: relative;
  transition: var(--transition);
}

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

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

.nav-link:hover::after {
  width: 100%;
}

.btn-contact {
  background-color: var(--primary-color);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-contact:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

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

/* Hero Section */
.hero {
  height: 100vh;
  background: url("/src/assets/bann.jpg") no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text-light);
  text-align: center;
  padding-top: 60px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(18, 18, 18, 0.8) 100%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s forwards;
}

.hero h1 span {
  color: var(--primary-color);
  display: block;
  margin: 10px 0;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 1s forwards 0.5s;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  animation: fadeIn 1s forwards 1s;
}

/* About Section */
.about {
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/pattern.png');
  opacity: 0.05;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
}

.about-text h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: var(--gradient-gold);
  border-radius: 10px;
}

.about-text p {
  margin-bottom: 15px;
  color: #555;
}

.about-image {
  flex: 1;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  display: block;
  max-width: 100%;
  transition: transform 0.5s ease;
}

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

/* Games Section */
.games {
  background-color: var(--bg-dark);
  position: relative;
}

.games::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/casino-pattern.png');
  opacity: 0.05;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.game-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  color: var(--text-light);
}

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

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

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

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

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

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

.btn-play {
  background: var(--gradient-gold);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  transform: translateY(20px);
}

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

.btn-play:hover {
  background: var(--primary-color);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.game-info {
  padding: 20px;
}

.game-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.game-info p {
  color: #aaa;
  font-size: 0.9rem;
}

/* Why Choose Us Section */
.why-us {
  background-color: var(--bg-light);
  position: relative;
}

.why-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/dots-pattern.png');
  opacity: 0.06;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.feature-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-gold);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
  width: 100%;
  opacity: 0.1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: var(--gradient-gold);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--secondary-color);
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: #666;
  position: relative;
  z-index: 1;
}

.why-us-content {
  max-width: 800px;
  margin: 50px auto 0;
  text-align: center;
}

.highlight-text {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.why-us-content p {
  color: #555;
  margin-bottom: 30px;
}

/* Gallery Section */
.gallery {
  background-color: var(--bg-dark);
  position: relative;
}

.gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/pattern-dark.png');
  opacity: 0.1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  position: relative;
}

.gallery-item {
  height: 250px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
}

/* Contact Section */
.contact {
  background-color: var(--bg-light);
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/contact-pattern.png');
  opacity: 0.04;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--gradient-gold);
  color: var(--text-dark);
  font-size: 1.5rem;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.contact-card h3 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.contact-card p {
  color: #666;
  font-size: 0.9rem;
}

.contact-text {
  grid-column: span 2;
  margin-top: 20px;
}

.contact-text h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.contact-text p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

.contact-form {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 25px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
  outline: none;
}

.form-group textarea {
  height: 150px;
  resize: none;
}

/* Disclaimer Section */
.disclaimer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
  color: var(--text-light);
  padding: 70px 0;
}

.disclaimer-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-content h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.disclaimer-content h2 span {
  color: var(--primary-color);
}

.age-restriction {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: var(--text-light);
}

.age-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-right: 15px;
}

.age-restriction p {
  font-size: 1.2rem;
  font-weight: 500;
}

.disclaimer-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #aaa;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 70px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.footer-logo p {
  color: #aaa;
  font-size: 0.9rem;
}

.footer-links h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

.footer-links ul li a {
  color: #aaa;
  transition: var(--transition);
}

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

.footer-social h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  color: var(--text-light);
  border-radius: 50%;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary-color);
  color: var(--text-dark);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #222;
}

.footer-bottom p {
  color: #777;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    flex-direction: column;
    padding: 20px 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.5s ease-in-out;
    z-index: 1000;
  }

  .nav-menu.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

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

  .hero h1 {
    font-size: 2.8rem;
  }

  .about-content {
    flex-direction: column;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-info {
    order: 2;
  }

  .contact-form {
    order: 1;
    margin-bottom: 30px;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }
}
/* .header1{
  width: 50%;
} */