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

:root {
  --primary-purple: #4c1c8f;
  --dark-purple: #3a1570;
  --light-purple: #6b2db8;
  --accent-purple: #8b4ac7;
  --bg-light: #f5f5f7;
  --bg-white: #ffffff;
  --text-dark: #1d1d1f;
  --text-gray: #6e6e73;
  --border-color: #e5e5e7;
  --success-green: #34c759;
  --warning-red: #ff3b30;
  --warning-orange: #ff9500;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.site-header {
  background-color: var(--primary-purple);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
  background-color: var(--primary-purple);
}

.navbar-brand {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand:hover {
  color: white;
}

.navbar-brand i {
  font-size: 1.8rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: white;
}

.top-nav {
  background-color: var(--dark-purple);
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: white;
}

.breadcrumb-section {
  background-color: white;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
  margin: 0;
  background: transparent;
  padding: 0;
}

.breadcrumb-item a {
  color: var(--primary-purple);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--text-gray);
}

.main-content {
  padding: 2rem 0;
  min-height: 100vh;
}

.page-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.trust-badge i {
  color: #2e7d32;
}

.intro-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.top-casinos h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.casino-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.casino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.casino-badge {
  position: absolute;
  top: -10px;
  left: -10px;
  background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.casino-logo {
  margin: 1rem 0;
}

.logo-placeholder {
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  padding: 1.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #555;
  letter-spacing: 1px;
}

.casino-check {
  color: var(--success-green);
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.casino-offer {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0.5rem 0;
}

.casino-spins {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin: 0.25rem 0;
}

.casino-bonus {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.btn-casino {
  background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  margin-bottom: 1rem;
}

.btn-casino:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(76, 28, 143, 0.4);
}

.casino-rating {
  display: flex;
  justify-content: space-around;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
}

.rating-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.rating-label {
  color: var(--text-gray);
  font-size: 0.75rem;
}

.rating-value {
  color: var(--text-dark);
  font-weight: 600;
}

.more-details {
  color: var(--primary-purple);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
  display: inline-block;
}

.more-details:hover {
  text-decoration: underline;
}

.additional-casinos {
  margin-top: 2rem;
}

.casino-list-item {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.casino-list-item:hover {
  transform: translateX(4px);
}

.casino-badge-small {
  background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.casino-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.logo-placeholder-small {
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #555;
  min-width: 120px;
  text-align: center;
}

.casino-check-small {
  color: var(--success-green);
  font-size: 1.2rem;
}

.casino-offer-info {
  flex-grow: 1;
  text-align: left;
}

.casino-offer-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.casino-offer-info p {
  color: var(--text-gray);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.rating-small {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.rating-small strong {
  color: var(--text-dark);
}

.btn-casino-small {
  background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.btn-casino-small:hover {
  transform: scale(1.05);
}

.why-choose {
  margin-top: 3rem;
}

.why-card {
  background: linear-gradient(135deg, #ffe6e6, #ffcccc);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.expert-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.expert-rating span {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.expert-rating strong {
  color: var(--warning-red);
  font-size: 1.1rem;
  font-weight: 700;
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.why-card ul {
  list-style: none;
  padding: 0;
}

.why-card li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.why-card li i {
  color: var(--warning-red);
  margin-top: 0.2rem;
}

.btn-outline-primary {
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  background: white;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

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

.localization-section {
  margin-top: 3rem;
}

.localization-card {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 12px;
  padding: 2rem;
}

.localization-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.localization-card p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.globe-icon {
  color: var(--primary-purple);
  text-align: center;
  opacity: 0.6;
}

.btn-primary {
  background: var(--primary-purple);
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--dark-purple);
  transform: scale(1.02);
}

.expert-ratings {
  margin-top: 3rem;
}

.expert-banner {
  background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.expert-banner h2 {
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.btn-warning {
  background: var(--warning-orange);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-warning:hover {
  background: #ff8800;
  transform: scale(1.02);
}

.ratings-explanation {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.ratings-explanation h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.ratings-explanation p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.rating-breakdown h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.rating-item-large {
  background: linear-gradient(135deg, #f5f5f7, #e8e8ea);
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stars {
  color: var(--warning-orange);
  font-size: 1.2rem;
}

.rating-score {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-left: auto;
}

.rating-item-large h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-dark);
}

.rating-details {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-section {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sidebar-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-purple);
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  margin-bottom: 0.75rem;
}

.sidebar-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-links a:hover {
  color: var(--primary-purple);
}

.sidebar-links i {
  font-size: 0.75rem;
  opacity: 0.6;
}

.site-footer {
  background-color: var(--primary-purple);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.site-footer h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: white;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background 0.3s;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.certification-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
}

.certification-badges img {
  height: 40px;
  border-radius: 4px;
}

.copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

@media (max-width: 992px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .page-title {
    font-size: 1.75rem;
  }

  .casino-card {
    margin-bottom: 1rem;
  }

  .expert-banner {
    text-align: center;
  }

  .expert-banner h2 {
    font-size: 1.5rem;
  }

  .sidebar {
    position: static;
    margin-top: 2rem;
  }

  .certification-badges {
    justify-content: center;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .casino-list-item {
    flex-direction: column;
    text-align: center;
  }

  .casino-offer-info {
    text-align: center;
  }

  .rating-item-large {
    flex-direction: column;
    text-align: center;
  }

  .rating-score {
    margin-left: 0;
  }

  .localization-card .globe-icon {
    margin-top: 1rem;
  }
}

.about-hero {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.about-hero .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.about-icon {
  color: var(--primary-purple);
  text-align: center;
  opacity: 0.7;
}

.mission-card {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  padding: 2rem;
  border-radius: 12px;
}

.mission-card ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.mission-card li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  color: var(--primary-purple);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

.team-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.team-avatar {
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.team-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.trust-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.trust-item i {
  color: var(--success-green);
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.trust-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.trust-item p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin: 0;
}

.cta-section {
  margin: 3rem 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  color: white;
}

.cta-card h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-card p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.contact-method {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.contact-icon {
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.contact-method h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-method p {
  color: var(--text-gray);
  margin: 0;
}

.accordion-button {
  background-color: white;
  color: var(--text-dark);
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-purple);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-purple);
}

.accordion-body {
  background-color: #f8f9fa;
}

.filter-section .form-select {
  border: 2px solid var(--border-color);
  padding: 0.75rem;
  border-radius: 8px;
}

.filter-section .form-select:focus {
  border-color: var(--primary-purple);
  box-shadow: none;
}

.pagination .page-link {
  color: var(--primary-purple);
  border: 2px solid var(--border-color);
  margin: 0 0.25rem;
  border-radius: 8px;
}

.pagination .page-item.active .page-link {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
}

.pagination .page-link:hover {
  background-color: var(--light-purple);
  border-color: var(--light-purple);
  color: white;
}

.game-categories .btn-category {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  background: white;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.game-categories .btn-category.active,
.game-categories .btn-category:hover {
  background: var(--primary-purple);
  color: white;
}

.game-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.game-thumbnail {
  position: relative;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.game-image {
  color: var(--primary-purple);
  opacity: 0.3;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(76, 28, 143, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.btn-play {
  background: white;
  color: var(--primary-purple);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.btn-play:hover {
  background: var(--warning-orange);
  color: white;
}

.game-info {
  padding: 1rem;
}

.game-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.game-provider {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.game-rating {
  color: var(--warning-orange);
  font-size: 0.9rem;
}

.game-rating span {
  color: var(--text-dark);
  margin-left: 0.5rem;
  font-weight: 600;
}

.info-banner {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.feature-box {
  text-align: center;
  padding: 1.5rem;
}

.feature-box i {
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.feature-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-box p {
  color: var(--text-gray);
  line-height: 1.6;
}

.guide-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 1.5rem;
  height: 100%;
}

.guide-icon {
  color: var(--primary-purple);
  flex-shrink: 0;
}

.guide-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.guide-content p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.guide-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.guide-content li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
}

.guide-content li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-purple);
  font-weight: bold;
}

.responsible-gaming-card {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  padding: 2rem;
  border-radius: 12px;
}

.responsible-gaming-card h3 {
  color: var(--text-dark);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.responsible-gaming-card li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.responsible-gaming-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: bold;
}

@media (max-width: 768px) {
  .guide-card {
    flex-direction: column;
    text-align: center;
  }

  .cta-card h2 {
    font-size: 1.5rem;
  }

  .game-thumbnail {
    height: 150px;
  }
}
