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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  min-height: 100vh;
  padding-bottom: 0;
}

.header {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.logo:hover {
  transform: scale(1.05);
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 48px;
  flex-wrap: wrap;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #4ade80;
}

.main {
  max-width: 1400px;
  margin: 32px auto;
  padding: 0 24px;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.casino-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 50px 260px 1fr auto auto auto;
  gap: 32px;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.casino-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-color: #4ade80;
}

.casino-rank {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.casino-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.casino-logo img {
  max-width: 240px;
  max-height: 100px;
  object-fit: contain;
}

.casino-bonus {
  font-size: 15px;
  color: #1e293b;
  font-weight: 500;
  line-height: 1.6;
}

.casino-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-width: 160px;
}

.casino-payments img {
  width: 36px;
  height: 26px;
  object-fit: contain;
}

.casino-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 120px;
}

.rating-score {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
}

.rating-text {
  font-size: 12px;
  color: #64748b;
  margin-top: -4px;
}

.stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 2px;
}

.reviews {
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
}

.btn-play {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
  white-space: nowrap;
}

.btn-play:hover {
  background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

@media (max-width: 1024px) {
  .casino-card {
    grid-template-columns: 40px 120px 1fr;
    gap: 16px;
  }

  .casino-payments {
    grid-column: 2 / 3;
    justify-content: flex-start;
  }

  .casino-rating {
    grid-column: 3 / 4;
    align-items: flex-start;
  }

  .btn-play {
    grid-column: 2 / 4;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 16px;
    padding: 0 16px;
  }

  .logo svg {
    width: 200px;
    height: 35px;
  }

  .main {
    padding: 0 16px;
    margin: 16px auto;
  }

  .nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .nav-link {
    font-size: 11px;
    padding: 6px 10px;
  }

  .casino-card {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 20px 16px;
    grid-template-areas:
      "rank logo"
      "bonus bonus"
      "payments payments"
      "rating rating"
      "button button";
  }

  .casino-rank {
    grid-area: rank;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .casino-logo {
    grid-area: logo;
    justify-content: flex-start;
  }

  .casino-logo img {
    max-width: 140px;
    max-height: 60px;
  }

  .casino-bonus {
    grid-area: bonus;
    font-size: 12px;
    line-height: 1.5;
  }

  .casino-payments {
    grid-area: payments;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

  .casino-payments img {
    height: 20px;
  }

  .casino-rating {
    grid-area: rating;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .rating-score {
    font-size: 20px;
  }

  .stars {
    font-size: 14px;
  }

  .reviews {
    font-size: 11px;
  }

  .btn-play {
    grid-area: button;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 13px;
  }

  .footer {
    margin-top: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    padding: 32px 16px;
    gap: 32px;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .footer-section p {
    font-size: 13px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-disclaimer {
    padding: 20px 16px;
  }

  .footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
  }

  .footer-certifications {
    padding: 20px 16px;
    gap: 20px;
  }

  .footer-certifications img {
    height: 40px;
  }

  .footer-bottom {
    padding: 16px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

.footer {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #4ade80;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e1;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #4ade80;
}

.footer-disclaimer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
  font-size: 13px;
  line-height: 1.7;
  color: #94a3b8;
  text-align: center;
}

.footer-certifications {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 24px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-certifications img {
  height: 50px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-certifications img:hover {
  opacity: 1;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 13px;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }

  .footer-section h3 {
    font-size: 16px;
  }
}

.content-page {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  padding: 48px 64px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.content-page h1 {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid #4ade80;
}

.content-page h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 20px;
}

.content-page h3 {
  font-size: 22px;
  font-weight: 600;
  color: #334155;
  margin-top: 28px;
  margin-bottom: 16px;
}

.content-page p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 16px;
}

.content-page ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 20px;
}

.content-page ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 8px;
}

.content-page section {
  margin-bottom: 36px;
}

.content-page a {
  color: #16a34a;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.content-page a:hover {
  color: #15803d;
}

.contact-form {
  max-width: 600px;
  margin: 32px 0;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4ade80;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #ffffff;
  padding: 14px 36px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.contact-item h3 {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 4px;
}

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

.faq-item {
  margin-bottom: 28px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #4ade80;
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-top: 0;
  margin-bottom: 12px;
}

.faq-item p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .content-page {
    padding: 32px 24px;
  }

  .content-page h1 {
    font-size: 28px;
  }

  .content-page h2 {
    font-size: 22px;
  }

  .content-page h3 {
    font-size: 18px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}

.hero-section {
  text-align: center;
  padding: 48px 24px;
  margin-bottom: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.hero-section h1 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section p {
  font-size: 18px;
  color: #e2e8f0;
  max-width: 800px;
  margin: 0 auto;
}

.detailed-reviews {
  margin-top: 64px;
  padding: 48px 0;
}

.detailed-reviews > h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 48px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.review-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  padding: 32px 40px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-color: #4ade80;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.review-header .review-rank {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.review-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.review-bonus {
  font-size: 15px;
  color: #16a34a;
  margin-bottom: 12px;
  padding: 12px 16px;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 8px;
  border-left: 4px solid #4ade80;
}

.review-bonus strong {
  color: #15803d;
}

.review-author {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
  font-style: italic;
}

.review-content {
  color: #475569;
  line-height: 1.8;
}

.review-content p {
  font-size: 15px;
  margin-bottom: 12px;
}

.review-content p:first-child {
  margin-top: 0;
}

.review-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 32px 16px;
    margin-bottom: 24px;
  }

  .hero-section h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .hero-section p {
    font-size: 14px;
  }

  .detailed-reviews {
    margin-top: 40px;
    padding: 32px 0;
  }

  .detailed-reviews > h2 {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .review-card {
    padding: 20px 16px;
    margin-bottom: 16px;
  }

  .review-header {
    gap: 12px;
    margin-bottom: 12px;
  }

  .review-header .review-rank {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .review-header h3 {
    font-size: 18px;
  }

  .review-bonus {
    font-size: 13px;
    padding: 10px 12px;
  }

  .review-author {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .review-content p {
    font-size: 14px;
  }
}
