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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

/* Header Styles */
.header {
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo h1 {
  color: #ffd700;
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffd700;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #5c6bc0 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #1a237e;
  font-weight: bold;
}

.section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #666;
}

/* Top Casinos Section */
.top-casinos {
  padding: 4rem 0;
  background: white;
}

.casinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.casino-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

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

.casino-card.featured {
  border-color: #ffd700;
  background: linear-gradient(145deg, #fff 0%, #fffbf0 100%);
}

.casino-rank {
  position: absolute;
  top: -10px;
  left: 20px;
  background: #ffd700;
  color: #1a237e;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1.1rem;
}

.casino-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.casino-name {
  font-size: 1.5rem;
  color: #1a237e;
  font-weight: bold;
}

.casino-rating {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.rating-score {
  font-size: 2rem;
  font-weight: bold;
  color: #4caf50;
}

.rating-text {
  color: #666;
}

.casino-bonus {
  background: #f0f8ff;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #1a237e;
}

.bonus-text {
  font-size: 1.1rem;
  color: #1a237e;
  text-align: center;
}

.casino-features {
  list-style: none;
  margin-bottom: 2rem;
}

.casino-features li {
  padding: 0.5rem 0;
  color: #666;
  font-size: 1rem;
}

.cta-button {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background: #1a237e;
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background: #303f9f;
  transform: translateY(-2px);
}

.cta-button.primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  color: #1a237e;
}

.cta-button.primary:hover {
  background: linear-gradient(135deg, #ffb300 0%, #ff8f00 100%);
}

/* Why Choose Section */
.why-choose {
  padding: 4rem 0;
  background: #f8f9fa;
}

/* Advantages Section */
.advantages {
  padding: 4rem 0;
  background: white;
}

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

.advantage-item {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
}

.advantage-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.advantage-item h3 {
  color: #1a237e;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Selection Criteria */
.selection-criteria {
  padding: 4rem 0;
  background: #f8f9fa;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.criteria-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.criteria-item h3 {
  color: #1a237e;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Games Section */
.games-section {
  padding: 4rem 0;
  background: white;
}

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

.game-category {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border-left: 4px solid #1a237e;
}

.game-category h3 {
  color: #1a237e;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Payment Methods */
.payment-methods {
  padding: 4rem 0;
  background: #f8f9fa;
  text-align: center;
}

.payment-info p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #666;
}

/* Trust Signals */
.trust-signals {
  padding: 4rem 0;
  background: white;
}

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

.trust-item {
  text-align: center;
  padding: 2rem;
}

.trust-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.trust-item h3 {
  color: #1a237e;
  font-size: 1.2rem;
}

/* Footer */
.footer {
  background: #1a237e;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #3949ab;
  opacity: 0.8;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #1a237e;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .casinos-grid {
    grid-template-columns: 1fr;
  }

  .casino-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .advantages-grid,
  .criteria-grid,
  .games-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .casino-card {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}
