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

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(
    135deg,
    #1a1a2e 0%,
    #16213e 25%,
    #0f3460 50%,
    #533a7d 75%,
    #7b2cbf 100%
  );
  min-height: 100vh;
  color: #ffffff;
  line-height: 1.6;
}

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

/* Header Styles */
.navbar {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(30, 30, 60, 0.9) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.logo img {
  width: auto;
  height: 100px;
  border-color: #ffd700;
  border-radius: 10px;
  border-width: 2px;
  border-style: solid;
}

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

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1000;
}

.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background: #ffd700;
  margin: 3px 0;
  transition: 0.3s;
  transform-origin: center;
}

.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

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

.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Main Content Spacing */
main {
  margin-top: 100px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(26, 26, 46, 0.4) 25%,
      rgba(22, 33, 62, 0.4) 50%,
      rgba(15, 52, 96, 0.4) 75%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    url("/images/bg-img.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 4rem 0;
  text-align: center;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.6) 0%,
    rgba(22, 33, 62, 0.7) 50%,
    rgba(15, 52, 96, 0.6) 100%
  );
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffd700, #ffed4a, #f39c12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #e0e0e0;
}

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

.casino-card {
  background: linear-gradient(
    135deg,
    rgba(30, 30, 60, 0.9) 0%,
    rgba(60, 60, 120, 0.9) 50%,
    rgba(120, 60, 200, 0.9) 100%
  );
  border-radius: 15px;
  padding: 2rem;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.casino-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 215, 0, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.casino-card:hover::before {
  opacity: 1;
  animation: shine 1s ease-in-out;
}

.casino-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
  border-color: #ffd700;
}

/* Casino Labels */
.casino-label {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.casino-label.featured {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
}

.casino-label.popular {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
}

.casino-label.hot {
  background: linear-gradient(45deg, #ff3838, #ff6348);
  color: white;
  animation: pulse 2s infinite;
}

.casino-label.new {
  background: linear-gradient(45deg, #00d2ff, #3a7bd5);
  color: white;
}

.casino-label.reliable {
  background: linear-gradient(45deg, #00b894, #00cec9);
  color: white;
}

.casino-label.vip {
  background: linear-gradient(45deg, #6c5ce7, #a29bfe);
  color: white;
}

.casino-label.crypto {
  background: linear-gradient(45deg, #fdcb6e, #e17055);
  color: white;
}

.casino-label.safe {
  background: linear-gradient(45deg, #00b894, #55a3ff);
  color: white;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Casino Logo */
.casino-logo {
  background: rgba(50, 50, 50, 0.8);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  margin-bottom: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.casino-logo:hover {
  background: rgba(70, 70, 70, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.casino-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.1);
  transition: filter 0.3s ease;
}

.casino-logo:hover img {
  filter: brightness(1.3);
}

.casino-header {
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  text-align: center;
}

.casino-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #ffd700;
}

.rating {
  font-size: 1.2rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.trust-score {
  font-size: 1rem;
  color: #28a745;
  font-weight: bold;
  background: rgba(40, 167, 69, 0.1);
  padding: 0.2rem 0.8rem;
  border-radius: 15px;
  display: inline-block;
}

/* Bonus Section */
.bonus-section {
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.5rem;
  border-left: 4px solid #ffd700;
}

.bonus-section h4 {
  color: #ffd700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bonus-highlight {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1rem;
}

.bonus-details {
  color: #c0c0c0;
  font-size: 0.9rem;
  margin: 0;
}

/* Casino Features */
.casino-features {
  margin-bottom: 1.5rem;
}

.feature-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-label {
  color: #ffed4a;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.feature-row span:last-child {
  color: #e0e0e0;
  font-size: 0.9rem;
  text-align: right;
}

/* Casino Badges */
.casino-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.badge {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  padding: 0.3rem 0.6rem;
  border-radius: 15px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.play-btn {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  width: 100%;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.play-btn:hover {
  background: linear-gradient(45deg, #20c997, #28a745);
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

/* Detailed Reviews Section */
.detailed-reviews {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    rgba(15, 52, 96, 0.9) 0%,
    rgba(83, 58, 125, 0.9) 50%,
    rgba(123, 44, 191, 0.9) 100%
  );
}

.detailed-reviews h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffd700;
}

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

.review-card {
  background: linear-gradient(
    135deg,
    rgba(30, 30, 60, 0.9) 0%,
    rgba(60, 60, 120, 0.7) 100%
  );
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

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

.review-header h3 {
  font-size: 1.5rem;
  color: #ffd700;
}

.review-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.review-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.review-content li {
  padding: 0.3rem 0;
  color: #c0c0c0;
  position: relative;
  padding-left: 1.5rem;
}

.review-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.review-btn {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  width: 100%;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.review-btn:hover {
  background: linear-gradient(45deg, #20c997, #28a745);
  transform: scale(1.02);
}

/* Guide Section */
.guide-section {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.9) 0%,
    rgba(22, 33, 62, 0.9) 100%
  );
}

.guide-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffd700;
}

.guide-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.guide-intro p {
  font-size: 1.1rem;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto;
}

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

.guide-item {
  background: linear-gradient(
    135deg,
    rgba(30, 30, 60, 0.9) 0%,
    rgba(60, 60, 120, 0.7) 100%
  );
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.guide-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.guide-icon {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.guide-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ffd700;
  text-align: center;
}

.guide-item ul {
  list-style: none;
}

.guide-item li {
  padding: 0.5rem 0;
  color: #c0c0c0;
  position: relative;
  padding-left: 1.5rem;
}

.guide-item li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: bold;
}

/* Tips Section */
.tips-section {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    rgba(15, 52, 96, 0.9) 0%,
    rgba(83, 58, 125, 0.9) 50%,
    rgba(123, 44, 191, 0.9) 100%
  );
}

.tips-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffd700;
}

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

.tip-card {
  background: linear-gradient(
    135deg,
    rgba(30, 30, 60, 0.9) 0%,
    rgba(60, 60, 120, 0.7) 100%
  );
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

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

.tip-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.tip-card p {
  color: #e0e0e0;
  line-height: 1.6;
}

/* Footer */
footer {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(30, 30, 60, 0.9) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.footer-logo p {
  color: #c0c0c0;
  line-height: 1.6;
}

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

.footer-links ul,
.footer-info ul {
  list-style: none;
}

.footer-links li,
.footer-info li {
  padding: 0.3rem 0;
}

.footer-info a {
  text-decoration: none;
  color: #c0c0c0;
}

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

.footer-links a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-info li {
  color: #c0c0c0;
}

.footer-warnings {
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
  border: 2px solid rgba(255, 215, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.warning-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.warning-item p {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.warning-item strong {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  color: #a0a0a0;
}

/* Animations */
@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

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

  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(30, 30, 60, 0.95) 50%,
      rgba(0, 0, 0, 0.95) 100%
    );
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: right 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(10px);
  }

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

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

  .nav-menu a {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    display: block;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .nav-menu a:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
  }

  .nav-container {
    padding: 0 1rem;
  }

  .hero-section h2 {
    font-size: 2rem;
  }

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

  .casino-card {
    min-height: auto;
  }

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

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

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

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

  .footer-warnings {
    padding: 1rem;
    margin: 1.5rem 0;
  }

  .warning-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

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

  .casino-card,
  .review-card,
  .guide-item,
  .tip-card {
    padding: 1.5rem;
  }

  .casino-card {
    min-height: auto;
  }

  .casino-logo {
    height: 100px;
    padding: 0.8rem;
  }

  .casino-header {
    margin-top: 2rem;
  }

  .casino-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .badge {
    align-self: flex-start;
  }
}
