*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
#root,
#__next {
  isolation: isolate;
}
:root {
  --color-primary: #ff6b35;
  --color-secondary: #4caf50;
  --color-accent: #ffc107;
  --color-dark: #2c2c2c;
  --color-light: #f8f9fa;
  --color-white: #ffffff;
  --color-gray: #6c757d;
  --color-gray-light: #e9ecef;
  --font-primary: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: Georgia, "Times New Roman", serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}
body {
  font-family: var(--font-primary);
  color: var(--color-dark);
  background-color: var(--color-white);
  font-size: 16px;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}
.header {
  background: linear-gradient(135deg, var(--color-dark) 0%, #1a1a1a 100%);
  color: var(--color-white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}
.header-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo {
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.header-text {
  flex: 1;
}
.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--color-primary);
}
.site-tagline {
  font-size: 0.9rem;
  color: var(--color-gray-light);
  margin: 0;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-white);
  margin: 3px 0;
  transition: var(--transition);
}
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .site-title {
    font-size: 1.2rem;
  }
  .site-tagline {
    font-size: 0.8rem;
  }
}
.nav {
  background: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
}
.nav-list li {
  flex: 1;
  min-width: 120px;
}
.nav-list a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-list a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.nav-list li:last-child a {
  border-right: none;
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .nav.active {
    display: block;
  }
  .nav-list {
    flex-direction: column;
  }
  .nav-list li {
    min-width: auto;
  }
  .nav-list a {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-list li:last-child a {
    border-bottom: none;
  }
}
.main {
  padding: 2rem 0;
  min-height: calc(100vh - 200px);
}
.article {
  max-width: 800px;
  margin: 0 auto;
}
.article-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}
.article-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .article-title {
    font-size: 1.8rem;
  }
}
.section {
  margin-bottom: 3rem;
}
.section h2 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--color-secondary);
  position: relative;
}
.section h2::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--color-accent);
}
.section h3 {
  font-size: 1.5rem;
  color: var(--color-dark);
  margin: 2rem 0 1rem 0;
  font-weight: 600;
}
.section h4 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin: 1.5rem 0 1rem 0;
  font-weight: 600;
}
.lead {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.casino-review {
  background: var(--color-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin: 1.5rem 0;
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.casino-review h4 {
  color: var(--color-primary);
  margin-top: 0;
}
.table-container {
  overflow-x: auto;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
  border-radius: var(--border-radius);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
}
.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-gray-light);
}
.comparison-table th {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
}
.comparison-table tr:hover {
  background: var(--color-light);
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 768px) {
  .comparison-table {
    font-size: 0.9rem;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }
}
.author-section {
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-top: 3rem;
}
.author-info {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.author-photo {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.author-details {
  flex: 1;
}
.author-contact {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-gray-light);
}
.author-contact p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .author-info {
    flex-direction: column;
    text-align: center;
  }
  .author-photo {
    align-self: center;
  }
}
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 2rem 0;
  margin-top: 3rem;
}
.footer-content {
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-logo {
  border-radius: 50%;
}
.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
}
.footer-tagline {
  font-size: 1rem;
  color: var(--color-gray-light);
  margin-bottom: 1.5rem;
}
.footer-disclaimer {
  font-size: 0.9rem;
  color: var(--color-gray-light);
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.footer-copyright {
  font-size: 0.8rem;
  color: var(--color-gray);
  margin-top: 1rem;
}
ul,
ol {
  margin: 1rem 0;
  padding-left: 2rem;
}
li {
  margin: 0.5rem 0;
}
p {
  margin: 1rem 0;
}
strong {
  color: var(--color-primary);
  font-weight: 600;
}
em {
  color: var(--color-secondary);
}
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .section h2 {
    font-size: 1.5rem;
  }
  .section h3 {
    font-size: 1.25rem;
  }
  .section h4 {
    font-size: 1.1rem;
  }
  .lead {
    font-size: 1.1rem;
  }
  .main {
    padding: 1rem 0;
  }
  .section {
    margin-bottom: 2rem;
  }
  .casino-review {
    padding: 1rem;
  }
  .author-section {
    padding: 1.5rem;
  }
}
@media (max-width: 480px) {
  .article-title {
    font-size: 1.5rem;
  }
  .container {
    padding: 0 12px;
  }
  .header-content {
    gap: 0.75rem;
  }
  .logo {
    width: 50px;
    height: 50px;
  }
  .site-title {
    font-size: 1.1rem;
  }
  .site-tagline {
    font-size: 0.75rem;
  }
}
