:root {
  --bg-main: #080a0f;
  --bg-card: #111622;
  --bg-card-hover: #161d2d;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 255, 136, 0.3);

  --neon-green: #00ff88;
  --neon-green-hover: #00cc6d;
  --neon-cyan: #00e5ff;
  --neon-gold: #ffb800;
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --danger-red: #ff4757;

  --font-family:
    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 10, 15, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-logo span {
  color: var(--neon-green);
}

/* HERO SECTION */
.hero-section {
  padding: 50px 0 30px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(0, 255, 136, 0.08) 0%,
    transparent 60%
  );
}

.hero-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.hero-author {
  color: var(--neon-cyan);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

/* SECTION HEADINGS */
.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 40px 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 24px;
  background: var(--neon-green);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--neon-green);
}

/* CASINO LIST CARDS */
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 60px 180px 1fr 220px;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.casino-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.rank-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--neon-gold);
}

.casino-name {
  font-size: 1.2rem;
  font-weight: 800;
}

.rating {
  font-size: 0.85rem;
  color: var(--neon-gold);
  margin-top: 4px;
}

.casino-info {
  background: rgba(0, 0, 0, 0.25);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}

.casino-info div strong {
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.casino-info div span {
  color: var(--text-main);
  font-weight: 700;
}

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-play {
  background: var(--neon-green);
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.btn-play:hover {
  background: var(--neon-green-hover);
  transform: scale(1.02);
}

.btn-review {
  background: transparent;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  transition: var(--transition);
}

.btn-review:hover {
  color: var(--text-main);
}

/* CONTENT BLOCK STYLES */
.content-block {
  margin: 40px 0;
  line-height: 1.7;
  color: var(--text-muted);
}

.content-block h2 {
  color: var(--text-main);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 32px 0 16px;
}

.content-block h3 {
  color: var(--neon-cyan);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 24px 0 12px;
}

.content-block p {
  margin-bottom: 16px;
}

.content-block ul {
  margin: 16px 0 24px 20px;
}

.content-block li {
  margin-bottom: 8px;
}

/* AUTHOR HIGHLIGHT QUOTE BOXES */
.author-quote-box {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.06) 0%,
    rgba(0, 229, 255, 0.04) 100%
  );
  border-left: 4px solid var(--neon-green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
  color: var(--text-main);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.7;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.author-quote-box::before {
  content: "Mark Stivenson mening";
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--neon-green);
  margin-bottom: 8px;
  font-weight: 800;
}

/* TABLES */
.table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

th {
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 16px;
  color: var(--text-main);
  font-weight: 700;
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
}

tr:last-child td {
  border-bottom: none;
}
tr:hover td {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
}

/* FAQ ACCORDION */
.faq-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-q::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--neon-green);
}

.faq-box.active .faq-q::after {
  content: "−";
}

.faq-a {
  padding: 0 20px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  display: none;
  line-height: 1.7;
}

.faq-box.active .faq-a {
  display: block;
}

/* FOOTER */
.site-footer {
  background: #040508;
  padding: 40px 0;
  margin-top: 60px;
  border-top: 1px solid var(--border-color);
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .casino-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .casino-actions {
    flex-direction: row;
  }
  .casino-actions a {
    flex: 1;
  }
}

.logo img {
  display: block;
  max-height: 58px;
  width: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--neon-green);
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}
.button:hover {
  background: var(--neon-green-hover);
  transform: scale(1.02);
}

body > header,
body > section.section,
body > footer {
  width: min(1200px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}
body > section.section {
  margin-top: 28px;
  margin-bottom: 28px;
}
body > section.section[data-layout~="hero-section"] {
  padding: 50px 20px 30px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(0, 255, 136, 0.08) 0%,
    transparent 60%
  );
}
body > section.section[data-layout~="content-block"] {
  line-height: 1.7;
  color: var(--text-muted);
}
body > section.section[data-layout~="casino-list"] {
  padding-top: 12px;
  padding-bottom: 12px;
}
@media (max-width: 850px) {
  body > header,
  body > section.section,
  body > footer {
    width: min(100% - 24px, 1200px);
  }
}



.general-h3{
    color: var(--neon-cyan);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 24px 0 12px;
}

.hero-author {
    color: var(--neon-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.general-p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.general-h2 {
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 32px 0 16px;
}

.general-ul {
    margin: 16px 0 24px 20px;
    color: var(--text-muted);
}


.general-h1{
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.section:first-of-type {
  padding: 50px 0 30px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(0, 255, 136, 0.08) 0%,
    transparent 60%
  );
}

.casino-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 60px 180px 1fr 220px;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.casino-card:hover {
    border-color: var(--border-glow);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.rank-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--neon-gold);
}

.casino-name {
    font-size: 1.2rem;
    font-weight: 800;
}

.rating {
    font-size: 0.85rem;
    color: var(--neon-gold);
    margin-top: 4px;
}

.casino-info {
    background: rgba(0, 0, 0, 0.25);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
}

.casino-info div strong {
    color: var(--text-muted);
    font-weight: 500;
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.casino-info div span {
    color: var(--text-main);
    font-weight: 700;
}

.casino-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.casino-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: var(--font-family);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    line-height: 1.2;
}

.casino-actions .btn-play {
    background: var(--neon-green);
    color: #000;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.casino-actions .btn-play:hover {
    background: var(--neon-green-hover);
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.3);
}

.casino-actions .btn-play:active {
    transform: scale(0.98);
}

.casino-actions .btn-review {
    background: transparent;
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    text-align: center;
}

.casino-actions .btn-review:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 850px) {
    .casino-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .casino-actions {
        flex-direction: row;
    }
    .casino-actions button {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .casino-actions {
        flex-direction: column;
    }
    .casino-actions button {
        width: 100%;
    }
}


.faq-item input{
  display: none;
}


.faq-container {
    margin: 24px 0;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-glow);
}

.faq-item .toggle {
    display: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: var(--transition);
    position: relative;
    padding-right: 50px;
}

.faq-question:hover {
    color: var(--neon-green);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--neon-green);
    transition: var(--transition);
}

.faq-item .toggle:checked ~ .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-muted);
    font-size: 0.92rem;
    display: none;
    line-height: 1.7;
}

.faq-item .toggle:checked ~ .faq-answer {
    display: block;
    animation: faqFadeIn 0.3s ease;
}

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

.faq-item .icon {
    display: none;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 0.92rem;
        padding: 14px 16px;
        padding-right: 44px;
    }
    .faq-question::after {
        right: 16px;
        font-size: 1.1rem;
    }
    .faq-answer {
        font-size: 0.85rem;
        padding: 0 16px 16px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        font-size: 0.85rem;
        padding: 12px 14px;
        padding-right: 40px;
    }
    .faq-question::after {
        right: 14px;
        font-size: 1rem;
    }
    .faq-answer {
        font-size: 0.82rem;
        padding: 0 14px 14px;
    }
}