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

:root {
  --primary-red: #E30A17;
  --primary-orange: #FF6B35;
  --dark-bg: #1a1a1a;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --text-dark: #2c2c2c;
  --text-gray: #666666;
  --border-color: #e0e0e0;
  --gold: #FFD700;
}

body {
  font-family: 'Arial', 'Helvetica', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--light-bg);
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/images/background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(8px);
  opacity: 0.15;
  z-index: -1;
}

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

.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

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

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-red);
  object-fit: cover;
}

.logo span {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-red);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 1px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 30px;
  height: 3px;
  margin: 2px;
  background: var(--primary-red);
  transition: all 1.5s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
  padding: 8px 0;
}

.nav a:hover {
  color: var(--primary-red);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  color: var(--white);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(227, 10, 23, 0.3);
}

.hero {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,96C1248,75,1344,53,1392,42.7L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: 22px;
  margin-bottom: 20px;
  opacity: 0.95;
}

.update-date {
  font-size: 14px;
  opacity: 0.85;
  font-style: italic;
}

.main-content {
  padding: 60px 0;
}

.casino-table {
  margin-bottom: 60px;
}

.casino-table h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.casino-table h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
}

.casino-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.casino-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: 60px 150px 2fr 2fr auto 1fr;
  gap: 25px;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.casino-rank {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-red);
  text-align: center;
}

.casino-logo img {
  width: 150px;
  height: 110px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.casino-details h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.casino-more {
  display: inline-block;
  color: var(--primary-orange);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 600;
  transition: color 0.3s;
}

.casino-more:hover {
  color: var(--primary-red);
}

.casino-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature {
  font-size: 14px;
  color: var(--text-gray);
}

.casino-bonus {
  text-align: center;
  padding: 15px;
  background: rgba(227, 10, 23, 0.05);
  border-radius: 10px;
  min-width: 160px;
}

.bonus-label {
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 5px;
}

.bonus-amount {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-orange);
}

.casino-rating {
  text-align: center;
  min-width: 100px;
}

.stars {
  color: var(--gold);
  font-size: 20px;
  display: block;
  margin-bottom: 8px;
}

.score {
  font-size: 16px;
  color: var(--text-gray);
  font-weight: 600;
  display: block;
}

.casino-action {
  min-width: 120px;
}

.btn-play {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  color: var(--white);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s;
  white-space: nowrap;
}

.btn-play:hover {
  transform: scale(1.05);
}

.content-section {
  margin-bottom: 60px;
}

.content-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--text-dark);
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
}

.content-wrapper {
  background: var(--white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.content-text {
  line-height: 1.8;
}

.user-content p {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.user-content h3 {
  font-size: 24px;
  color: var(--primary-red);
  margin: 30px 0 15px;
}

.user-content h2 {
  font-size: 28px;
  color: var(--primary-red);
  margin: 35px 0 20px;
}

.user-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
  display: block;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.user-content ul, .user-content ol {
  margin: 15px 0 15px 30px;
}

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

.user-content a {
  color: var(--primary-orange);
  text-decoration: underline;
}

.user-content strong {
  font-weight: 700;
  color: var(--text-dark);
}

.faq-section {
  margin-bottom: 60px;
}

.faq-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--text-dark);
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.faq-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
}

.faq-wrapper {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item {
  padding: 20px 0;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 18px;
  color: var(--text-dark);
  flex: 1;
}

.faq-icon {
  font-size: 36px;
  color: var(--primary-red);
  font-weight: 200;
  transition: transform 0.3s;
  width: 50px;
  text-align: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-top: 15px;
  color: var(--text-gray);
  line-height: 1.8;
}

.author-section {
  margin-bottom: 60px;
}

.author-card {
  background: var(--white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  display: flex;
  gap: 30px;
  align-items: center;
}

.author-image {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-red);
  flex-shrink: 0;
}

.author-info h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.author-title {
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 15px;
}

.author-bio {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.author-social {
  display: flex;
  gap: 15px;
}

.author-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  border-radius: 50%;
  color: var(--text-dark);
  transition: all 0.3s;
}

.author-social a:hover {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  color: var(--white);
  transform: translateY(-3px);
}

.footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 50px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer-logo h3 {
  font-size: 22px;
  color: var(--white);
}

.footer-about p {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-menu h4,
.footer-resources h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-menu ul,
.footer-resources ul {
  list-style: none;
}

.footer-menu ul li,
.footer-resources ul li {
  margin-bottom: 10px;
}

.footer-menu ul li a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu ul li a:hover {
  color: var(--primary-orange);
}

.footer-resources ul li a {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
}

.footer-resources ul li a:hover {
  background: rgba(255,107,53,0.2);
  color: var(--white);
  transform: translateX(5px);
}

.footer-disclaimer {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: center;
}

.footer-disclaimer p {
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  font-size: 14px;
}

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

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-orange);
}

.copyright p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 36px;
  }

  .casino-card {
    grid-template-columns: 50px 120px 1fr;
    grid-template-rows: auto auto auto;
    gap: 15px;
  }

  .casino-rank {
    grid-column: 1;
    grid-row: 1;
  }

  .casino-logo {
    grid-column: 2;
    grid-row: 1;
  }

  .casino-details {
    grid-column: 3;
    grid-row: 1;
  }

  .casino-bonus {
    grid-column: 1 / 2;
    grid-row: 2;
  }

  .casino-rating {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  .casino-action {
    grid-column: 3 / 4;
    grid-row: 2;
    justify-self: end;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .author-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    order: 2;
  }

  .header-content {
    flex-wrap: wrap;
  }

  .logo {
    order: 1;
  }

  .btn-primary {
    order: 3;
  }

  .nav {
    order: 4;
    width: 100%;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav.active {
    max-height: 300px;
    margin-top: 15px;
  }

  .nav a {
    padding: 12px 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .casino-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    text-align: center;
    padding: 20px;
  }

  .casino-rank {
    grid-column: 1;
    grid-row: 1;
  }

  .casino-logo {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  .casino-logo img {
    width: 180px;
  }

  .casino-details {
    grid-column: 1;
    grid-row: 3;
  }

  .casino-features {
    align-items: center;
  }

  .casino-bonus {
    grid-column: 1;
    grid-row: 4;
  }

  .casino-rating {
    grid-column: 1;
    grid-row: 5;
  }

  .casino-action {
    grid-column: 1;
    grid-row: 6;
    justify-self: center;
  }

  .content-wrapper {
    padding: 25px;
  }

  .footer-top {
    text-align: left;
  }

  .footer-menu,
  .footer-resources {
    text-align: center;
  }

  .footer-resources ul li a {
    display: inline-block;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 30px 0;
}

table tr:first-child {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
}

table tr:first-child td p strong {
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.5px;
}

table tr {
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

table tr:last-child {
    border-bottom: none;
}

table tr:not(:first-child):hover {
    background: rgba(227, 10, 23, 0.04);
}

table tr:nth-child(even):not(:first-child) {
    background: rgba(0, 0, 0, 0.02);
}

table td {
    padding: 14px 18px;
    border-right: 1px solid var(--border-color);
    vertical-align: middle;
}

table td:last-child {
    border-right: none;
}

table td p {
    margin: 0 !important;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

table td:first-child p {
    font-weight: 600;
}

table td:last-child p {
    color: var(--text-gray);
    font-size: 13px;
}
.content-image {
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: block;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.content-image:hover img {
    transform: scale(1.02);
}
