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

:root{
  --primary-color: #1a5f7a;
  --primary-dark: #0d1b2a;
  --primary-light: #159895;
  --accent-color: #ffc107;

  --text-color: #333;
  --text-light: #666;
  --border-color: #ddd;

  --bg-light: #f8f9fa;
  --bg-white: #ffffff;

  --shadow: 0 2px 10px rgba(0,0,0,.10);
  --shadow-hover: 0 4px 20px rgba(0,0,0,.15);
}

body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--bg-light);
}

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

/* Header */
header{
  background: var(--bg-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
}

.brand{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title{
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.7rem;
  text-decoration: none;
}

.brand-title:hover{ color: var(--primary-light); }

.brand-tagline{
  color: var(--text-light);
  font-size: .9rem;
}

/* Nav */
.nav ul{
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a{
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all .25s ease;
}

.nav a:hover,
.nav a.active{
  background: var(--primary-color);
  color: #fff;
}

/* Mobile nav button */
.nav-toggle{
  display: none;
  width: 44px;
  height: 38px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-white);
  cursor: pointer;
  padding: 8px;
  gap: 5px;
}

.nav-toggle span{
  display: block;
  height: 2px;
  width: 100%;
  background: var(--primary-dark);
  border-radius: 2px;
}

/* Main */
main{
  padding: 40px 0;
}

article{
  background: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

h1{
  color: var(--primary-color);
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 22px;
}

h2{
  color: var(--primary-color);
  font-size: 1.85rem;
  margin: 32px 0 14px;
}

p{ margin-bottom: 14px; }

/* Meta box */
.meta-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-light);
  padding: 16px 18px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.meta-author{
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-info{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-info strong{
  font-size: 1rem;
}

.author-info span{
  color: var(--text-light);
  font-size: .85rem;
}

.meta-date{
  color: var(--text-light);
  font-size: .95rem;
}

/* Intro */
.intro{
  font-size: 1.08rem;
  padding: 18px 0 10px;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 26px;
}

/* Casino list section */
.casino-table{
  margin: 34px 0;
}

.casino-table h2{
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  padding: 18px 16px;
  border-radius: 12px 12px 0 0;
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: .2px;
}

.casino-list{
  border: 2px solid var(--primary-color);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  background: var(--bg-white);
}

.casino-item{
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px 18px;
  border-bottom: 1px solid var(--border-color);
  transition: background .25s ease;
}

.casino-item:hover{
  background: var(--bg-light);
}

.casino-item:last-child{
  border-bottom: none;
}

.casino-item.featured{
  background: #fff9e6;
  border-left: 6px solid var(--accent-color);
}

.check{
  font-size: 1.15rem;
  flex-shrink: 0;
}

.casino-name{
  color: var(--primary-color);
  font-size: 1.05rem;
  letter-spacing: .2px;
}

.bonus{
  color: var(--text-color);
  flex: 1;
}

.small-note{
  color: var(--text-light);
  font-size: .92rem;
  margin-top: 12px;
}

/* Content blocks */
.content-section{
  margin: 34px 0;
}

.content-section ul,
.content-section ol{
  margin-left: 22px;
  margin-top: 10px;
}

.content-section li{
  margin-bottom: 10px;
}

/* Responsible section */
.responsible{
  margin-top: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: #fff;
  padding: 28px;
  border-radius: 12px;
}

.responsible h2{
  color: #fff;
  margin-top: 0;
}

.responsible p{ color: #fff; }

.help-links{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.help-btn{
  background: #fff;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.help-btn:hover{
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

/* Footer */
footer{
  background: var(--primary-dark);
  color: #fff;
  padding: 46px 0 18px;
  margin-top: 60px;
}

.footer-content{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 34px;
  margin-bottom: 26px;
}

.footer-section h3{
  color: var(--accent-color);
  margin-bottom: 12px;
}

.footer-section p,
.footer-section a{
  color: #e6e6e6;
  text-decoration: none;
  line-height: 1.8;
}

.footer-section a:hover{
  color: var(--accent-color);
}

.footer-section ul{
  list-style: none;
}

.footer-section ul li{ margin-bottom: 8px; }

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 16px;
  text-align: center;
}

.footer-bottom p{
  color: #e6e6e6;
  margin-bottom: 6px;
  font-size: .92rem;
}

.disclaimer{
  color: #cfcfcf;
  font-size: .88rem;
}

/* Responsive */
@media (max-width: 820px){
  article{ padding: 26px; }
  h1{ font-size: 2rem; }

  .nav-toggle{ display: flex; flex-direction: column; }
  .nav{ display: none; width: 100%; }
  .nav.open{ display: block; }
  .nav ul{
    width: 100%;
    justify-content: center;
    padding: 10px 0 6px;
    gap: 10px;
  }
}

@media (max-width: 520px){
  h1{ font-size: 1.7rem; }
  article{ padding: 20px; }
  .casino-item{ flex-direction: column; align-items: flex-start; }
  .bonus{ width: 100%; }
  .help-links{ flex-direction: column; }
  .help-btn{ width: 100%; text-align: center; }
}

/* Print */
@media print{
  header, footer, .nav-toggle{ display: none !important; }
  article{ box-shadow: none; }
}