:root {
  --bg-a:#0c122c;
  --bg-b:#0c2a24;
  --card:#0f1835;
  --card-2:#111b3f;
  --text:#eaf0ff;
  --muted:#b9c7e6;
  --accent:#D4AF37;
  --ring:rgba(212,175,55,.35);
  --radius:18px;
  --shadow: 0 14px 40px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at -10% -10%, rgba(13,59,46,.35), transparent 60%),
    radial-gradient(900px 600px at 110% -10%, rgba(18,30,86,.45), transparent 65%),
    linear-gradient(180deg, var(--bg-a), var(--bg-b));
  background-attachment: fixed;
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

footer {
  margin-top: auto;  
}

.container{width:min(1160px,92vw); margin: auto;}

.no-select {
  user-select: none;
}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(15,23,55,.9), rgba(15,23,55,.7));
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none; padding: 16px; color:var(--text)}
.brand img{height:42px}
.brand .name{font-weight:900; letter-spacing:.2px; font-size: 33px;}
.brand .tld{color:var(--accent)}

.links a{color:#cfe3ff; text-decoration:none; margin-left:18px; font-weight:700; font-size:15px}
.links a:hover{color:#fff}
.cta{background:var(--accent); color:#0b0b11; padding:12px 16px; border-radius:999px; text-decoration:none; font-weight:900; box-shadow:0 10px 24px var(--ring)}
.h1{font-size: clamp(28px, 4.4vw, 48px); line-height:1.05; margin:0 0 10px; font-weight:900}

@media (max-width: 900px) {
  .brand img {
    height: 32px;
  }
  .brand .name {
    font-size: 22px;
  }
  .links {
    display: none; /* hide desktop nav */
  }
  .hamburger {
    display: flex;
  }
}

@media (max-width: 500px) {
  .brand {
    gap: 6px;
    padding: 8px;
  }
  .brand .name {
    font-size: 18px;
  }
}
.btn{
  display:inline-flex; align-items:center; gap:10px;
  background:var(--accent); color:#0b0b11;
  padding:12px 20px;
  border-radius:999px; text-decoration:none;
  font-weight:900;
  box-shadow:0 10px 24px var(--ring);
  transition: all .25s ease;
}
.btn:hover{background:#f7d977}
.btn.secondary{background:transparent; border:1px solid rgba(255,255,255,.18); color:#eaf0ff}

.row{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}

.trust{display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:12px; margin-top:18px}
.trust .item{
  background:#121c3d;
  border:1px solid rgba(255,255,255,.06);
  border-radius:12px;
  padding:12px 14px;
  font-size:14px;
  font-weight:600;
  color:#cfe3ff;
  transition: background .3s ease;
}
.trust .item:hover{background:#1a2654}

.section{
  margin:24px auto 42px auto;
  background:linear-gradient(180deg, var(--card-2), var(--card));
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:28px;
}
.section h2{margin:6px 0 18px; font-size:22px}

.grid{display:grid; gap:24px; grid-template-columns:repeat(auto-fill,minmax(280px,1fr))}

/* --- Card design --- */
.card{
  background:#10193a;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
  box-shadow:var(--shadow);
  transition: all .3s ease;
  cursor:pointer;
}
.card:hover{transform:translateY(-4px); background:#16214d; box-shadow:0 8px 20px rgba(0,0,0,.4)}

.card-header{display:flex; gap:12px; align-items:center}
.logo{width:44px; height:44px; border-radius:12px; overflow:hidden; background:#0c1430; display:grid; place-items:center; border:1px solid rgba(255,255,255,.08)}
.logo img{max-width:100%; max-height:100%}
.card .name{font-weight:900}
.card .meta{color:#a6b7d7; font-size:13px}
.badges{display:flex; gap:8px; flex-wrap:wrap}
.badge{background:#0e2a23; color:#8ef0c1; border:1px solid #17614c; font-weight:800; font-size:11px; padding:4px 8px; border-radius:999px}
.badge.ex{background:#2b1a05; color:#ffd89a; border-color:#8a6a2c}
.card .deal{font-weight:800; font-size:16px; color:#f0f5ff}
.card .actions{margin-top:auto; display:flex; justify-content:flex-end}

/* claim button simplified */
.card .claim{
  background:transparent;
  border:2px solid var(--accent);
  color:var(--accent);
  font-weight:800;
  padding:8px 12px;
  border-radius:10px;
  text-decoration:none;
  transition: all .25s ease;
}
.card:hover .claim{background:var(--accent); color:#0e0e12}

/* --- How it works --- */
.numcard{
  display:flex;
  align-items:flex-start;
  gap:14px;
  background:#0e1430;
  padding:18px;
  border-radius:14px;
  transition:all .3s ease;
}
.numcard:hover{background:#1b265a; box-shadow:0 6px 16px rgba(0,0,0,.3)}
.numcard .num{
  background:var(--accent);
  color:#0b0b11;
  font-weight:900;
  border-radius:50%;
  width:34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  transition:all .3s ease;
}
.numcard:hover .num{background:#fff; color:#1b265a}
.numcard strong{color:#fff; font-size:1.05em}
.numcard .small{color:var(--muted); font-size:.9em; display:block}

/* --- Blog cards --- */
.post-cards{display:grid; gap:24px; grid-template-columns:repeat(auto-fill,minmax(280px,1fr))}
.post-card{background:#10193a; border:1px solid rgba(255,255,255,.08); border-radius:16px; padding:20px; transition:all .3s ease}
.post-card:hover{background:#16214d; transform:translateY(-3px)}
.post-card h3{margin:6px 0}
.post-card a{color:#fff; text-decoration:none}
.post-card .more{display:inline-block; margin-top:8px; color:#0a0; font-weight:800}

.post-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.site-footer {
  background: #0b0b0f; /* dark background */
  color: #ccc;
  padding: 40px 20px 20px;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer a {
  color: #4da3ff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.responsible {
  max-width: 600px;
}

.responsible h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.footer-icons img {
  height: 40px;
  margin-left: 15px;
  filter: brightness(0) invert(1); /* makes logos white if they are dark */
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #999;
}


.footer{padding:30px 0 44px; color:#b8c8ea; border-top:1px solid rgba(255,255,255,.06); background-color:#0a0a0f;}
.footer a{color:#e6efff}
.small{color:#9cb0d8; font-size:12px}
#featured{margin-left:auto; margin-right:auto; padding:30px}

/* --- Hamburger button --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  height: 3px;
  width: 100%;
  background: var(--text);
  border-radius: 3px;
  transition: all .3s ease;
}

/* Transform into "X" when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* --- Mobile nav --- */
.mobile-menu {
  display: none;
  flex-direction: column;
  width: 100%;
  background: linear-gradient(180deg, rgba(15,23,55,.95), rgba(15,23,55,.9));
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a {
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: #cfe3ff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}
.mobile-menu a:hover {
  background: rgba(255,255,255,.05);
  color: #fff;
}

/* --- Responsive rules --- */
@media (max-width: 768px) {
  .links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu.show {
    display: flex;
    animation: slideDown .3s ease;
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Container */
.contact-container {
  max-width: 480px;    /* narrower */
  margin: 2rem auto;
  padding: 1.5rem;
  background: #0f1738;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Title + intro text */
.contact-container h1 {
  font-size: 1.8rem;   /* smaller heading */
  margin-bottom: 0.4rem;
}

.contact-container p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #ccc;
}

/* Form */
#name,
#email {
  max-width: 350px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;   /* tighter spacing */
}

.contact-form label {
  font-size: 0.85rem;  /* smaller labels */
  margin-bottom: 0.2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem 0.8rem;   /* shorter height */
  border-radius: 0.4rem;
  border: 1px solid #2a3360;
  background: #0d132e;
  color: #fff;
  font-size: 0.9rem;
}

.gdpr input {
  width: 20px !important;
}

.contact-form textarea {
  min-height: 80px;   /* smaller textarea */
  resize: vertical;
}

/* Checkbox */
.gdpr {
  display: flex;
  align-items: center;   /* ✅ aligns checkbox with middle of text */
  gap: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.2;
  color: #ddd;
}

.gdpr input[type="checkbox"] {
  margin: 0;  /* remove weird spacing */
}

/* Button */
.btn-primary {
  margin-top: 0.5rem;
  background: #ffcc00;
  color: #000;
  font-weight: 700;
  border: none;
  padding: 0.6rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background: #e6b800;
}

.controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: rgba(20, 28, 60, 0.8);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
  gap: 20px;
  color: #fff;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-group label {
  font-weight: 700;
  font-size: 14px;
  color: #cfe3ff;
}

.select-wrapper {
  position: relative;
}

.select {
  background: #0d1535;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 10px 36px 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  appearance: none; /* remove native arrow */
  cursor: pointer;
}

.select:focus {
  outline: none;
  border-color: #ffcc00;
  box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.3);
}

.chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  pointer-events: none;
  color: #cfe3ff;
}

#total-count {
  margin-left: auto;
  font-size: 13px;
  color: #9fb3d9;
}

.view-all-wrapper {
  text-align: center;
  margin-top: 20px;
}

.view-all-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  border: 2px solid #ffcc00; /* gold accent */
  border-radius: 8px;
  color: #ffcc00;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.view-all-btn:hover {
  background-color: #ffcc00;
  color: #0d1428; /* dark navy background */
}

a {
  color: blue
}

.disclosure {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75); /* light grey for subtlety */
  margin-top: 8px;
  margin-bottom: 20px;
  max-width: 750px;
  line-height: 1.4;
}
.disclosure strong {
  font-weight: 600;
  color: #ffd34e; /* gold accent to match site */
}