/* ===============================
   GLOBAL RESET & BASE STYLE
================================= */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

h1, h2, h3, h4, h5 { font-family: "Inter", sans-serif; }
p, li { color: #E2E8F0; line-height: 1.7; }

.card {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* ===============================
   CARD SECTIONS (Calculate, How We Pick, Mission, Responsible Gaming)
================================= */
.calculate, .how_we_pick, .mission, .responsible_gaming, .about-team, .faq {
    background: #ffffff;
    border: 1px solid #f2ead0;
    border-radius: 12px;
    padding: 40px 44px;
    margin: 40px auto;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

/* Titles */
.calculate h2, .how_we_pick h2, .mission h2, .responsible_gaming h2, .about-team h2, .faq h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e1e1e;
    text-align: center;
}

/* Accent lines under titles */
.mission h2::after,
.how_we_pick h2::after,
.about-team h2::after,
.faq h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, #f59e0b, #facc15);
    border-radius: 2px;
}

/* Specific sections */
.calculate ul,
.how_we_pick ul,
.mission ul,
.responsible_gaming ul {
    list-style: none;
    padding: 0;
}

.calculate li::before { color: #facc15; }
.how_we_pick li::before { color: #fbbf24; }
.mission li::before { content: "⭐"; color: #fbbf24; }
.responsible_gaming li::before { color: #10b981; }


body {
    background-color: #0F172A;
    color: #1e1e1e;
    line-height: 1.7;
}

/* ===============================
   HEADER
================================= */
header {
    background: linear-gradient(90deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 120px;
    box-shadow: 0 3px 12px rgba(251, 191, 36, 0.15); /* subtle gold glow */
}
header li {
  text-transform: capitalize;
}

/* Hide mobile nav by default */
.mobile-nav {
  display: none;
  background: #0F172A;
  border-top: 1px solid #334155;
  padding: 20px;
}

.menu {
    display: none;
}

/* Logo & title alignment */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-wrap img {
  height: 160px;
  width: auto;
  object-fit: contain;
}

header h1 {
    color: #FBBF24;
    font-size: 1.6rem;
    font-weight: 600;
    text-indent: -9999px;
}

header ul {
    list-style: none;
}

header li {
    display: inline-block;
    margin-left: 40px;
}

header a {
    color: #F9FAFB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

header a:hover {
    color: #FBBF24;
}

  /* Submenu initial state: hidden */
  .submenu {
    position:absolute;
    top:100%;
    left:0;
    min-width:210px;
    background:#1E293B;
    color:#1e1e1e;
    border-radius:8px;
    box-shadow:0 8px 24px rgba(0, 0, 0, 0.15);
    padding:8px 0;
    transform-origin:top left;
    transform:translateY(-6px) scaleY(.98);
    opacity:0;
    pointer-events:none;
    transition:opacity .18s ease, transform .18s ease;
    z-index:50;
  }
  .submenu a {
    display:block;
    padding:10px 14px 10px 0;
    color:inherit;
    text-decoration: none;
  }
  .submenu a:hover,
  .submenu a:focus { background:#334155; }

    /* Show submenu on hover (desktop) */

    .has-sub {
        position: relative; /* needed so submenu positions relative to this item */
    }
  
    .has-sub:hover > .submenu,
    .has-sub:focus-within > .submenu {
        top: 100%;
        left: 0;
        opacity:1;
        transform:translateY(0) scaleY(1);
        pointer-events:auto;
    }

  /* Arrow indicator */
  .caret { margin-left:6px; font-size:.8em; opacity:.9; }



/* ===============================
   INTRO SECTION
================================= */
.intro {
    background-color: #0F172A;
    padding: 160px 10% 100px;
    color: #1a1a1a;
}

.intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #FBBF24;
}

.intro p {
    font-size: 1.1rem;
    color: #CBD5E1;
    line-height: 1.8;
}

/* ===============================
   TOP 3 CASINOS
================================= */
.top3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    background-color: #1E293B;
    padding: 80px 10%;
    border-top: 1px solid #334155;
}

.top3 img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 3px solid #FBBF24;
}

.top3 h2 {
    width: 100%;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #FBBF24;
    margin-bottom: 40px;
    position: relative;
}

.top3 h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FDE68A; /* a calm blue accent line */
    margin: 12px auto 0;
    border-radius: 2px;
}
.top3-subtitle {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    color: #CBD5E1;
    margin-top: -20px;
    margin-bottom: 50px;
    line-height: 1.6em;
}

.top3 div {
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 40px;
    width: 280px;
    text-align: center;
    background: linear-gradient(145deg, #162A45 0%, #1B3354 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.top3 div:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    background: linear-gradient(145deg, #1B3354 0%, #223B60 100%);
}

.top3 h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #FBBF24;
    margin-top: 0;
    letter-spacing: 0.3px;
}

.top3 h4 {
    font-size: 0.9rem;
    margin-top: 10px;
    margin-bottom: 0;
  background: linear-gradient(120deg, #FFD700 0%, #FFE066 15%, #FFC300 25%, #FF69B4 40%, #9ACDFF 55%, #E6E6FA 65%, #D4AF37 75%, #FFF8DC 85%, #FFD700 100%);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: goldFlow 3s linear infinite;
}

@keyframes goldFlow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.top3 p {
  color: #E2E8F0;          /* soft slate-gray-blue for readability */
  font-weight: 500;
}

.top3 a {
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  border-radius: 16px;
}

.top3 a div {
  background: #0F172A;
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 40px;
  width: 280px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* Hover effect with gold glow */
.top3 a:hover div {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.25);
  background: #162A45;
}

/* Optional text glow for h4 */
.top3 a:hover h4 {
  color: #FACC15;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}



/* ===============================
   TOP 10 CASINO LIST
================================= */
.toplist {
    background: #0F172A;
    padding: 50px 50px 20px 10%;
}

.toplist h2 {
    font-size: 3rem;
    color: #FBBF24;
}

.cas1 {
  display: grid;
  grid-template-columns: 2fr 3fr 3.6fr 1.4fr;
  align-items: center;
  justify-content: space-between;
  background: #1E293B;
  padding: 32px 60px;
  margin: 40px 10%;
  border: 1px solid #334155;
  border-radius: 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cas1:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.brand h3 {
  font-size: 1.4rem;
  color: #FBBF24;
  font-weight: 700;
  margin: 0;
}

.cas1 h4 {
  font-size: 1.1rem;
  color: #38BDF8;
  font-weight: 600;
  margin: 0;
}

.bonus h3 {
  font-size: 1.4rem;
  color: #FBBF24;
  font-weight: 700;
  margin: 0;
}

.bonus-details ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bonus-details li {
  font-size: 0.96rem;
  color: #374151;
  line-height: 1.7;
  padding: 2px 0;
}

.bonus-details strong {
  color: #111827;
  font-weight: 600;
  margin-right: 4px;
}

.cas1 a {
  display: inline-block;
  font-size: 0.95rem;
  color: #0F172A;
  text-decoration: none;
  background: #f8fafc;
  background-color: #FBBF24; /* gold yellow for dark contrast */
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  transition: all 0.15s ease;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

.cas1 a:hover {
  background-color: #FDE68A; /* lighter golden hover */
  color: #1e293b;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.5);
}


.brand img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 3px solid #FBBF24;
}

/* Default (for screens wider than 800px) */
.details ul {
  list-style: none; /* removes the "*" bullets */
  padding: 0;
  margin: 0 100px 0 0;
}

.details li {
  border: 1px solid #334155;   /* same width border for each item */
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #E2E8F0;
  background: #0F172A;
  line-height: 1.6;
}

.details li strong {
  color: #FBBF24; /* highlight label */
  font-weight: 600;
}

.details li:last-child {
  margin-bottom: 0;
}

/* Hover interaction */
.details li:hover {
  background: linear-gradient(135deg, rgba(251,191,36,0.1), rgba(56,189,248,0.1));
  border-color: #FBBF24;
  box-shadow: 0 3px 12px rgba(251, 191, 36, 0.25);
  transform: translateX(3px);
}

.details li:last-child {
  margin-bottom: 0;
}

/* ===============================
   COMPARISON TABLE
================================= */
.difference {
    padding: 80px 10%;
    background: #1E293B;
    border: 1px solid #334155;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.difference h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #FBBF24;
}

.difference h3 {
    font-size: 1.4rem;
    margin-top: 40px;
    color: #E2E8F0;
}

.difference p {
    margin-top: 15px;
    font-size: 1rem;
    color: #CBD5E1; /* soft slate-white for best readability */
}

.difference table {
    width: 100%;
    margin: 40px auto;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #334155;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    background-color: #0F172A;
}

.difference th {
    background-color: #FBBF24;
    color: #0F172A;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
}

.difference td {
    color: #F1F5F9;
    padding: 14px 20px;
    text-align: center;
    font-size: 1rem;
    border-bottom: 1px solid #334155;
    transition: background-color 0.25s ease;
}

.difference tr:nth-child(odd) td {
    background-color: #1A2E4A;
}

.difference tr:nth-child(even) td {
    background-color: #162A45;
}

.difference tr:hover td {
    background-color: #1D3557;
}

.calculate {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 28px 36px;
  margin: 40px auto;
  max-width: 850px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.calculate h2 {
  font-size: 1.8rem;
  color: #FBBF24;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

.calculate p {
  margin: 12px 0;
  line-height: 1.7;
  color: #E2E8F0;
  font-size: 1rem;
}

.calculate strong {
  color: #FDE68A;
}

.calculate ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 20px 0;
  background: #0F172A;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.calculate li {
  margin-bottom: 6px;
  padding-left: 20px;
  position: relative;
  color: #F1F5F9;
  font-size: 0.97rem;
}

/* Add custom bullet icon */
.calculate li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Highlighted text boxes for examples */
.calculate p strong {
  background: #1E3A8A;
  color: #E0F2FE;
  padding: 2px 6px;
  border-radius: 4px;
}

.how_we_pick {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 32px 36px;
  margin: 40px auto;
  max-width: 850px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.how_we_pick h2 {
  font-size: 1.8rem;
  color: #FBBF24;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

.how_we_pick ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.how_we_pick li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  font-size: 1rem;
  color: #E2E8F0;
  line-height: 1.6;
}

/* Custom icon instead of "*" */
.how_we_pick li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  color: #FDE68A; /* gold tone */
  font-size: 1.1rem;
}

/* Optional hover polish */
.how_we_pick li:hover {
  color: #FBBF24;
  transform: translateX(2px);
  transition: all 0.15s ease;
}



.mission {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 40px 36px;
  margin: 40px auto;
  max-width: 850px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.mission h2 {
  font-size: 1.8rem;
  color: #FBBF24;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

.mission h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #FDE68A; /* gold accent */
  margin: 10px auto 0;
  border-radius: 2px;
}

.mission p {
  font-size: 1rem;
  line-height: 1.7;
  color: #E2E8F0;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.mission ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 500px;
  text-align: left;
}

.mission li {
  background: #162A45;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 12px;
  color: #F1F5F9;
  font-size: 0.98rem;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Icon before each point */
.mission li::before {
  content: "🎯";
  position: absolute;
  left: -32px;
  top: 9px;
  font-size: 1.2rem;
}

.mission li:hover {
  transform: translateX(4px);
  box-shadow: 0 3px 10px rgba(251, 191, 36, 0.3);
}

.responsible_gaming {
  background: #1E293B;
  border: 1px solid #334155;
  border-left: 6px solid #10b981; /* calming green accent */
  border-radius: 10px;
  padding: 36px 40px;
  margin: 40px auto;
  max-width: 850px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.responsible_gaming h2 {
  font-size: 1.8rem;
  color: #FBBF24;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}

.responsible_gaming p {
  font-size: 1rem;
  color: #E2E8F0;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 20px;
}

.responsible_gaming ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  text-align: left;
}

.responsible_gaming li {
  background: #0F172A;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 12px;
  font-size: 0.98rem;
  color: #F1F5F9;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* custom icon before each point */
.responsible_gaming li::before {
  content: "✓";
  position: absolute;
  left: -28px;
  top: 10px;
  color: #10b981;
  font-weight: bold;
}

/* subtle hover feedback */
.responsible_gaming li:hover {
  transform: translateX(3px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* link styling */
.responsible_gaming a {
  color: #38BDF8;
  text-decoration: none;
  font-weight: 500;
}

.responsible_gaming a:hover {
    color: #FDE68A;
  text-decoration: none;
}

/* ===== Who We Are (About Team) ===== */
.about-team {
  background: #1E293B;
  border: 1px solid #334155;          /* subtle frame */
  border-radius: 12px;
  padding: 40px 44px;
  margin: 48px auto;
  max-width: 900px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.about-team h2 {
  font-size: 1.9rem;
  line-height: 1.2;
  color: #FBBF24;                     /* deep slate */
  font-weight: 750;
  text-align: center;
  margin: 0 0 18px;
  letter-spacing: 0.2px;
  position: relative;
}

.about-team h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #F59E0B, #FBBF24); /* gold accent bar */
  border-radius: 2px;
}

.about-team p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #E2E8F0;                     /* readable slate */
  margin: 14px 0;
}

.about-team strong {
  color: #FDE68A;
  font-weight: 700;
}

/* Optional: emphasize the second paragraph as a trust note */
.about-team p:nth-of-type(2) {
  background: #162A45;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 16px;
}

/* Links inside the section */
.about-team a {
  color: #38BDF8;
  text-decoration: none;
  border-bottom: 1px dashed rgba(56,189,248,0.4);
}

.about-team a:hover {
  color: #FDE68A;
  border-bottom-color: transparent;
}

/* Improve <br> spacing in tight paragraphs */
.about-team br {
  content: "";
  display: block;
  margin: 6px 0;
}

/* ===============================
   GENERIC SECTIONS
================================= */
section {
    padding: 80px 10%;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1e293b;
}

section p, section li {
    font-size: 1rem;
    color: #374151;
}

/* ===============================
   TEAM / EXPERT
================================= */
.meet_the_team {
  background-color: #0F172A;
  border-top: 2px solid #334155;
  padding: 80px 10%;
  text-align: center;
}

.meet_the_team h3 {
  font-size: 1.8rem;
  color: #FBBF24;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
}

.meet_the_team h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #facc15);
  margin: 10px auto 0;
  border-radius: 2px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
  margin-top: 40px;
}

.team-member {
  background: #1E293B;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  max-width: 320px;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.team-member img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 3px solid #FBBF24;
}

.team-member h4 {
  font-size: 1.1rem;
  color: #FBBF24;
  font-weight: 600;
  margin-bottom: 8px;
}

.team-member p {
  font-size: 0.96rem;
  color: #E2E8F0;
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

.faq {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 50px 40px;
  margin: 60px auto;
  max-width: 900px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
}

.faq h2 {
  text-align: center;
  font-size: 1.9rem;
  color: #FBBF24;
  font-weight: 750;
  margin-bottom: 40px;
  position: relative;
}

.faq h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #facc15);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* FAQ details styling */
.faq details {
  background: #0F172A;
  border: 1px solid #334155;
  border-radius: 10px;
  margin-bottom: 16px;
  padding: 18px 22px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: all 0.25s ease;
}

.faq details:hover {
  border-color: #FBBF24;
  background: #162A45;
}

.faq details[open] {
  background: #162A45;
  border-color: #FBBF24;
  box-shadow: 0 4px 12px rgba(251,191,36,0.25);
}

/* Summary (question) */
.faq summary {
  color: #FBBF24;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

/* Arrow toggle */
.faq summary::after {
  content: "▼";
  position: absolute;
  right: 0;
  transition: transform 0.3s ease;
}

.faq details[open] summary::after {
  transform: rotate(180deg);
}

/* Answer text */
.faq p {
  color: #E2E8F0;
  margin-top: 10px;
  line-height: 1.6em;
  animation: fadeInSmooth 0.3s ease-in;
}

/* Fade-in animation */
@keyframes fadeInSmooth {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}

footer {
  background: #0B1320;
  color: #94A3B8;
  text-align: center;
  padding: 40px 10px;
  border-top: 1px solid #334155;
  font-size: 0.9rem;
}
footer a {
  color: #FBBF24;
}
footer a:hover {
  text-decoration: underline;
  color: #FDE68A;
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

/* --- Large Desktop (1280px and below) --- */
@media (max-width: 1280px) {
  .cas1 {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 26px 30px;
    margin: 28px 8%;
    border-radius: 18px;
    gap: 20px;
    background: linear-gradient(145deg, #0F172A 0%, #1E293B 100%);
    border: 1px solid #334155;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.25);
  }

  .cas1 a {
  color: #0F172A;
  background-color: #FBBF24;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(251, 191, 36, 0.4);
}

.cas1 a:hover {
  background-color: #FACC15;
  box-shadow: 0 6px 16px rgba(251, 191, 36, 0.5);
  transform: translateY(-3px);
}
  /* Add space between brand, details, and CTA */
  .brand {
    margin-bottom: 0;
  }

  .bonus {
    margin-bottom: 8px;
  }

  .details {
    text-align: left;                 /* left-align text inside details */
    margin-bottom: 12px;
    max-width: none;
  }

  .cta {
    margin-top: 10px;
  }

  /* Clean list style */
  .details ul {
    list-style: none;                 /* remove the "*" bullets */
    padding: 0;
    margin: 0;
  }

  /* Each detail line neatly boxed */
  .details li {
    border: 1px solid rgba(59, 130, 246, 0.25); /* soft blue accent border */
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #E2E8F0;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    max-width: 100%;
  }

  .details li strong {
  color: #FBBF24; /* highlight label */
  font-weight: 600;
}

  /* Optional subtle hover for mobile/touch */
  .details li:hover {
    background: rgba(251, 191, 36, 0.08); /* faint golden glow */
    border-color: #FBBF24;
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.2);
  }

  /* Slight spacing consistency */
  .details li:last-child {
    margin-bottom: 0;
  }
}

/* --- Laptop / Tablet Landscape (1024px and below) --- */
@media (max-width: 1024px) {
  header {
    padding: 0 60px;
  }
  .has-sub {
    display: none;
  }
  .menu {
    display: block;
    background: transparent;
    color: #FBBF24; /* gold tone for contrast */
    font-size: 32px;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 30px;
  }

    nav.nav {
    margin-right: 70px; /* pushes links left so they don't touch the menu */
  }

.submenu {
  display: none;
}

.submenu.open {
  display: block;
}

  .top3, .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .mobile-nav {
    display: none; /* hidden by default */
    flex-direction: column;
    gap: 10px; 
    background: #1E293B;
    border-top: 1px solid #334155;
    position: absolute;
    top: 80px;
    right: 0;
    width: 60%;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 99;
  }

    .mobile-nav.open {
  display: block;
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav a {
  display: block;
  padding: 10px 22px;
  color: #E2E8F0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.mobile-nav a:hover {
  background: #0F172A;
  color: #FBBF24;
}

.mobile-nav summary {
  cursor: pointer;
  padding: 14px 18px;
  font-size: 1rem;
  font-weight: 600;
  color: #FBBF24;
  position: relative;
}

  .mobile-nav details {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  width: 100%;
}

/* restore native details toggle behavior */
.mobile-nav details > ul {
  display: none;
}

.home {
  display: flex;
  flex-direction: column;
  left: 18px;
}

.mobile-nav details[open] > ul {
  display: flex;
  flex-direction: column;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav ul:first-of-type {
  background: transparent;
  padding-bottom: 12px;
}

.mobile-nav ul:first-of-type li a {
  display: block;
  padding: 12px 20px;
  color: #E2E8F0;
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid #334155;
}

.mobile-nav ul:first-of-type li a:hover {
  background: #0F172A;
  color: #FBBF24;
}
}

/* --- Tablet Portrait (768px and below) --- */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.4rem;
  }
  .intro h2 {
    font-size: 2rem;
  }
  .about-team,
  .faq,
  .mission,
  .how_we_pick,
  .calculate,
  .responsible_gaming {
    padding: 30px 22px;
    margin: 30px 16px;
  }
  .about-team h2,
  .faq h2,
  .mission h2 {
    font-size: 1.6rem;
  }
}

/* --- Mobile (600px and below) --- */
@media (max-width: 600px) {
  .team-member img {
    width: 100px;
    height: 100px;
  }

  .faq-item h3 {
    font-size: 1rem;
  }
  .faq-item p {
    font-size: 0.93rem;
  }

  .details li {
    font-size: 0.9rem;
  }

  .cta a {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/* --- Small Mobile (420px and below, optional) --- */
@media (max-width: 420px) {
  .intro h2 {
    font-size: 1.5rem;
  }
  header h1 {
    font-size: 1.2rem;
  }
  .cas1 {
    padding: 18px 20px;
  }
}