/* BDT88 Casino - Main Styles */
/* Color Scheme */
:root {
  --primary-color: #CC0A42;
  --secondary-color: #F6C453;
  --background-color: #68011F;
  --text-light: #ffffff;
  --text-dark: #333333;
  --gradient-primary: linear-gradient(90deg, rgba(250, 223, 136, 1) 0%, rgba(237, 176, 87, 1) 100%);
  --border-secondary: 2px solid #F6C453;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--background-color);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: bold;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Links */
a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
  line-height: 1.2;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(246, 196, 83, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246, 196, 83, 0.4);
  color: var(--primary-color);
}

.btn-secondary {
  background: transparent;
  border: var(--border-secondary);
  color: var(--secondary-color);
}

.btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1rem 0;
}

header .btn-group {
  margin: 0;
}

/* Header */
.header {
  background: var(--primary-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 35px;
  width: auto;
}

.logo img {
  height: 100%;
}

/* Navigation */
.nav {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav a {
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--secondary-color);
}

.nav a.active {
  font-weight: bold;
  position: relative;
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--secondary-color);
  border-radius: 1px;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu .nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--background-color) 0%, #4a0115 100%);
  padding: 4rem 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.section h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(246, 196, 83, 0.2);
}

.card h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Tables */
.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(246, 196, 83, 0.2);
}

th {
  background: var(--primary-color);
  color: var(--text-light);
  font-weight: bold;
}

tr:hover {
  background: rgba(246, 196, 83, 0.1);
}

/* Lists */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Footer */
.footer {
  background: var(--primary-color);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(246, 196, 83, 0.2);
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 1280px) {
  .nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  header .btn-group {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  header .btn-group a {
    width: max-content;
  }


  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .card {
    padding: 1rem;
  }
  
  table {
    font-size: 0.9rem;
    min-width: 600px;
  }
  
  th, td {
    padding: 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  header .btn-group {
    width: 100%;
    justify-content: center;
    order: 3;
    margin-top: 15px;
  }

  header .btn-group a {
    width: 100%;
  }

  .header-content {
    flex-wrap: wrap;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-secondary {
  color: var(--secondary-color);
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Image Responsive */
img {
  max-width: 100%;
  height: auto;
}

.picture img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* CTA Buttons Special Styling */
.cta-section {
  text-align: center;
  padding: 2rem;
  background: rgba(246, 196, 83, 0.1);
  border-radius: 10px;
  margin: 2rem 0;
}

.cta-section h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.cta-section picture {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  max-width: 800px;
  margin: 1.5rem auto;
}

.cta-section img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.cta-section picture:hover img {
  transform: scale(1.02);
}

/* External Link Styling */
.external-link {
  color: var(--secondary-color);
  text-decoration: underline;
}

.external-link:hover {
  color: var(--text-light);
}

/* Star Rating */
.star-rating {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

/* Game Cards */
.game-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(246, 196, 83, 0.2);
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
}

.game-card h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.game-card p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Bonus Cards */
.bonus-card {
  background: linear-gradient(135deg, rgba(246, 196, 83, 0.1) 0%, rgba(204, 10, 66, 0.1) 100%);
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.bonus-card h4 {
  color: var(--secondary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.bonus-card .bonus-amount {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-light);
  margin: 0.5rem 0;
}

/* FAQ Section */
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-color);
  padding: 1rem;
  cursor: pointer;
  font-weight: bold;
  color: var(--text-light);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #a00835;
}

.faq-answer {
  padding: 1rem;
  display: none;
  color: var(--text-light);
}

.faq-answer.active {
  display: block;
}

/* Reviews Section */
.review {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--secondary-color);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.review-author {
  font-weight: bold;
  color: var(--secondary-color);
}

/* Expert Opinion */
.expert-opinion {
  background: linear-gradient(135deg, rgba(246, 196, 83, 0.1) 0%, rgba(204, 10, 66, 0.1) 100%);
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.expert-opinion h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.expert-opinion p {
  color: var(--text-light);
  font-style: italic;
}
