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

body {
  font-family: "Arial", sans-serif;
  background-image: url("public/images/bg-img.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: overlay;
  color: #ffffff;
  line-height: 1.6;
}

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

/* Header Styles */
.header {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(26, 26, 26, 0.9) 100%
  );
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  transform: none !important;
  will-change: auto;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 140, 0, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.header-content {
  position: relative;
  z-index: 2;
}

.logo {
  margin-bottom: 20px;
}

.logo-img {
  max-height: 100px;
  width: auto;
}

.main-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.subtitle {
  font-size: 1.5rem;
  color: #cccccc;
  margin-bottom: 30px;
  font-weight: 300;
}

.header-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.date {
  font-size: 1.1rem;
  color: #ff8c00;
  font-weight: 600;
}

.features {
  display: flex;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.features li {
  background: rgba(255, 140, 0, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 140, 0, 0.3);
}

.disclaimer {
  font-size: 0.9rem;
  color: #999999;
  font-style: italic;
}

/* Main Content */
.main-content {
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Casino Card Styles */
.casino-section,
.betting-section {
  margin-bottom: 80px;
}

.casino-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.casino-card {
  background: linear-gradient(
    135deg,
    rgba(31, 31, 31, 0.95) 0%,
    rgba(41, 41, 41, 0.9) 100%
  );
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.casino-card:hover {
  background: linear-gradient(
    135deg,
    rgba(41, 41, 41, 0.95) 0%,
    rgba(51, 51, 51, 0.9) 100%
  );
  border-color: rgba(255, 140, 0, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.casino-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  color: #000000;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.casino-logo {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px;
}

.casino-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.casino-info {
  flex: 1;
  min-width: 0;
}

.casino-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}

.casino-bonus {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bonus-label {
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 500;
}

.bonus-amount {
  font-size: 1.1rem;
  color: #ff8c00;
  font-weight: bold;
}

.casino-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 120px;
}

.rating-score {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4ade80;
  text-shadow: 0 2px 4px rgba(74, 222, 128, 0.3);
}

.rating-stars {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stars {
  color: #ffa500;
  font-size: 1.2rem;
}

.reviews {
  font-size: 0.8rem;
  color: #999999;
  text-align: center;
}

.editor-review {
  color: #ff8c00;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.editor-review:hover {
  color: #ffa500;
  text-decoration: underline;
}

.casino-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 150px;
}

.cta-button {
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  color: #000000;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
  display: inline-block;
  text-align: center;
}

.cta-button:hover {
  background: linear-gradient(135deg, #ffa500 0%, #ffb84d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.visit-link {
  font-size: 0.9rem;
  color: #cccccc;
  text-align: center;
}

/* Detailed Reviews */
.detailed-reviews {
  margin-bottom: 80px;
}

.review-card {
  background: linear-gradient(
    135deg,
    rgba(31, 31, 31, 0.95) 0%,
    rgba(41, 41, 41, 0.9) 100%
  );
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.review-number {
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.review-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  flex: 1;
}

.review-rating {
  font-size: 2rem;
  font-weight: bold;
  color: #4ade80;
  margin-right: 20px;
}

.review-logo {
  width: 80px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 5px;
}

.review-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.review-content p {
  color: #cccccc;
  margin-bottom: 25px;
  line-height: 1.8;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.pros h4,
.cons h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.pros h4 {
  color: #4ade80;
}

.cons h4 {
  color: #f87171;
}

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

.pros li,
.cons li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #cccccc;
  position: relative;
  padding-left: 20px;
}

.pros li::before {
  content: "✓";
  color: #4ade80;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cons li::before {
  content: "✗";
  color: #f87171;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.review-cta {
  text-align: center;
}

/* Guide Section */
.guide-section {
  margin-bottom: 80px;
}

.guide-content {
  max-width: 800px;
  margin: 0 auto;
}

.guide-section-item {
  background: linear-gradient(
    135deg,
    rgba(31, 31, 31, 0.95) 0%,
    rgba(41, 41, 41, 0.9) 100%
  );
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.guide-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff8c00;
  margin-bottom: 20px;
}

.guide-text p {
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Footer */
.footer {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(26, 26, 26, 0.9) 100%
  );
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 140, 0, 0.3);
}

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

.footer-section h3 {
  color: #ff8c00;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-section h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-section p {
  color: #cccccc;
  line-height: 1.6;
}

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

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ff8c00;
}

.footer-flag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.footer-flag img {
  width: 30px;
  height: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.risk-warning {
  color: #f87171;
  font-weight: bold;
  margin-bottom: 10px;
}

.copyright {
  color: #999999;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .header-info {
    flex-direction: column;
    gap: 20px;
  }

  .features {
    flex-direction: column;
    gap: 10px;
  }

  .casino-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .casino-logo {
    width: 100px;
    height: 60px;
  }

  .casino-rating {
    flex-direction: row;
    justify-content: space-between;
    min-width: auto;
    width: 100%;
  }

  .casino-cta {
    min-width: auto;
    width: 100%;
  }

  .review-header {
    flex-direction: column;
    text-align: center;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .casino-card {
    padding: 20px;
  }

  .rating-score {
    font-size: 2rem;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
.casino-card,
.review-card,
.guide-section-item {
  animation: fadeInUp 0.6s ease-out;
}

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

/* Accessibility */
.cta-button:focus,
.editor-review:focus,
.footer-section a:focus {
  outline: 2px solid #ff8c00;
  outline-offset: 2px;
}

/* How We Rate Page Styles */
.page-nav {
  margin-bottom: 40px;
}

.nav-link {
  color: #ff8c00;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-link:hover {
  color: #ffa500;
}

.rating-section {
  margin-bottom: 60px;
}

.rating-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intro-content {
  background: linear-gradient(
    135deg,
    rgba(31, 31, 31, 0.95) 0%,
    rgba(41, 41, 41, 0.9) 100%
  );
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
  text-align: left;
}

.intro-content p {
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.8;
}

.intro-content p:last-child {
  margin-bottom: 0;
}

.criteria-sections {
  display: grid;
  gap: 25px;
  margin-bottom: 60px;
}

.criteria-card {
  background: linear-gradient(
    135deg,
    rgba(31, 31, 31, 0.95) 0%,
    rgba(41, 41, 41, 0.9) 100%
  );
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.criteria-card:hover {
  background: linear-gradient(
    135deg,
    rgba(41, 41, 41, 0.95) 0%,
    rgba(51, 51, 51, 0.9) 100%
  );
  border-color: rgba(255, 140, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
}

.criteria-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.criteria-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.criteria-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff8c00;
  margin: 0;
}

.criteria-content p {
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.8;
}

.criteria-content p:last-child {
  margin-bottom: 0;
}

.disclaimer-section {
  margin-bottom: 60px;
}

.disclaimer-card {
  background: linear-gradient(
    135deg,
    rgba(51, 29, 29, 0.95) 0%,
    rgba(61, 39, 39, 0.9) 100%
  );
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.disclaimer-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f87171 0%, #fca5a5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.disclaimer-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f87171;
  margin: 0;
}

.disclaimer-content p {
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.8;
}

.disclaimer-content p:last-child {
  margin-bottom: 0;
}

.disclaimer-content strong {
  color: #f87171;
}

.cta-section {
  margin-bottom: 60px;
}

.cta-card {
  background: linear-gradient(
    135deg,
    rgba(31, 31, 31, 0.95) 0%,
    rgba(41, 41, 41, 0.9) 100%
  );
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.cta-card h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.cta-card p {
  color: #cccccc;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Advertising Disclosure Page Styles */
.disclosure-section {
  margin-bottom: 60px;
}

.disclosure-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.disclosure-sections {
  display: grid;
  gap: 25px;
  margin-bottom: 60px;
}

.disclosure-card {
  background: linear-gradient(
    135deg,
    rgba(31, 31, 31, 0.95) 0%,
    rgba(41, 41, 41, 0.9) 100%
  );
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.disclosure-card:hover {
  background: linear-gradient(
    135deg,
    rgba(41, 41, 41, 0.95) 0%,
    rgba(51, 51, 51, 0.9) 100%
  );
  border-color: rgba(255, 140, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
}

.disclosure-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.disclosure-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.disclosure-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff8c00;
  margin: 0;
}

.disclosure-content p {
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.8;
}

.disclosure-content p:last-child {
  margin-bottom: 0;
}

.microsoft-notice {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 140, 0, 0.2);
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}

.microsoft-notice h4 {
  color: #ff8c00;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.microsoft-notice p {
  margin: 0;
}

.external-link {
  color: #ff8c00;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.external-link:hover {
  color: #ffa500;
}

.commitment-list {
  list-style: none;
  margin-top: 20px;
}

.commitment-list li {
  padding: 8px 0 8px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #cccccc;
  position: relative;
}

.commitment-list li::before {
  content: "✓";
  color: #4ade80;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.notice-section {
  margin-bottom: 60px;
}

.notice-card {
  background: linear-gradient(
    135deg,
    rgba(51, 29, 29, 0.95) 0%,
    rgba(61, 39, 39, 0.9) 100%
  );
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.notice-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.notice-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f87171 0%, #fca5a5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notice-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f87171;
  margin: 0;
}

.notice-content p {
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.8;
}

.notice-content p:last-child {
  margin-bottom: 0;
}

.notice-content strong {
  color: #f87171;
}

.contact-section {
  margin-bottom: 60px;
}

.contact-card {
  background: linear-gradient(
    135deg,
    rgba(31, 31, 31, 0.95) 0%,
    rgba(41, 41, 41, 0.9) 100%
  );
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.contact-card h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.contact-card p {
  color: #cccccc;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.secondary-button {
  background: transparent;
  color: #ff8c00;
  padding: 12px 24px;
  border: 2px solid #ff8c00;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.secondary-button:hover {
  background: #ff8c00;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* Responsive Design for Rating Page */
@media (max-width: 768px) {
  .criteria-header,
  .disclosure-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .criteria-title,
  .disclosure-title {
    font-size: 1.3rem;
  }

  .disclaimer-header,
  .notice-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .disclaimer-title,
  .notice-title {
    font-size: 1.3rem;
  }

  .intro-content,
  .criteria-card,
  .disclaimer-card,
  .cta-card,
  .disclosure-card,
  .notice-card,
  .contact-card {
    padding: 20px;
  }

  .cta-card h3,
  .contact-card h3 {
    font-size: 1.5rem;
  }

  .contact-actions {
    flex-direction: column;
    align-items: center;
  }

  .secondary-button {
    width: 100%;
    max-width: 300px;
  }
}

/* Responsible Gaming Page Styles */
.responsible-section {
  margin-bottom: 60px;
}

.responsible-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.responsible-intro strong {
  color: #ff8c00;
  font-size: 1.2rem;
}

.guidelines-sections {
  display: grid;
  gap: 25px;
  margin-bottom: 60px;
}

.guideline-card {
  background: linear-gradient(
    135deg,
    rgba(31, 31, 31, 0.95) 0%,
    rgba(41, 41, 41, 0.9) 100%
  );
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.guideline-card:hover {
  background: linear-gradient(
    135deg,
    rgba(41, 41, 41, 0.95) 0%,
    rgba(51, 51, 51, 0.9) 100%
  );
  border-color: rgba(255, 140, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
}

.guideline-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.guideline-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guideline-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff8c00;
  margin: 0;
}

.guideline-content p {
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.8;
}

.guideline-content p:last-child {
  margin-bottom: 0;
}

.important-notice {
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}

.important-notice p {
  color: #ff8c00;
  margin: 0;
  font-size: 1.1rem;
}

.protection-list,
.terms-list {
  list-style: none;
  margin-top: 15px;
}

.protection-list li,
.terms-list li {
  padding: 5px 0 5px 20px;
  color: #cccccc;
  position: relative;
}

.protection-list li::before,
.terms-list li::before {
  content: "•";
  color: #ff8c00;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.warning-box {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}

.warning-box h4 {
  color: #f87171;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.warning-box ul {
  list-style: none;
  margin: 0;
}

.warning-box li {
  padding: 8px 0 8px 20px;
  color: #cccccc;
  position: relative;
  border-bottom: 1px solid rgba(248, 113, 113, 0.2);
}

.warning-box li::before {
  content: "✗";
  color: #f87171;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.warning-box li:last-child {
  border-bottom: none;
}

.warning-signs {
  list-style: none;
  margin-top: 15px;
}

.warning-signs li {
  padding: 8px 0 8px 20px;
  color: #cccccc;
  position: relative;
  border-bottom: 1px solid rgba(248, 113, 113, 0.2);
}

.warning-signs li::before {
  content: "⚠";
  color: #f87171;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.warning-signs li:last-child {
  border-bottom: none;
}

.help-resources {
  background: rgba(72, 187, 120, 0.1);
  border: 1px solid rgba(72, 187, 120, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}

.help-resources h4 {
  color: #4ade80;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.help-resources ul {
  list-style: none;
  margin: 0;
}

.help-resources li {
  padding: 5px 0 5px 20px;
  color: #cccccc;
  position: relative;
}

.help-resources li::before {
  content: "✓";
  color: #4ade80;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Responsive Design for Responsible Gaming Page */
@media (max-width: 768px) {
  .guideline-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .guideline-title {
    font-size: 1.3rem;
  }

  .guideline-card {
    padding: 20px;
  }

  .responsible-intro {
    padding: 0 20px;
  }
}

/* About Us Page Styles */
.about-section {
  margin-bottom: 60px;
}

.about-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-sections {
  display: grid;
  gap: 25px;
  margin-bottom: 60px;
}

.about-card {
  background: linear-gradient(
    135deg,
    rgba(31, 31, 31, 0.95) 0%,
    rgba(41, 41, 41, 0.9) 100%
  );
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.about-card:hover {
  background: linear-gradient(
    135deg,
    rgba(41, 41, 41, 0.95) 0%,
    rgba(51, 51, 51, 0.9) 100%
  );
  border-color: rgba(255, 140, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
}

.about-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.about-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff8c00;
  margin: 0;
}

.about-content p {
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.team-highlights {
  background: rgba(72, 187, 120, 0.1);
  border: 1px solid rgba(72, 187, 120, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}

.team-highlights h4 {
  color: #4ade80;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.team-highlights ul {
  list-style: none;
  margin: 0;
}

.team-highlights li {
  padding: 5px 0 5px 20px;
  color: #cccccc;
  position: relative;
}

.team-highlights li::before {
  content: "✓";
  color: #4ade80;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.independence-notice {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}

.independence-notice h4 {
  color: #3b82f6;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.independence-notice p {
  color: #cccccc;
  margin: 0;
}

.investigation-list {
  list-style: none;
  margin-top: 15px;
}

.investigation-list li {
  padding: 8px 0 8px 20px;
  color: #cccccc;
  position: relative;
  border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.investigation-list li::before {
  content: "•";
  color: #ff8c00;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.investigation-list li:last-child {
  border-bottom: none;
}

.promise-box {
  background: rgba(72, 187, 120, 0.1);
  border: 1px solid rgba(72, 187, 120, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}

.promise-box h4 {
  color: #4ade80;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.promise-box ul {
  list-style: none;
  margin: 0;
}

.promise-box li {
  padding: 5px 0 5px 20px;
  color: #cccccc;
  position: relative;
}

.promise-box li::before {
  content: "✓";
  color: #4ade80;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.anti-promise-box {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}

.anti-promise-box h4 {
  color: #f87171;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.anti-promise-box ul {
  list-style: none;
  margin: 0;
}

.anti-promise-box li {
  padding: 5px 0 5px 20px;
  color: #cccccc;
  position: relative;
}

.anti-promise-box li::before {
  content: "✗";
  color: #f87171;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Responsive Design for About Us Page */
@media (max-width: 768px) {
  .about-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .about-title {
    font-size: 1.3rem;
  }

  .about-card {
    padding: 20px;
  }

  .about-intro {
    padding: 0 20px;
  }

  .team-highlights,
  .independence-notice,
  .promise-box,
  .anti-promise-box {
    padding: 15px;
  }
}

/* Legal Pages Styles */
.legal-section {
  margin-bottom: 60px;
}

.legal-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.legal-sections {
  display: grid;
  gap: 25px;
  margin-bottom: 60px;
}

.legal-card {
  background: linear-gradient(
    135deg,
    rgba(31, 31, 31, 0.95) 0%,
    rgba(41, 41, 41, 0.9) 100%
  );
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.legal-card:hover {
  background: linear-gradient(
    135deg,
    rgba(41, 41, 41, 0.95) 0%,
    rgba(51, 51, 51, 0.9) 100%
  );
  border-color: rgba(255, 140, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
}

.legal-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.legal-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legal-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff8c00;
  margin: 0;
}

.legal-content {
  color: #cccccc;
  line-height: 1.8;
}

.legal-content p {
  margin-bottom: 15px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.subsection {
  margin-bottom: 20px;
}

.subsection:last-child {
  margin-bottom: 0;
}

.subsection h4 {
  color: #ff8c00;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.definitions-list,
.allowed-list,
.prohibited-list,
.info-list,
.usage-list,
.service-list,
.legal-requirements,
.cookies-list,
.security-list,
.rights-list,
.retention-list,
.liability-list {
  list-style: none;
  margin: 15px 0;
  padding: 0;
}

.definitions-list li,
.allowed-list li,
.prohibited-list li,
.info-list li,
.usage-list li,
.service-list li,
.legal-requirements li,
.cookies-list li,
.security-list li,
.rights-list li,
.retention-list li,
.liability-list li {
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.definitions-list li::before,
.info-list li::before,
.usage-list li::before,
.service-list li::before,
.legal-requirements li::before,
.cookies-list li::before,
.security-list li::before,
.rights-list li::before,
.retention-list li::before,
.liability-list li::before {
  content: "•";
  color: #ff8c00;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.allowed-list li::before {
  content: "✓";
  color: #4ade80;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.prohibited-list li::before {
  content: "✗";
  color: #f87171;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.definitions-list li:last-child,
.allowed-list li:last-child,
.prohibited-list li:last-child,
.info-list li:last-child,
.usage-list li:last-child,
.service-list li:last-child,
.legal-requirements li:last-child,
.cookies-list li:last-child,
.security-list li:last-child,
.rights-list li:last-child,
.retention-list li:last-child,
.liability-list li:last-child {
  border-bottom: none;
}

.legal-link {
  color: #ff8c00;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #ffa500;
}

.contact-info {
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin-top: 15px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.warning-section {
  margin-bottom: 60px;
}

.warning-card {
  background: linear-gradient(
    135deg,
    rgba(51, 29, 29, 0.95) 0%,
    rgba(61, 39, 39, 0.9) 100%
  );
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.warning-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.warning-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f87171 0%, #fca5a5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.warning-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f87171;
  margin: 0;
}

.warning-content {
  color: #cccccc;
  line-height: 1.8;
}

.warning-content p {
  margin-bottom: 15px;
}

.warning-content p:last-child {
  margin-bottom: 0;
}

.warning-content strong {
  color: #f87171;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
  .legal-header,
  .warning-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .legal-title,
  .warning-title {
    font-size: 1.3rem;
  }

  .legal-card,
  .warning-card {
    padding: 20px;
  }

  .legal-intro {
    padding: 0 20px;
  }

  .contact-info {
    padding: 15px;
  }

  .subsection h4 {
    font-size: 1rem;
  }
}

/* Print Styles */
@media print {
  body {
    background: white;
    color: black;
  }

  .casino-card,
  .review-card,
  .guide-section-item,
  .criteria-card,
  .disclaimer-card {
    background: white;
    border: 1px solid #ccc;
  }

  .cta-button {
    background: #ff8c00;
    color: white;
  }
}
