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

main {
  background-color: #0f0d1b;
  font-family: Montserrat, sans-serif;
  color: #e6e6e6;
  line-height: 1.6;
  min-height: 100vh;
}

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

/* Header Styles */
.header {
  background: #0f0d1b;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(1, 254, 197, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 20px;
}

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

.nav {
  display: flex;
  gap: 2rem;
}

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

.nav-link:hover {
  color: #01fec5;
}

.cta-button {
  background: #01fec5;
  color: #141423 !important;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Main Content */
.main {
  padding: 1rem 0;
}

.hero {
  text-align: left;
  /* margin-bottom: 2rem; */
  max-width: 800px;
}

.hero-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #e6e6e6;
  line-height: 1.2;
}

.hero-description {
  font-size: 14px;
  color: #b8c5d6;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.trophy-icon {
  font-size: 2rem;
  margin: 2rem 0;
  text-align: left;
}

/* Casino Cards */
.casinos {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.casino-card {
  background-color: #141423;
  padding: 12px;
  border-radius: 5px;
  display: block;
  position: relative;

  transition: all 0.3s ease;
}

.casino-card:first-child {
  border: 1px solid #0afdc552;
  box-shadow: 0px 0px 43px -25px #0afdc5;
}

.casino-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: #01fec5;
}

.casino-rank {
  background-color: #01fec5;
  border-radius: 50%;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  right: -7px;
  width: 28px;
  line-height: 28px;
  height: 28px;
  font-weight: 700;
  font-size: 12px;
  color: #141423 !important;
  text-align: center;
}

.trophy-emoji {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  font-size: 24px;
  z-index: 10;
}

.casino-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.casino-logo {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.vegas-hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
}

.vegas {
  color: #ff6b6b;
}

.hero-text {
  color: #4ecdc4;
}

.magius-logo {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.chancer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffd700;
}

.chancer-icon {
  font-size: 1.5rem;
}

.trueluck-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 900;
  color: #01fec5;
}

.luck-icon {
  font-size: 1.5rem;
}

.casino-info {
  flex: 1;
}

.casino-bonus h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #e6e6e6;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.payment-methods {
  margin-top: 1rem;
}

.payment {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 3px;
  background-color: white;
}

.payment img {
  width: 30px;
  height: 15px;
  object-fit: contain;
  margin: 3px;
}

/* Mobile utility classes */
@media (max-width: 768px) {
  .payment img {
    width: 25px;
    height: 13px;
    object-fit: contain;
    margin: 3px;
    position: relative;
    top: -1px;
  }
  .payment {
    padding: 0px 5px !important;
  }

  .d-none.d-md-block {
    display: none !important;
  }

  .d-block.d-md-none {
    display: flex !important;
  }
}

@media (min-width: 769px) {
  .d-none.d-md-block {
    display: flex !important;
  }

  .d-block.d-md-none {
    display: none !important;
  }
}

.casino-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-right: 1rem;
  min-width: 150px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #b8c5d6;
}

.casino-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #e6e6e6;
  font-size: 9px;
  white-space: nowrap;
  background-color: #2b2b48;
  padding: 2px 7px;
  border-radius: 5px;
  margin: 3px 1px;
}

.check {
  color: #01fec5;
  font-weight: 700;
  width: 16px;
  height: 16px;
  background: rgba(1, 254, 197, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.play-button {
  background: #01fec5;
  color: #141423 !important;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  margin-top: 5px;
}

.play-button:hover {
  background: #01fec5;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .casino-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .casino-card {
    flex-direction: column;
    align-items: stretch;
  }

  .casino-features {
    align-items: center;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .hero-description {
    display: none;
  }

  .nav {
    display: none;
  }

  .header .container {
    justify-content: space-between;
  }

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

  .casino-card {
    padding: 1rem;
    /* border: 1px solid #01fec5; */
    border-radius: 15px;
  }

  .casino-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
  }

  .casino-logo-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .casino-logo {
    width: 80px;
    flex-shrink: 0;
  }

  .casino-info {
    flex: 1;
    text-align: left;
  }

  .casino-bonus h3 {
    font-size: 13px !important;
    color: #e6e6e6;
    margin-bottom: 0;
    line-height: 1.3;
    text-transform: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    white-space: normal;
    overflow: hidden;
  }

  .casino-features {
    order: 1;
    flex-direction: row;
    justify-content: center;
    gap: 0rem;
    /* margin: 1rem 0; */
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    place-items: center;
    max-width: 280px;
    /* margin: 1rem auto; */
  }

  .feature:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .feature {
    background: rgba(1, 254, 197, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(1, 254, 197, 0.3);
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .payment {
    justify-content: center;
    padding: 8px;
    border-radius: 10px;
    margin: 1rem 0;
    order: 2;
  }

  .play-button {
    order: 4;
    width: 100%;
    /* padding: 15px 24px; */
    font-size: 14px;
    border-radius: 10px;
    /* margin-top: 1rem; */
  }

  .casino-rank {
    background: #01fec5;
    color: #141423 !important;
    font-weight: 900;
    font-size: 14px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    top: -5px;
    right: -5px;
    top: 5px;
    right: -5px;
    width: 25px;
    line-height: 25px;
    height: 25px;
    font-weight: 600;
    font-size: 10px;
  }

  .trophy-emoji {
    font-size: 28px;
    top: -15px;
    left: -15px;
  }
}

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

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

  .hero-description {
    font-size: 0.9rem;
  }

  .casino-content {
    gap: 0rem;
  }
}
a{
  text-decoration: none;
  text-decoration-color: transparent;
}
