/* Online Casino Free Spins Ireland 2026 — layout #7 compact list rows */

@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@600;700;800&family=Work+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg-deep: #0b0f1a;
  --bg-card: #121828;
  --bg-inset: #0e1422;
  --lime: #84cc16;
  --lime-dark: #65a30d;
  --sky: #38bdf8;
  --coral: #fb7185;
  --coral-dark: #f43f5e;
  --text: #eef2f7;
  --text-muted: #8b9cb8;
  --border: rgba(56, 189, 248, 0.2);
  --border-lime: rgba(132, 204, 22, 0.35);
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
  --max-width: 1080px;
  --header-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Work Sans", system-ui, -apple-system, sans-serif;
  background: var(--bg-deep);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(56, 189, 248, 0.025) 28px,
    rgba(56, 189, 248, 0.025) 29px
  );
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

body.has-sticky-cta {
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sky);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--lime);
}

a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

h1, h2, h3, .section-title, .logo {
  font-family: "Figtree", system-ui, sans-serif;
}

/* Update bar */
.update-bar {
  background: linear-gradient(90deg, var(--lime-dark), var(--lime));
  color: var(--bg-deep);
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 16px;
  letter-spacing: 0.02em;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 26, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.logo span {
  color: var(--lime);
}

.logo-icon {
  flex-shrink: 0;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: background 0.2s;
}

.main-nav {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
}

.main-nav.is-open {
  display: block;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.main-nav a {
  display: block;
  padding: 10px 12px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--lime);
  background: rgba(132, 204, 22, 0.08);
}

/* Split hero */
.hero-split {
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--border);
}

.hero-split-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.hero-text {
  text-align: center;
}

.hero-text h1 {
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--lime);
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 520px;
  margin: 0 auto;
}

.hero-visual {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Trust bar */
.trust-bar {
  padding: 16px 0;
  background: var(--bg-inset);
  border-bottom: 1px solid var(--border);
}

.trust-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-icon {
  font-size: 1rem;
}

/* Showcase — layout #7 compact list rows */
.showcase {
  padding: 32px 0 40px;
}

.section-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.section-title span {
  color: var(--lime);
}

.list-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.list-row:hover {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.06);
}

.list-row--featured {
  border-color: var(--border-lime);
  background: linear-gradient(135deg, rgba(132, 204, 22, 0.06) 0%, var(--bg-card) 40%);
}

.row-badge {
  display: inline-block;
  background: var(--lime);
  color: var(--bg-deep);
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.list-row-main {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.rank-pill {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--sky);
  color: var(--bg-deep);
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  font-size: 0.8125rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.list-row--featured .rank-pill {
  background: var(--lime);
}

.logo-link {
  flex-shrink: 0;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.2s;
}

.logo-link:hover {
  transform: scale(1.03);
}

.casino-logo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--border);
}

.list-row-info {
  flex: 1;
  min-width: 0;
}

.card-name {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.perks li {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-left: 12px;
  position: relative;
  line-height: 1.4;
}

.perks li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}

.perks li.perk-extra {
  display: none;
}

.list-row-bonus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.bonus-text {
  flex: 1;
  min-width: 0;
}

.bonus-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.bonus-value {
  font-family: "Figtree", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--lime);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(251, 113, 133, 0.35);
  color: #fff;
}

/* SEO content */
.seo-content {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.seo-content h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--sky);
}

.seo-content p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 14px;
}

/* FAQ teaser */
.faq-teaser {
  padding: 32px 0;
  background: var(--bg-inset);
}

.faq-teaser h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  text-align: center;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 10px;
}

.faq-question {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 6px;
}

.faq-answer {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.faq-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Responsible gambling */
.responsible {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.responsible .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--coral);
}

.responsible p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 640px;
}

/* Footer */
.site-footer {
  padding: 32px 0 24px;
  background: var(--bg-inset);
  border-top: 1px solid var(--border);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-nav a:hover {
  color: var(--lime);
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.5;
}

.copyright {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(11, 15, 26, 0.97);
  border-top: 1px solid var(--border-lime);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  backdrop-filter: blur(8px);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta .btn-cta {
  display: block;
  width: 100%;
}

/* Subpages */
.page-hero {
  padding: 40px 0 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(1.375rem, 4vw, 1.75rem);
  margin-bottom: 8px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.page-content {
  padding: 32px 0 48px;
}

.page-content h2 {
  font-size: 1.125rem;
  color: var(--lime);
  margin: 28px 0 12px;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p,
.page-content li {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 12px;
}

.page-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-accordion-btn {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
  padding: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-accordion-btn::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--lime);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-accordion-item.is-open .faq-accordion-btn::after {
  content: "−";
}

.faq-accordion-body {
  display: none;
  padding: 0 16px 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-accordion-item.is-open .faq-accordion-body {
  display: block;
}

/* Contact form */
.contact-form {
  max-width: 520px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9375rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--lime);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  text-align: center;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Tablet */
@media (min-width: 480px) {
  .trust-items {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
  }
}

@media (min-width: 768px) {
  body.has-sticky-cta {
    padding-bottom: 0;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: block;
    position: static;
    background: none;
    border: none;
    padding: 0;
  }

  .main-nav ul {
    flex-direction: row;
    gap: 4px;
  }

  .main-nav a {
    padding: 8px 14px;
    font-size: 0.875rem;
  }

  .hero-split-inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .hero-text {
    flex: 1;
    text-align: left;
  }

  .hero-subtitle {
    margin: 0;
  }

  .hero-visual {
    flex: 0 0 42%;
    max-width: none;
  }

  .perks li.perk-extra {
    display: list-item;
  }

  .list-row {
    padding: 16px 20px;
  }

  .list-row-inner {
    display: grid;
    grid-template-columns: 48px 110px 1fr 200px;
    gap: 16px;
    align-items: center;
  }

  .list-row-main {
    display: contents;
  }

  .rank-pill {
    width: 36px;
    height: 36px;
    font-size: 0.9375rem;
    margin-top: 0;
  }

  .list-row-bonus {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    text-align: center;
    gap: 8px;
  }

  .list-row-bonus .btn-cta {
    width: 100%;
  }

  .row-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    margin-bottom: 0;
  }

  .sticky-cta {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .bonus-value {
    font-size: 1.0625rem;
  }

  .list-row-inner {
    grid-template-columns: 48px 110px 1fr 220px;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .sticky-cta {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
