:root {
  --color-background: #23302c;
  --color-header: #0d1110;
  --color-card: #1a2422;
  --color-primary: #51af95;
  --color-text: #ffffff;
  --color-text-secondary: #a0aec0;
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
}

header {
  background-color: var(--color-header);
  padding: 1rem 0; /* Adjust padding */
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  display: flex;
  justify-content: center;
  min-height: 80px;
  height: 80px; /*Forces a fixed height */
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-header);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  transition: 0.3s ease-in-out;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
}

.nav-links a:hover {
  color: #64d899;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: white;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  margin-right: 1rem;
}

.logo span {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
}
.logo a {
  text-decoration: none; /* Remove underline */
  color: inherit; /* Ensure the text color matches your design */
  display: flex;
  align-items: center;
}

/* Hero Section */
.hero {
  background: linear-gradient(
    to bottom,
    var(--color-header),
    var(--color-background)
  );
  padding: 3rem 1.5rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Strip */
.feature-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-strip span {
  font-size: 1rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background-color: rgba(26, 36, 34, 0.5);
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.feature-pill:hover {
  background-color: rgba(38, 58, 55, 0.9);
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0, 255, 160, 0.35);
}

.feature-pill .icon {
  filter: brightness(0) saturate(100%) invert(60%) sepia(64%) saturate(304%)
    hue-rotate(113deg) brightness(89%) contrast(86%);
  height: 24px;
  width: 24px;
}

/* Casino List */
.casino-list {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.casino-card {
  background-color: var(--color-card);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 2fr;
  gap: 1.25rem;
  align-items: start;
  position: relative; /* allows glow positioning */
  transition: all 0.3s ease;
}

/*Gold glow */
#casinos .casino-card:nth-of-type(1) {
  border: 2px solid rgba(255, 215, 0, 0.45); /* same gold hue, 45% opacity */
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
}

/*Silver glow */
#casinos .casino-card:nth-of-type(2) {
  border: 2px solid rgba(192, 192, 192, 0.35);
  box-shadow: 0 0 20px rgba(192, 192, 192, 0.15);
}

/*Bronze glow */
#casinos .casino-card:nth-of-type(3) {
  border: 2px solid rgba(205, 127, 50, 0.4);
  box-shadow: 0 0 20px rgba(205, 127, 50, 0.25);
}

.casino-card img {
  width: 160px;
  height: 100px;
  border-radius: 0.5rem;
  object-fit: cover;
}

.casino-info h3 {
  font-size: 1.5rem; /*size up the casino name*/
}

.bonus {
  color: var(--color-primary);
  font-weight: 600;
}

.features-list {
  display: flex;
  flex-direction: column;
  justify-content: center; /*centered in the container*/
  height: 100%;
}

.features-list ul {
  list-style: none; /* Removes default bullets */
  padding: 0; /* Removes padding */
}

.features-list ul li {
  position: relative; /* Enable positioning for the custom bullet */
  padding-left: 1.5rem; /* Add space for the custom bullet */
  text-align: left; /* Ensure text is left-aligned */
  line-height: 1.5; /* Adjust line height for readability */
}

.features-list li::before {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.25rem;
  position: absolute;
  left: 2px; /* Align to the left edge */
  top: 10px; /* Align to the first line */
  background-color: var(--color-primary);
  border-radius: 50%;
}

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: auto 0; /* Center the `.casino-actions` vertically */
}

.btn-primary,
.btn-secondary {
  display: inline-block; /* Makes the <a> act like a button */
  padding: 0.6rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  text-align: center; /* Centers text in the button */
  font-weight: 600;
  font-size: 0.9rem; /* Set explicit font size */
  text-decoration: none; /* Removes underline from <a> */
  cursor: pointer;
  transition: all 0.3s;
}

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

.btn-primary:hover {
  background-color: #418875;
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

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

/* Reviews */
.reviews {
  padding: 4rem 2rem;
  background-color: var(--color-card);
}

.reviews h2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem; /* Optional: Add padding for spacing */
  text-align: start; /* Align the heading to the center */
}

.review-card {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding: 2.5rem;
  background-color: var(--color-background);
  border-radius: 0.5rem;
}

.review-card p {
  margin-bottom: 1rem; /* Adjust as needed */
  line-height: 1.5; /* Optional: Improves readability */
}

.review-card h3 {
  font-size: 2rem;
  line-height: 3rem;
}

.review-card-figure {
  margin: 0 auto; /* Center the figure element within the parent */
  text-align: center; /* Centers the caption */
}

.review-card-image {
  width: 100%; /* Makes the image responsive to fit the card's width */
  height: auto; /* Maintains aspect ratio */
  border-radius: 0.5rem; /* Optional: Adds rounded corners */
  margin-bottom: 0.25rem; /* Spacing between the image and the heading */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* Optional: Adds a subtle shadow for a modern look */
}

.review-card-caption {
  margin-top: 0.25rem; /* Adds spacing between the image and caption */
  font-size: 0.9rem; /* Slightly smaller text for the caption */
  color: var(--color-text-secondary); /* Use a secondary text color (lighter) */
  font-style: italic; /* Optional: Makes the caption italic for emphasis */
}

.btn-signup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* Space between text and logo */
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem; /* Adjust the font size if needed */
  background-color: var(--color-primary);
  color: white;
  text-decoration: none; /* Remove underline */
  transition: all 0.3s;
  margin: 0 3rem 0 3rem;
}

.btn-signup:hover {
  background-color: #418875; /* Change hover color */
  gap: 1rem; /* Space between text and logo */
}

.btn-signup img {
  width: 16px; /* Adjust size of the logo */
  height: 16px;
  filter: invert(1) brightness(2); /* Makes PNG white */
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

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

.pros li::before {
  content: "✓";
  color: #10b981;
  margin-right: 0.5rem;
}

.cons li::before {
  content: "×";
  color: #ef4444;
  margin-right: 0.5rem;
}

.pros h4,
.cons h4 {
  position: relative; /* Necessary for ::after to position correctly */
  display: inline-block; /* Ensures the heading's width matches its text */
  padding-bottom: 0.25rem; /* Spacing between the text and the line */
  align-items: center;
  gap: 0.25rem;
}

.pros h4::after,
.cons h4::after {
  content: "";
  display: block;
  width: 150%; /* Line width relative to the text (adjust as needed) */
  height: 1px; /* Line thickness */
}

.pros h4::after {
  background-color: #10b981; /* Green line for Pros */
}

.cons h4::after {
  background-color: #ef4444; /* Red line for Cons */
}

.supported-chains {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: rgba(255, 165, 0, 0.1); /* Light orange background */
  border-left: 4px solid #ffa500; /* Orange border */
  color: #ffa500; /* Matches the orange theme */
  font-size: 1rem;
  border-radius: 0.5rem;
  line-height: 1.5;
  display: flex;
  align-items: center; /* Aligns icon and text vertically */
  gap: 0.5rem; /* Adds space between the icon and text */
}

.supported-chains-icon {
  width: 1.5rem; /* Adjust width to match design */
  height: 1.5rem; /* Maintain aspect ratio */
  filter: brightness(0) saturate(100%) invert(75%) sepia(70%) saturate(3618%)
    hue-rotate(360deg) brightness(103%) contrast(105%);
  /* Dynamic color filter to match the text color */
  flex-shrink: 0; /* Prevents the icon from resizing */
}

/* Sidebar Version */
.content-layout {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;

  /* Add these properties for alignment and width */
  max-width: 1200px; /* Ensures content doesn't exceed 1200px */
  margin: 0 auto; /* Centers the layout horizontally */
}

/* Sidebar styling */
.sidebar {
  flex: 0 0 350px; /* Fixed width for sidebar */
  position: sticky;
  top: 8rem; /* Sidebar sticks 8rem from the top */
  align-self: flex-start;
  border-left: 2px solid #ffa500; /* Orange border for sidebar */
  padding-left: 2rem;
  margin-top: 1rem;
}

.sidebar ul {
  list-style: none; /* Remove bullets */
  padding: 0;
}

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

.sidebar a {
  color: #ffa500; /* Orange text for links */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Hover effect */
.sidebar a:hover {
  color: #ffd700; /* Lighter orange/yellow on hover */
  font-weight: bold;
}

/* Active section highlight */
.sidebar a.active {
  color: #ffd700; /* Same as hover */
  font-weight: bold;
}

/* Main content styling */
.main-content {
  flex: 1; /* Remaining space is allocated to main content */
  max-width: 800px;
}

.main-content h2 {
  font-size: 1.75rem;
  color: #ffffff; /* White for headings */
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.main-content h3 {
  font-size: 1.25rem;
  color: #ffffff; /* White for subheadings */
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.main-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc; /* Light gray for body text */
  margin: 0.5rem 0 1rem 0; /* Small spacing above and below paragraphs */
}

/* General link styles */
.main-content a {
    color: #51af95; /* Modern green accent */
    text-decoration: none; /* No underline by default */
    font-weight: 600; /* Slightly bolder text */
    transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
}

/* Hover effect */
.main-content a:hover {
    color: #76c9b2; /* Slightly lighter green */
    text-decoration: underline; /* Underline on hover */
}

/* Outbound link icon (optional) */
.main-content a::after {
    content: ' ↗'; /* Small outbound link arrow */
    font-size: 0.85em;
    color: #51af95;
    transition: color 0.3s ease-in-out;
}

/* Make the arrow lighter on hover */
.main-content a:hover::after {
    color: #76c9b2;
}

.main-content h2.main-content-first {
  font-size: 1.75rem;
  color: #ffffff; /* White for the first main heading */
  margin-top: 0rem;
  margin-bottom: 1rem;
}

.green-bullets-list {
  list-style: none; /* Remove default bullets */
  margin: 0;
  padding: 0 1rem 0 2rem;
  font-size: 1.1rem;
}

.green-bullets-list li {
  position: relative; /* Enable pseudo-element positioning */
  margin-bottom: 0.75rem; /* Space between list items */
  line-height: 1.6;
}

.green-bullets-list li::before {
  content: "●"; /* Custom bullet point */
  color: #51af95; /* Green color */
  font-size: 0.5rem; /* Slightly larger bullet */
  position: absolute; /* Position bullet independently */
  left: -0.75rem; /* Adjust bullet positioning */
  top: 0.4rem; /* Align bullet with text */
}

.green-bullets-list li strong {
  color: #51af95;
}

.green-bullets-list a {
  text-decoration: none; /* Remove underline */
  color: inherit; /* Inherit color from the parent element */
  font-weight: inherit; /* Keep the font-weight from <strong> */
}

.green-bullets-list a:hover {
  text-decoration: underline; /* Optional: Add underline on hover for better UX */
}

.white-bullets-list {
  list-style: none; /* Remove default bullets */
  margin: 0;
  padding: 0 1rem 0 2rem;
}

.white-bullets-list li {
  position: relative; /* Enable pseudo-element positioning */
  margin-bottom: 0.75rem; /* Space between list items */
  line-height: 1.6;
}

.white-bullets-list li::before {
  content: "●"; /* Custom bullet point */
  color: white; /* Green color */
  font-size: 0.5rem; /* Slightly larger bullet */
  position: absolute; /* Position bullet independently */
  left: -0.75rem; /* Adjust bullet positioning */
  top: 0.4rem; /* Align bullet with text */
}

.white-bullets-list li strong {
  color: white;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--color-card);
  border-radius: 0.5rem;
  overflow: hidden;
}

.comparison-table thead tr {
  background-color: var(--color-header);
}

.comparison-table th,
.comparison-table td {
  text-align: left;
  padding: 1rem;
  color: var(--color-text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
  color: var(--color-text);
  font-weight: bold;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background-color: var(--color-background);
}

.step-by-step-guide {
  margin: 1rem auto;
  max-width: 800px;
  position: relative;
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.step-number {
  background-color: var(--color-primary);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.step-number::after {
  content: "";
  position: absolute;
  top: 50%; /* Aligns vertically to center */
  left: 50%; /* Centers horizontally */
  width: 2px; /* Line thickness */
  height: calc(300%); /* Extends line beyond the circle */
  background: repeating-linear-gradient(
    to bottom,
    var(--color-primary),
    var(--color-primary) 5px,
    transparent 3px,
    transparent 10px
  ); /* Dashed effect */
  transform: translateX(-50%) translateY(0);
  z-index: -1; /* Ensures the line goes behind the content */
}

.step:last-child .step-number::after {
  display: none; /* Removes the line for the last step */
}

.step-content h4 {
  color: var(--color-text);
  font-size: 1.2rem;
  margin-bottom: -0.35rem;
}

.step-title {
  display: block;
  font-size: 1.2em;
  font-weight: 600; /* Medium boldness */
  text-transform: uppercase; /* Makes titles stand out */
  margin-bottom: -0.25rem;
}

.step-content p {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.5;
}

.best-sites h2 {
  color: #fff;
  margin-bottom: 10px;
}

/* Sportsbook item container */
.sportsbook-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding: 10px 15px;
  position: relative;
}

/* The left vertical border */
.sportsbook-item::before {
  content: "";
  position: absolute;
  left: 110px; /* Adjust based on icon width */
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--color-primary);
}

/* Logo container */
.sportsbook-icon-container {
  width: 80px; /* Logo container width */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo styling */
.sportsbook-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(60%) sepia(64%) saturate(304%)
    hue-rotate(113deg) brightness(89%) contrast(86%);
}

/* Content on the right */
.sportsbook-content {
  flex: 1;
  padding-left: 30px; /* Space after border */
}

/* Category title */
.sportsbook-item .category {
  font-weight: bold;
  color: var(--color-primary);
}

/* Sportsbook name */
.sportsbook-item .sportsbook-name {
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.sportsbook-item .sportsbook-name:hover {
  text-decoration: underline;
}

/* General Info Box */
.info-box {
    background: var(--color-card); /* Dark background for contrast */
    border-left: 4px solid var(--color-primary); /* Accent color */
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.info-box h4 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.info-box p {
    color: #ddd;
    margin: 5px 0;
}

/* Example Box inside Info Box */
.example-box {
    background: rgba(255, 255, 255, 0.05); /* Slightly lighter for depth */
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
}

.highlight {
    color: var(--color-primary); /* Green accent for clarity */
    font-weight: bold;
}

.math {
    font-family: monospace;
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 6px;
    border-radius: 4px;
}

/* FAQ */
.faq {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  margin-top: 1rem;
}

details {
  background-color: var(--color-card);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::after {
  content: "▼";
  font-size: 0.8em;
  color: var(--color-primary);
}

details[open] summary::after {
  content: "▲";
}

details p {
  margin-top: 1rem;
  color: var(--color-text-secondary);
}

.numbered-list-faq {
  list-style-type: decimal;
  padding-left: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.numbered-list-faq li {
  margin-bottom: 5px;
}

.list-faq {
  list-style-type: disc;
  padding-left: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.list-faq li {
  margin-bottom: 5px;
}

.disclaimer {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* About Us - Page */
.about-us {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.about-us p {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.6; /* Standard for readability */
  margin-bottom: 0.8rem; /* Optional: add spacing between paragraphs */
}

.custom-list {
  list-style: none; /* Remove default bullets */
  padding: 0 1rem 0 1rem;
  margin: 0;
}

.custom-list .list-item {
  display: flex;
  align-items: center; /* Center align the icon with the text block */
  gap: 0.75rem; /* Space between icon and text */
  margin-bottom: 1rem; /* Space between list items */
}

.custom-list .list-icon {
  width: 24px; /* Adjust to fit your design */
  height: 24px; /* Match width */
  object-fit: contain; /* Maintain aspect ratio */
  filter: brightness(0) saturate(100%) invert(75%) sepia(70%) saturate(3618%)
    hue-rotate(360deg) brightness(103%) contrast(105%);
}

.custom-list .list-content {
  display: flex;
  flex-direction: column; /* Stack strong and span vertically */
}

.custom-list .list-content strong {
  font-size: 1.1rem;
  margin-bottom: 0.1rem;
}

.custom-list .list-content span {
  font-size: 0.9rem;
  color: var(--color-text-secondary); /* Light gray text for the description */
}

/* General container styles */
.trust-section, .disclaimer-section, .author-bio {
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 10px;
}

/* Trust Section */
.trust-container {
    background: linear-gradient(135deg, #222, #111);
    color: white;
    padding: 2.5rem 3.5rem;
    border-radius: 10px;
}

.trust-content h3 {
    font-size: 1.8rem;
    margin-bottom: 2px;
}

.trust-content p {
    font-size: 1rem;
    color: #ccc;
}

.highlight {
    color: var(--color-primary);
    font-weight: bold;
}

.trust-stats {
    display: flex;
    flex-wrap: wrap; /* Allows stats to move to a new row on small screens */
    justify-content: space-between; /* Evenly space the elements */
    margin-top: 2rem;
    gap: 1.5rem; /* Add spacing between stat items */
    min-width: 120px; /* Prevents items from getting too small */
}

.stat-item {
    display: flex;
    flex-direction: column; /* Stack the feature and details */
    text-align: left; /* Center align text */
}

.trust-feature {
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 0.1rem; /* Adds space between feature and details */
}

.trust-feature-details {
    font-size: 1rem;
    color: #ccc;
    font-weight: normal;
}

/* Read More Button */
.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--color-primary);
    font-weight: bold;
    text-decoration: none;
}

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

/* Disclaimer Box Styling */
.disclaimer-box {
    display: flex;
    align-items: center;
    background: var(--color-card);
    border-left: 4px solid var(--color-primary);
    padding: 1rem;
    border-radius: 8px;
    max-width: 100%; /* Ensure it doesn't shrink */
width: 100%; /* Stretch it to full width */
}

/* Text Content inside the Disclaimer */
.disclaimer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Disclaimer Title */
.disclaimer-content span {
    font-size: 1.05rem;
    color: var(--color-primary);
    font-weight: bold;
    margin-bottom: 5px;
}

/* Disclaimer Text */
.disclaimer-content p {
    color: #ddd;
    font-size: 0.8rem;
}

/* Author Bio */
.author-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #222, #111);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
}

.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
}

.author-info h3 {
    font-size: 1.5rem;
}

.author-role {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: bold;
}

.team-member {
  display: flex; /* Creates a horizontal layout */
  align-items: center; /* Vertically aligns content */
  gap: 1rem; /* Adds spacing between the image and text */
  margin: 1rem 0;
}

.team-member img {
  width: 100px; /* Adjust size as needed */
  height: 100px; /* Maintain square dimensions */
  border-radius: 50%; /* Makes the image circular */
  object-fit: cover; /* Ensures the image fits perfectly */
}

.team-info {
  display: flex;
  flex-direction: column; /* Stacks name and description vertically */
}

.team-info strong {
  font-size: 1.25rem; /* Adjust for name size */
  margin-bottom: 0.25rem; /* Space between name and description */
}

.team-info p {
  font-size: 0.9rem; /* Adjust font size for description */
  line-height: 1.5; /* Improves readability */
  margin-right: 2rem;
}

.disclaimer-section {
  display: flex;
  align-items: center; /* Vertically align the icon with the text */
  gap: 1.25rem; /* Add space between the icon and the text */
}

.disclaimer-icon {
  filter: brightness(0) saturate(100%) invert(60%) sepia(64%) saturate(304%)
    hue-rotate(113deg) brightness(89%) contrast(86%);
  width: 32px; /* Adjust size */
  height: 32px;
  margin-right: 15px; /* Spacing between icon and text */
  flex-shrink: 0; /* Prevent icon from shrinking */
}

.disclaimer-content h2 {
  margin: 0;
  font-size: 1.5rem;
}

.disclaimer-content p {
  margin: 0;
  line-height: 1.6;
}

.site-footer {
  text-align: center;
  background-color: black; /* Dark background */
  color: #fff; /* White text */
  padding: 1rem 0;
  font-size: 0.9rem;
}

.social-icons img {
  background-color: white;
  padding: 5px;
  margin-top: px;
  height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-header);
    text-align: center;
    padding: 1rem;
  }

  .nav-links.active {
    display: flex;
    max-height: 500px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
  }

  /* Hamburger animation */
  .menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .casino-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .casino-card img {
    margin: 0 auto;
    width: 140px;
height: auto;
  }

  .casino-info h3 {
  font-size: 0.5rem;
}

  .bonus {
  font-size: 1rem;
}

  .casino-actions {
    margin-top: 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn-primary {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
  }

  .btn-secondary {
    font-size: 0.8rem;
    opacity: 0.7;
  }


  .hero h1 {
    font-size: 2rem;
  }
  .sidebar {
    display: none; /* Hides the sidebar */
  }

  .main-content {
    flex: 1; /* Main content takes the full width */
    max-width: 100%; /* Ensures main content spans the container width */
  }

  .trust-section, .disclaimer-section, .author-bio {
      margin: 2rem 1rem; /* Adds space on left and right */
    }
}

/* Media query for screens below 340px */
@media (max-width: 340px) {
  header nav .logo span {
    display: none; /* Hide the span text */
  }

  header nav .logo img {
    margin-right: 0; /* Remove spacing if text is hidden */
  }
}
