/* Bahsegel Brand Colors - extracted from logo */
:root {
  --primary: #00a6b5;      /* Teal/Cyan from logo */
  --secondary: #ff8c00;    /* Orange from logo */
  --dark-bg: #0a1628;      /* Dark blue background */
  --card-bg: #152238;      /* Card background */
  --text-light: #ffffff;
  --text-muted: #b8c5d6;
  --border-color: rgba(255, 255, 255, 0.1);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* Header */
.header {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header__logo img {
  height: 45px;
  width: auto;
}

.header__nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.header__nav a {
  color: var(--text-light);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s;
}

.header__nav a:hover {
  background: rgba(0, 166, 181, 0.1);
  color: var(--primary);
}

.header__auth {
  display: flex;
  gap: 0.75rem;
}

.header__reg-btn {
  background: var(--secondary);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.header__reg-btn:hover {
  background: #ff9d1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
}

.header__login-btn {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}

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

/* Banner */
.universalBanner {
  background: linear-gradient(135deg, #1a3a52 0%, var(--dark-bg) 100%);
  padding: 5rem 0;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.universalBanner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 166, 181, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

/* HERO LAYOUT FIX */
.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.banner-text {
  flex: 0 0 55%;
}

.banner-image {
  flex: 0 0 45%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-text {
  max-width: 700px;
}

.text-header {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner-text p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.banner-btn button {
  background: var(--secondary);
  color: var(--text-light);
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.banner-btn button:hover {
  background: #ff9d1a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

/* Content */
.content {
  padding: 3rem 0;
}

.content-block {
  max-width: 1200px;
  margin: 0 auto;
}

section {
  margin-bottom: 4rem;
}

/* Intro Section */
.intro-section {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.intro-section h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* Features Grid */
.features-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 166, 181, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Sports Section */
.sports-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.sports-section > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.sport-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.sport-card:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
}

.sport-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.sport-card h3 {
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

/* Casino Section */
.casino-section {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 12px;
}

.casino-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.casino-section > p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.casino-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.category-card {
  background: var(--dark-bg);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.category-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.category-card ul {
  margin-top: 1rem;
  padding-left: 0;
}

.category-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}

.category-card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* Bonuses Section */
.bonuses-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.bonus-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
  border: 2px solid var(--border-color);
  transition: all 0.3s;
}

.bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 166, 181, 0.3);
}

.bonus-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--card-bg) 0%, #1a3a52 100%);
}

.bonus-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--secondary);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.bonus-card h3 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.bonus-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.bonus-features {
  text-align: left;
  margin: 2rem 0;
  padding: 0;
}

.bonus-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
}

.bonus-features li:last-child {
  border-bottom: none;
}

.bonus-btn {
  background: var(--primary);
  color: var(--text-light);
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  width: 100%;
  margin-top: 1rem;
  transition: all 0.3s;
}

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

/* Payment Section */
.payment-section {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 12px;
}

.payment-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.payment-section > p {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.payment-method {
  background: var(--dark-bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.payment-method:hover {
  border-color: var(--primary);
}

.payment-method h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.payment-info {
  background: var(--dark-bg);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
}

.payment-info p {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

/* FAQ Section */
.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-item {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary);
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 166, 181, 0.2);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: var(--primary);
}

.contact-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-card a {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Responsible Gaming */
.responsible-gaming {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  border: 2px solid var(--secondary);
}

.responsible-gaming h2 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.responsible-gaming ul {
  margin-top: 1rem;
  padding-left: 2rem;
  list-style: disc;
}

.responsible-gaming li {
  padding: 0.5rem 0;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--card-bg);
  border-top: 2px solid var(--primary);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--text-muted);
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.footer-warning {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  
  .text-header {
    font-size: 2rem;
  }
  
  .banner-text p {
    font-size: 1rem;
  }
  
  .features-grid,
  .sports-grid,
  .casino-categories,
  .bonus-grid,
  .payment-grid,
  .contact-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .wrapper {
    padding: 0 15px;
  }
  
  section {
    margin-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .header__logo img {
    height: 35px;
  }
  
  .header__auth {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .header__reg-btn,
  .header__login-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  
  .text-header {
    font-size: 1.75rem;
  }
  
  .universalBanner {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  .banner-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .banner-text {
    flex: none;
    max-width: 100%;
  }

  .banner-image {
    flex: none;
    width: 100%;
    height: 220px;
    margin: 0;
    order: 2;
  }

  .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .text-header {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .banner-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  .banner-btn {
    width: 100%;
  }

  .banner-btn button {
    width: 100%;
    max-width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  .universalBanner {
    padding: 2.5rem 0;
  }
}