/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  color: #FFFFFF;
  line-height: 1.5;
  scroll-behavior: smooth;
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #2d2d44;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #FFD700, #FF8C00, #00E676);
  border-radius: 4px;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFD700, #FF8C00, #FFB347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFD700, #FFB347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}

/* Header - золотой акцент */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFD700, #FF8C00, #00E676);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.logo span {
  background: linear-gradient(135deg, #FFFFFF, #FFD700);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: none;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav a {
  color: #B0B3C8;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
  position: relative;
}

.nav a:hover {
  color: #FFD700;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  transition: width 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: #1a1a2e;
  width: 100%;
  margin-top: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: #B0B3C8;
  text-decoration: none;
  padding: 0.75rem;
  transition: all 0.3s;
  border-radius: 0.5rem;
}

.mobile-menu a:hover {
  background: rgba(255, 215, 0, 0.15);
  color: #FFD700;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #1a1a2e;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, #FFE44D, #FFA500);
}

.btn-outline {
  border: 1px solid #FFD700;
  color: #FFD700;
  background: transparent;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  text-align: center;
}

.btn-outline:hover {
  background: rgba(255, 215, 0, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
  border-color: #FFE44D;
}

/* Casino Card - золотой дизайн */
.casino-card {
  background: linear-gradient(135deg, #1e1e3a 0%, #16162e 100%);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 215, 0, 0.25);
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.5s;
}

.casino-card:hover::before {
  left: 100%;
}

.casino-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.casino-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .casino-card-inner {
    flex-direction: row;
    align-items: center;
  }
}

.casino-logo-wrapper {
  flex-shrink: 0;
  text-align: center;
}

.casino-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 0.75rem;
  transition: transform 0.3s;
}

.casino-card:hover .casino-logo {
  transform: scale(1.05);
}

.casino-info {
  flex: 1;
}

.casino-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.casino-name:hover {
  color: #FFD700;
}

.casino-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.rating {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #1a1a2e;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.badge-urgent {
  background: linear-gradient(135deg, #FF416C, #FF4B2B);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: bold;
  animation: pulse 1.5s infinite;
}

.badge-new {
  background: linear-gradient(135deg, #00E676, #00C853);
  color: #1a1a2e;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: bold;
}

.badge-crypto {
  background: linear-gradient(135deg, #FF9500, #FF5E00);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: bold;
}

.badge-vip {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #1a1a2e;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: bold;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
}

.bonus-text {
  background: linear-gradient(135deg, #00E676, #FFD700);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.description {
  color: #B0B3C8;
  font-size: 0.9rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.pros-cons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.pros-cons .pro {
  color: #00E676;
  font-size: 0.75rem;
  background: rgba(0, 230, 118, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.pros-cons .con {
  color: #f87171;
  font-size: 0.75rem;
  background: rgba(248, 113, 113, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 180px;
}

.casino-actions .btn-primary {
  padding: 0.9rem;
  font-size: 1rem;
}

/* Filter Bar - золотой */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.filter-btn {
  background: rgba(30, 30, 58, 0.8);
  backdrop-filter: blur(5px);
  color: #B0B3C8;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.filter-btn:hover {
  background: rgba(255, 215, 0, 0.15);
  color: #FFD700;
  border-color: #FFD700;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #1a1a2e;
  font-weight: bold;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Trust Badges */
.trust-badges {
  background: linear-gradient(135deg, rgba(30, 30, 58, 0.8), rgba(22, 22, 46, 0.8));
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  border: 1px solid rgba(255, 215, 0, 0.25);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #FFFFFF;
}

.trust-badge span:first-child {
  font-size: 1.3rem;
}

/* Featured Casinos Grid */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.featured-card {
  background: linear-gradient(135deg, #1e1e3a 0%, #16162e 100%);
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.featured-card:hover::before {
  opacity: 1;
}

.featured-card:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.featured-card .featured-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 1rem;
  padding: 0.5rem;
}

.featured-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.featured-rating {
  font-size: 1.3rem;
  font-weight: bold;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0.5rem 0;
}

.featured-bonus {
  font-size: 0.85rem;
  color: #00E676;
  margin: 0.5rem 0;
}

.featured-card .btn-primary {
  margin-top: 1rem;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  display: inline-block;
}

/* SEO Text Block */
.seo-block {
  background: linear-gradient(135deg, rgba(30, 30, 58, 0.5), rgba(22, 22, 46, 0.5));
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-top: 3rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.seo-block h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.seo-block p {
  color: #B0B3C8;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0f0f23, #0a0a18);
  border-top: 1px solid rgba(255, 215, 0, 0.25);
  margin-top: 4rem;
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFD700, #FFB347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #B0B3C8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #FFD700;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  color: #B0B3C8;
  font-size: 0.75rem;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #1a1a2e;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  border: none;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #FFE44D, #FFA500);
}

/* Age Warning */
.age-warning {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
  border-left: 4px solid #ef4444;
  padding: 1rem;
  border-radius: 0.75rem;
  margin: 2rem 0;
}

.age-warning p {
  font-weight: bold;
  color: #f87171;
}

/* Bonus Card */
.bonus-card {
  background: linear-gradient(135deg, #1e1e3a, #16162e);
  border-radius: 1.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s;
}

.bonus-card:hover {
  transform: translateY(-3px);
  border-color: #FFD700;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.bonus-card-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.bonus-card-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: rgba(255,255,255,0.05);
  border-radius: 0.75rem;
  padding: 0.5rem;
}

/* Detail Card */
.detail-card {
  background: linear-gradient(135deg, #1e1e3a, #16162e);
  border-radius: 1.25rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.bonus-box {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(0, 230, 118, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 1.25rem;
  padding: 1.5rem;
  text-align: center;
}

/* Contact Form */
.contact-form {
  background: linear-gradient(135deg, #1e1e3a, #16162e);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: #0f0f23;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 0.75rem;
  padding: 0.75rem;
  color: white;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}
/* Исправление шапки - убираем пробел */
.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Hero Offer Card - Большая рекламная карточка */
.hero-offer {
  background: linear-gradient(135deg, #0a0a0f 0%, #111118 100%);
  border: 2px solid #FFD700;
  border-radius: 1.5rem;
  padding: 1.8rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(255, 215, 0, 0.2);
}

.hero-offer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.hero-offer-badge {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0A0A0F;
  font-weight: bold;
  font-size: 0.8rem;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  z-index: 2;
}

.hero-offer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-offer-inner {
    flex-direction: row;
    align-items: center;
  }
}

.hero-offer-logo {
  flex-shrink: 0;
  text-align: center;
}

.hero-offer-logo img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  background: rgba(255,255,255,0.05);
  border-radius: 1rem;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .hero-offer-logo img {
    width: 160px;
    height: 160px;
  }
}

.hero-offer-info {
  flex: 1;
}

.hero-offer-title {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.hero-offer-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.15);
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.hero-offer-bonus {
  font-size: 1.4rem;
  font-weight: bold;
  color: #FFD700;
  margin: 0.5rem 0;
}

.hero-offer-desc {
  color: #B0B3C8;
  margin: 0.5rem 0;
  line-height: 1.5;
}

.hero-offer-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0;
}

.hero-offer-features span {
  font-size: 0.8rem;
  background: rgba(255, 215, 0, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  color: #FFD700;
}

.hero-offer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 260px;
}

/* Timer Styles */
.timer-container {
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
  padding: 0.8rem;
}

.timer-label {
  font-size: 0.7rem;
  color: #FFD700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
}

.timer-block {
  background: #0A0A0F;
  border-radius: 0.5rem;
  padding: 0.5rem 0.3rem;
  min-width: 55px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.timer-block span:first-child {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FFD700;
  display: block;
}

.timer-label-small {
  font-size: 0.5rem;
  color: #B0B3C8;
  display: block;
  margin-top: 0.2rem;
}

.timer-sep {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FFD700;
}

.btn-hero {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0A0A0F;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.hero-urgent {
  font-size: 0.75rem;
  color: #FFD700;
  text-align: center;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Featured Grid */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.featured-card {
  background: #111118;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.featured-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.featured-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.featured-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.featured-rating {
  color: #FFD700;
  margin-bottom: 0.5rem;
}

.featured-bonus {
  font-size: 0.8rem;
  color: #00E676;
  margin-bottom: 1rem;
}