/* Base Styles */
:root {
  --primary-color: #f7d30c;
  --primary-dark: #e6c400;
  --secondary-color: #222222;
  --text-color: #ffffff;
  --text-dark: #333333;
  --background-color: #000000;
  --card-background: #1a1a1a;
  --border-color: #333333;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

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

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

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

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

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

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

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

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

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

.highlight {
  color: var(--primary-color);
}

/* Header Styles */
header {
  background-color: var(--background-color);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

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

.logo img {
  height: 40px;
}

.main-nav ul {
  display: flex;
}

.main-nav li {
  margin-right: 20px;
  position: relative;
}

.main-nav a {
  font-weight: 500;
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.main-nav a i {
  margin-left: 5px;
  font-size: 0.8rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--secondary-color);
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
}

.dropdown-content a {
  padding: 12px 16px;
  display: block;
  border-bottom: 1px solid var(--border-color);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.language-selector img {
  width: 20px;
  margin-right: 5px;
}

.auth-buttons {
  display: flex;
  gap: 10px;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 60px 0;
  background: linear-gradient(to bottom, var(--background-color), var(--secondary-color));
}

.hero-content {
  text-align: center;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.hero-banner {
  position: relative;
  margin: 30px auto;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bonus-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.bonus-text h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.bonus-text .currency {
  font-size: 2.5rem;
  vertical-align: top;
}

.bonus-text .amount {
  font-size: 3.5rem;
}

.bonus-text p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.bonus-text p span {
  font-weight: 700;
}

.hero-description {
  max-width: 800px;
  margin: 30px auto;
  font-size: 1.1rem;
}

/* Popular Sports Section */
.popular-sports {
  padding: 80px 0;
}

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

.sport-card {
  background-color: var(--card-background);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sport-card:hover {
  transform: translateY(-10px);
}

.sport-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.sport-card h3 {
  padding: 15px 15px 5px;
  font-size: 1.5rem;
}

.sport-card p {
  padding: 0 15px 15px;
  color: #cccccc;
}

.sport-card .btn {
  margin: 0 15px 15px;
  display: block;
}

/* Casino Section */
.casino-preview {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

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

.casino-card {
  background-color: var(--card-background);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.casino-card:hover {
  transform: translateY(-10px);
}

.casino-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.casino-card h3 {
  padding: 15px 15px 5px;
  font-size: 1.5rem;
}

.casino-card p {
  padding: 0 15px 15px;
  color: #cccccc;
}

.casino-card .btn {
  margin: 0 15px 15px;
  display: block;
}

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

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

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-description p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

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

.feature-card {
  background-color: var(--card-background);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: #cccccc;
}

/* App Download Section */
.app-download {
  padding: 80px 0;
}

.app-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.app-text {
  flex: 1;
}

.app-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.app-text p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.app-buttons {
  display: flex;
  gap: 15px;
}

.app-image {
  flex: 1;
  text-align: center;
}

.app-image img {
  max-height: 500px;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  padding: 60px 0 20px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 1;
}

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

.footer-logo p {
  max-width: 300px;
  color: #cccccc;
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-between;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

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

.footer-column ul li a {
  color: #cccccc;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.payment-methods h3,
.social-media h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

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

.payment-icons img {
  height: 30px;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--card-background);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

.disclaimer {
  text-align: center;
  padding: 20px 0;
  color: #999999;
  font-size: 0.9rem;
}

.copyright {
  text-align: center;
  padding: 20px 0;
  color: #999999;
  font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background-color: var(--secondary-color);
  z-index: 2000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.close-menu {
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav ul li {
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav ul li a {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
}

.mobile-dropdown-content {
  display: none;
  background-color: var(--card-background);
}

.mobile-dropdown-content li a {
  padding-left: 40px;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: block;
}

.mobile-auth-buttons {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-auth-buttons .btn {
  width: 100%;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1500;
  display: none;
}

.overlay.active {
  display: block;
}
