/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styling */
body {
  font-family: 'Roboto', sans-serif;
  background: #F8F5F2;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #F8F5F2 0%, #FFFFFF 100%);
  padding: 4rem 2rem;
  text-align: left;
  color: #2C3E50;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;

}
.hero-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.hero-details img {
  max-width: 100%;
  width: 400px;
  border-radius: 8px;
}
.hero-details p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 500px;
}

/* Main Content Area - Designed for Rich Text */
.main-content {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
}

/* Text Blocks for lengthy content */
p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Header Styling */
/****************************************
  HEADER STYLES (Similar to Screenshot)
****************************************/
.top-header {
  background-color: #2C3E50; /* Dark navy background */
  color: #ECF0F1;            /* Light text */
  border-bottom: 4px solid #D4AF37; /* Gold border at the bottom */
  width: 100%;
}

.top-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO AREA */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-logo img {
  height: 50px;   /* Adjust as needed */
  width: auto;
  object-fit: contain;
}

.site-title {
  font-size: 1.2rem;
  font-weight: bold;
}

/* NAVIGATION */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.main-nav li a {
  color: #ECF0F1;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem;
  transition: color 0.3s;
}

.main-nav li a:hover {
  color: #D4AF37; /* Gold hover accent */
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .top-header-container {
    flex-direction: column;
    justify-content: center;
  }
  .main-nav ul {
    flex-direction: column;
    margin-top: 0.5rem;
  }
}


.logo img {
  max-height: 60px;      /* Logo height will not exceed 60px */
  max-width: 200px;      /* Logo width will not exceed 200px */
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Section Styling */
.section {
  margin-bottom: 2rem;
}
.section h2 {
  margin-bottom: 1rem;
  color: #2C3E50;
  font-size: 2rem;
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 0.5rem;
}
.section h3 {
  margin: 1.5rem 0 0.5rem;
  color: #444;
  font-size: 1.5rem;
}

/* Images */
.section img {
  max-width: 100%;
  display: block;
  margin: 1rem 0;
  border-radius: 8px;
}

/* Custom Bullet List */
.custom-bullets {
  list-style: none;
  padding-left: 1.5rem;
}
.custom-bullets li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
}
.custom-bullets li:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #D4AF37;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Custom Numbered List */
.custom-numbered {
  counter-reset: custom-counter;
  list-style: none;
  padding-left: 2rem;
}
.custom-numbered li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.8rem;
}
.custom-numbered li:before {
  counter-increment: custom-counter;
  content: counter(custom-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #D4AF37;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Table Styling */
/* Modern Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 1rem;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

table thead {
  background: #D4AF37; /* refined gold accent */
  color: #fff;
}

table thead th {
  padding: 1rem;
  text-align: center;
}

table tbody tr {
  transition: background 0.3s;
}

table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

table tbody tr:hover {
  background: #f1f1f1;
}

table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #eee;
}

table tbody tr:last-child td {
  border-bottom: none;
}


/* Special Blocks for Pros & Cons */
.pros-block,
.cons-block {
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.pros-block {
  background: #F0F8E2;
  border-left: 5px solid #D4AF37;
}
.cons-block {
  background: #FDEDEC;
  border-left: 5px solid #E74C3C;
}
.pros-block h3,
.cons-block h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

/* Footer Styling */
/* Footer (Similar to Screenshot, Using Existing Color Palette) */
.site-footer {
  background-color: #2C3E50; /* Dark navy background */
  color: #ECF0F1;           /* Light text */
  font-size: 0.9rem;
  padding: 2rem 1rem;
}

/* Wrapper sections for easy layout */
.footer-top, .footer-middle, .footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;
}

/* Footer Top Row */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #444; /* Subtle divider */
}

/* Navigation Links */
.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.footer-nav a {
  color: #ECF0F1;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #D4AF37; /* Gold accent on hover */
}

/* Responsible Gambling Logos */
.footer-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-logos img {
  height: 40px;
  transition: transform 0.3s;
}
.footer-logos img:hover {
  transform: scale(1.1);
}

/* Footer Middle Row */
.footer-middle {
  border-bottom: 1px solid #444;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;
}
.footer-middle p {
  margin: 0.5rem 0;
  line-height: 1.6;
  color: #BDC3C7; /* Slightly lighter gray for disclaimers */
}

/* Footer Bottom Row */
.footer-bottom {
  text-align: center;
}
.footer-bottom p {
  margin: 0.5rem 0;
}
.footer-bottom a {
  color: #ECF0F1;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: #D4AF37;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-logos {
    margin-top: 1rem;
  }
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .header-container, .footer-container {
    flex-direction: column;
    text-align: center;
  }
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hero-details {
    flex-direction: column;
    gap: 1rem;
  }
  .responsible-gambling {
    justify-content: center;
    margin-top: 1rem;
  }
}


/* FAQ Section Styling */
/* FAQ Section Styling */
.faq-section {
  background: #FFFFFF;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 1.5rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: bold;
  color: #2C3E50;
  margin-bottom: 0.5rem;
}

.faq-answer {
  font-size: 1rem;
  color: #555;
  margin-top: 0.5rem;
  /* Optional: Remove left margin and border styling if not desired */
  margin-left: 0;
  border-left: none;
  padding-left: 0;
}
 /* Casino TOP */
/* â”€â”€ 2) Wrapper â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.casino-list {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* â”€â”€ 3) Card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.casino-card {
    position: relative;           /* for rank badge */
    display: flex;
    flex-direction: row;
    background: #212936;          /* card background */
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    border-left: 4px solid #4e80ee; /* accent border */
}

/* â”€â”€ 4) Rank badge â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.rank {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    background: #4e80ee;          /* primary accent */
    color: #ffffff;
    border-radius: 0 0 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* â”€â”€ 5) Image column â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* â”€â”€ Adaptive logo frame â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.card-image {
    flex: 0 0 20%;                 /* Take up ~20% of card width */
    max-width: 240px;              /* Donâ€™t exceed your desired desktop size */
    min-width: 120px;              /* Donâ€™t shrink below this on narrow cards */
    aspect-ratio: 1 / 1;           /* Always a perfect square */
    background: #f7f7f7;           /* Neutral frame */
    padding: 1rem;                 /* Space around the logo */
    display: flex;
    align-items: center;
    justify-content: center;       /* Center the logo */
    border-radius: 4px;
}

/* Ensure logos fit inside the frame without distortion */
.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* â”€â”€ Mobile tweak: full-width frame â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
    .card-image {
        flex: 0 0 auto;
        width: 100%;               /* full width of the card */
        aspect-ratio: 4 / 3;       /* a little shorter than square */
        max-width: none;
        margin: 0 auto 1rem;       /* center and add spacing below */
    }
}

/* â”€â”€ 6) Main content â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.card-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 2rem;
}

/* â”€â”€ 7) Casino info: title + rating â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.casino-info {
    display: flex;
    flex-direction: column;
}

.casino-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #ffffff;               /* white title */
}

.rating {
    margin-top: .25rem;
    display: flex;
}

.rating .star {
    color: #FFD700;               /* secondary accent for stars */
    font-size: 1rem;
    margin-right: 2px;
}

/* â”€â”€ 8) Offers (bonus + free spins) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.offers {
    /* make the whole block a bit wider & taller */
    width: 180px;
    padding: 1rem 0;
    box-sizing: border-box;

    /* your existing flex stacking */
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-left: auto;
    margin-right: 1rem;
    background: rgba(140, 172, 229, 0.1);
    border: 1px solid #4e80ee;
    border-radius: 4px;
}

/* wrap each offer in its own little flex-column so theyâ€™re independent */
.offers .bonus,
.offers .freespins {
    display: flex;
    flex-direction: column;
    align-items: center;

    /* pin label & extra text to top/bottom */
    justify-content: space-between;

    /* enforce a minimum height so adding extra <small> wonâ€™t throw things off */
    width: 100%;
}

/* your existing labels, but no need for display:block since weâ€™re spacing via flex */
.offers .bonus::before,
.offers .freespins::before {
    content: attr(data-label);
    font-size: 1.25rem;       /* â†‘ label bigger than amount */
    font-weight: bold;
    color: #4e80ee;
    margin-bottom: 0.25rem;   /* â†“ less gap to amount */
}

/* bump the amount up a touch */
.offers .amount {
    font-size: 1rem;          /* â†“ amount smaller than label */
    font-weight: bold;
    color: #ffffff;
    margin: 0;                /* remove any extra spacing */
}

/* â”€â”€ 9) Actions (buttons + disclaimer) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .5rem;
}

.btn-primary,
.btn-secondary {
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

/* Primary button with gradient */
.btn-primary {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: linear-gradient(45deg, #4e80ee, #8cace5);
    color: #ffffff;
    animation: earthquake 4s ease-in-out infinite;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #8cace5, #4e80ee);
}

/* Secondary button with dark bg and accent border */
.btn-secondary {
    width: 160px;
    padding: .75rem;
    font-size: .85rem;
    background: #212936;
    color: #8cace5;
    border: 1px solid #8cace5;
}

.btn-secondary:hover {
    transform: scale(1.05);
    background: #212936;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Disclaimer text */
.disclaimer {
    font-size: .75rem;
    color: #ffffff;              /* white disclaimer */
    margin-top: .5rem;
    text-align: center;
}

/* â”€â”€ 10) Earthquake shake (once every 4s) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes earthquake {
    0%   { transform: translate(0, 0) rotate(0deg); }
    2%   { transform: translate(-2px, 1px) rotate(-1deg); }
    4%   { transform: translate(-2px, -1px) rotate(1deg); }
    6%   { transform: translate(2px, 1px) rotate(0deg); }
    8%   { transform: translate(2px, -1px) rotate(1deg); }
    10%  { transform: translate(-2px, 1px) rotate(-1deg); }
    11%, 100% { transform: translate(0, 0) rotate(0deg); }
}

/* â”€â”€ 11) Mobile adaptation â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
    .casino-card {
        flex-direction: column;
    }

    .card-content {
        flex-direction: column;
        gap: 1rem;
    }
    .casino-info {
        align-items: center;
        text-align: center;
    }
    .offers {
        width: 80%;           /* make it span ~80% of the card width */
        margin: 0 auto 1rem;  /* center it and add some bottom spacing */
        max-width: none;      /* override any desktop max-width */
    }
    .actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }
    .btn-primary,
    .btn-secondary {
        width: 48%;
    }
    .disclaimer {
        order: 1;
        width: 100%;
        margin-top: .75rem;
    }
}
/* Section title */
.section-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #212936;
  text-align: center;
  margin: 2rem 0 1rem;
}

