/* Global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and Layout */
body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  background: linear-gradient(to bottom, #2a2a2a, #1e1e1e);
  color: #eee;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Limit text width on large screens */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}

/* Header styles */
.site-header {
  background: linear-gradient(to right, #1c1c1c, #2a2a2a);
  color: #f2f2f2;
  padding: 1rem 0;
  text-align: center;
}

.site-header nav ul {
  list-style: none;
}

.site-header nav ul li {
  display: inline-block;
  margin: 0 1rem;
}

.site-header nav ul li a {
  color: #f2f2f2;
  text-decoration: none;
  font-weight: bold;
}

.site-header nav ul li a:hover {
  color: #d4af37; /* Gold hover */
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(to bottom, #1c1c1c, #2a2a2a);
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #d4af37;
}

.hero-section img {
  width: 35%;
  height: auto;
  border: 3px solid #444;
  border-radius: 5px;
  max-width: 100%;
}

/* Section layout */
.review-section {
  background: #2f2f2f;
  border-radius: 5px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.review-section h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #d4af37;
}

.review-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Modern Table Styling */
.review-section table {
  width: 100%;
  margin-bottom: 1.5rem;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 5px;
  overflow: hidden; /* Keep rounded corners on all sides */
  background-color: #262626;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* Table header row */
.review-section table thead {
  background: linear-gradient(to right, #3b3b3b, #444);
}

.review-section table thead th {
  color: #d4af37;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}

/* Table body rows */
.review-section table tbody tr {
  transition: background 0.3s ease;
}

/* Subtle zebra striping */
.review-section table tbody tr:nth-of-type(even) {
  background: #2c2c2c;
}

/* Hover effect on rows */
.review-section table tbody tr:hover {
  background: #333333;
}

/* Table cells */
.review-section table td {
  text-align: center;
  padding: 1rem;
  border-bottom: 1px solid #333;
}

/* Remove bottom border on last row cells for a clean finish */
.review-section table tbody tr:last-child td {
  border-bottom: none;
}

/* Pros and Cons blocks */
.pros-cons {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Individual "card"-like styling */
.pros,
.cons {
  flex: 1;
  background: #3b3b3b;
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  position: relative;
  min-width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Gold accent bar along the top */
.pros:before,
.cons:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #d4af37;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* Hover lift effect */
.pros:hover,
.cons:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.pros h3,
.cons h3 {
  margin-bottom: 0.75rem;
  color: #d4af37;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.pros ul,
.cons ul {
  margin-left: 1.5rem;
  list-style: none;
  padding: 0;
}

.pros ul li,
.cons ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
}

/* Custom icons for bullet points */
.pros ul li::before {
  content: "✓";
  color: #d4af37;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cons ul li::before {
  content: "✕";
  color: #d4af37;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Custom bullet list */
.custom-bullet-list {
  list-style: none; 
  margin: 1rem 0;
  padding: 0;
}

.custom-bullet-list li {
  margin: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.custom-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.75em;
  height: 0.75em;
  border-radius: 50%;
  background: linear-gradient(to bottom, #d4af37, #b69830);
}

/* Custom numbered list */
.custom-ordered-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  counter-reset: custom-counter;
}

.custom-ordered-list li {
  margin: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
  counter-increment: custom-counter;
}

.custom-ordered-list li::before {
  content: counter(custom-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4af37;
  font-weight: bold;
  width: 1.5rem;
  display: inline-block;
  text-align: center;
}

/* Image styling in section content */
.review-section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem 0;
  border: 2px solid #444;
  border-radius: 5px;
}

/* Footer styles */
/* Footer container */
.site-footer {
  background: linear-gradient(to right, #1c1c1c, #2a2a2a);
  color: #f2f2f2;
  padding: 1rem 0;
  /* Use flex so it’s easy to rearrange content responsively */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; /* Ensures text is centered on all screen sizes */
}

/* Logos container: wraps logos in a flexible row that can wrap on narrow screens */
.footer-logos {
  display: flex;
  flex-wrap: wrap;    /* Allows logos to drop to the next line if necessary */
  gap: 1rem;         /* Spacing between logos */
  margin-bottom: 1rem;
  justify-content: center;
}

/* Logo images */
.footer-logos a img {
  width: 80px;
  margin: 0 10px;
  transition: transform 0.3s ease;  /* Adds a smooth hover zoom (optional) */
}

/* Hover effect for logos (optional) */
.footer-logos a:hover img {
  transform: scale(1.1);  /* Slight zoom on hover */
  filter: brightness(1.2);
}

/* Paragraph styling in footer */
.site-footer p {
  margin: 0.5rem 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
  .footer-logos a img {
    width: 60px;
  }
  .site-footer {
    /* Extra top & bottom padding for smaller viewports if desired */
    padding: 1.5rem 2rem;
  }
}


/* Responsive design: no horizontal scroll */
@media (max-width: 768px) {
  .pros-cons {
    flex-direction: column;
  }

  .site-header nav ul li {
    display: block;
    margin: 0.5rem 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section img {
    width: 80%; /* On small screens, let the image be larger relative to screen width */
  }

  main {
    padding: 1rem;
  }
}



/* FAQ Styles */
.faq-section {
  background: #2f2f2f;
  border-radius: 5px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.faq-section h2 {
  color: #d4af37;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #3b3b3b;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

/* Decorative top bar on each FAQ item */
.faq-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #d4af37;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.faq-question {
  color: #d4af37;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.faq-answer {
  line-height: 1.6;
  color: #eee;
}

  /* 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: #d4af37;
  text-align: center;
  margin: 2rem 0 1rem;
}

