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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333433;
  background-color: #f8f9fa;
}

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

/* Color Variables */
:root {
  --primary-color: #5d7ed8;
  --secondary-color: #dcba98;
  --accent-color: #a8a99f;
  --text-dark: #333433;
  --text-medium: #656060;
  --text-light: #7b7e98;
  --white: #ffffff;
  --light-bg: #f8f9fa;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.75rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  gap: 1rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

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

.btn-primary:hover {
  background: #4a6bc7;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: #d1a885;
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color), #4a6bc7);
  color: var(--white);
  padding: 3rem 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

/* Responsive Images */
.responsive-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
section {
  padding: 2rem 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.section-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.section-content.reverse {
  direction: rtl;
}

.section-content.reverse > * {
  direction: ltr;
}

/* Game Overview */
.game-overview {
  background: var(--white);
}

.specs-table {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  background: var(--light-bg);
  border-radius: 5px;
  border-left: 4px solid var(--primary-color);
}

.spec-label {
  font-weight: 600;
  color: var(--text-dark);
}

.spec-value {
  font-weight: 700;
  color: var(--primary-color);
}

/* Lists */
.numbered-list {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.numbered-list li {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.strategy-list {
  list-style: none;
  padding: 0;
}

.strategy-list li {
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--light-bg);
  border-radius: 5px;
  border-left: 4px solid var(--secondary-color);
}

.responsible-list {
  list-style: none;
  padding: 0;
}

.responsible-list li {
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 5px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Guide Sections */
.guide-sections {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.guide-section {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.guide-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Tables */
.table-responsive {
  overflow-x: auto;
  margin: 1rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
}

tr:hover {
  background: var(--light-bg);
}

/* Mobile Casinos */
.mobile-casinos {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.casino-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--primary-color);
}

.casino-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Pros and Cons */
.pros-cons-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.pros,
.cons {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pros {
  border-top: 4px solid #28a745;
}

.cons {
  border-top: 4px solid #dc3545;
}

.pros h3 {
  color: #28a745;
}

.cons h3 {
  color: #dc3545;
}

.pros ul,
.cons ul {
  list-style: none;
  padding: 0;
}

.pros li,
.cons li {
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.pros li:before {
  content: "✓ ";
  color: #28a745;
  font-weight: bold;
}

.cons li:before {
  content: "✗ ";
  color: #dc3545;
  font-weight: bold;
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-color), #d1a885);
  padding: 4rem 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-medium);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-section ul {
  list-style: none;
  padding: 0;
}

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

.footer-section ul li a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--white);
}

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

/* Responsive Design */
@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 2fr 1fr;
  }

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

  .section-content.reverse {
    grid-template-columns: 1fr 2fr;
  }

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

  .mobile-casinos {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .pros-cons-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav {
    gap: 2rem;
  }

  .hero-title {
    font-size: 3rem;
  }

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

@media (min-width: 1024px) {
  section {
    padding: 3rem 0;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 3.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.section-content,
.guide-section,
.casino-card,
.faq-item {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.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;
}
