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

body {
  font-family: "Inter", sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header */
.header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #333;
}

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

.nav-brand {
  font-size: 28px;
  font-weight: 800;
}

.logo {
  color: #ffffff;
}

.logo-accent {
  color: #ff6b35;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

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

.nav-link:hover {
  color: #ff6b35;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff6b35;
  transition: width 0.3s ease;
}

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

.nav-actions {
  display: flex;
  gap: 15px;
}

.btn-login {
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #ff6b35;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-login:hover {
  background: #ff6b35;
  transform: translateY(-2px);
}

.btn-register {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(15px);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #333;
}

.mobile-menu-close {
  font-size: 30px;
  color: #ffffff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
}

.mobile-menu-content {
  padding: 30px 20px;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.mobile-nav-actions .btn-login,
.mobile-nav-actions .btn-register {
  text-align: center;
  padding: 15px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-nav-actions .btn-login {
  color: #ffffff;
  border: 2px solid #ff6b35;
  background: transparent;
}

.mobile-nav-actions .btn-login:hover {
  background: #ff6b35;
  transform: translateY(-2px);
}

.mobile-nav-actions .btn-register {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.mobile-nav-actions .btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.mobile-nav-links {
  margin-bottom: 40px;
}

.mobile-nav-link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 0;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: #ff6b35;
  padding-left: 10px;
}

.mobile-menu-bonus {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.mobile-menu-bonus h3 {
  color: #ff6b35;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.mobile-menu-bonus p {
  color: #cccccc;
  line-height: 1.6;
  font-size: 14px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  z-index: 1; /* добавил z-index для правильного порядка слоев */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="10" cy="90" r="1" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight {
  color: #ff6b35;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.hero-description {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 25px;
  line-height: 1.7;
}

.hero-features {
  margin-bottom: 30px;
}

.feature-tag {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  }
  50% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
  }
  100% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  }
}

.hero-image {
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Esports Banner */
.esports-banner {
  padding: 60px 0;
  background: #111111;
  position: relative; /* добавил position relative */
  z-index: 2; /* добавил z-index */
}

.esports-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 3; /* добавил z-index для контента */
}

.esports-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

.esports-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.esports-title {
  font-size: 72px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #ffaa00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-esports {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-esports:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* Bonus Section */
.bonus-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative; /* добавил position relative */
  z-index: 4; /* добавил z-index */
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
}

.section-description {
  font-size: 18px;
  color: #cccccc;
  text-align: center;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.bonus-card {
  background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #444;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.5s ease;
}

.bonus-card:hover::before {
  left: 100%;
}

.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  border-color: #ff6b35;
}

.bonus-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.bonus-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ff6b35;
}

.bonus-card p {
  color: #cccccc;
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn-bonus {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-bonus:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Games Section */
.games-section {
  padding: 80px 0;
  background: #111111;
  position: relative; /* добавил position relative */
  z-index: 5; /* добавил z-index */
}

.games-providers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.provider-logo {
  width: 80px;
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.provider-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

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

.game-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.game-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-img {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.btn-play {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-play:hover {
  transform: scale(1.05);
}

/* Welcome Bonus Section */
.welcome-bonus {
  padding: 80px 0;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  position: relative; /* добавил position relative */
  z-index: 6; /* добавил z-index */
}

.bonus-details {
  margin-top: 50px;
}

.bonus-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  border-left: 4px solid #ff6b35;
}

.bonus-item h3 {
  color: #ff6b35;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.bonus-item p {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Promotions Section */
.promotions-section {
  padding: 80px 0;
  background: #111111;
  position: relative; /* добавил position relative */
  z-index: 7; /* добавил z-index */
}

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

.promo-card {
  height: 200px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.promo-card.red {
  background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
}

.promo-card.blue {
  background: linear-gradient(135deg, #3742fa 0%, #2f3542 100%);
}

.promo-card.purple {
  background: linear-gradient(135deg, #5f27cd 0%, #341f97 100%);
}

.promo-card.green {
  background: linear-gradient(135deg, #00d2d3 0%, #54a0ff 100%);
}

.promo-card.orange {
  background: linear-gradient(135deg, #ff9ff3 0%, #f368e0 100%);
}

.promo-card.dark-purple {
  background: linear-gradient(135deg, #8c7ae6 0%, #9c88ff 100%);
}

.promo-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.promo-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.promo-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  font-size: 14px;
}

.btn-promo {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-promo:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative; /* добавил position relative */
  z-index: 8; /* добавил z-index */
}

.features-list {
  margin-top: 50px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 30px;
  border-left: 4px solid #ff6b35;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.08);
}

.feature-item h3 {
  color: #ff6b35;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.feature-item p {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 16px;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  text-align: center;
  position: relative; /* добавил position relative */
  z-index: 9; /* добавил z-index */
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
  background: #ffffff;
  color: #ff6b35;
  text-decoration: none;
  padding: 20px 50px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background: #0a0a0a;
  padding: 60px 0 30px;
  border-top: 1px solid #333;
  position: relative; /* добавил position relative */
  z-index: 10; /* добавил z-index */
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: #cccccc;
  margin-top: 15px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  color: #ff6b35;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-column a {
  color: #cccccc;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ff6b35;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  color: #888888;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu,
  .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .esports-title {
    font-size: 48px;
  }

  .section-title {
    font-size: 28px;
  }

  .bonus-grid,
  .games-grid,
  .promotions-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-content h2 {
    font-size: 36px;
  }

  .games-providers {
    gap: 20px;
  }

  .provider-logo {
    width: 60px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 16px;
  }

  .btn-primary {
    padding: 15px 30px;
    font-size: 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .bonus-card,
  .feature-item {
    padding: 25px 20px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .btn-cta {
    padding: 15px 35px;
    font-size: 16px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #ff6b35;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff8c42;
}

.article-header {
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .article-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
            animation: float 20s linear infinite;
        }

        @keyframes float {
            0% { transform: rotate(0deg) translate(-50%, -50%); }
            100% { transform: rotate(360deg) translate(-50%, -50%); }
        }

        .article-header h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .bonus-highlight {
            background: rgba(255,255,255,0.2);
            padding: 15px 25px;
            border-radius: 50px;
            display: inline-block;
            font-size: 1.2rem;
            font-weight: bold;
            margin-top: 10px;
            position: relative;
            z-index: 1;
        }

        .content-wrapper {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }

        h2 {
            color: #2c3e50;
            font-size: 1.8rem;
            margin: 30px 0 20px 0;
            padding-bottom: 10px;
            border-bottom: 3px solid #ff6b6b;
            position: relative;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 50px;
            height: 3px;
            background: #ee5a24;
        }

        h3 {
            color: #34495e;
            font-size: 1.3rem;
            margin: 25px 0 15px 0;
            display: flex;
            align-items: center;
        }

        h3::before {
            content: '▶';
            color: #ff6b6b;
            margin-right: 10px;
            font-size: 1rem;
        }

        .example-box {
            background: linear-gradient(135deg, #74b9ff, #0984e3);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin: 20px 0;
            box-shadow: 0 10px 30px rgba(116, 185, 255, 0.3);
        }

        .example-box h4 {
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .example-list {
            list-style: none;
            padding-left: 0;
        }

        .example-list li {
            margin: 8px 0;
            padding-left: 20px;
            position: relative;
        }

        .example-list li::before {
            content: '💰';
            position: absolute;
            left: 0;
            top: 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }

        .feature-card {
            background: linear-gradient(135deg, #00b894, #00a085);
            color: white;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease;
            box-shadow: 0 10px 25px rgba(0, 184, 148, 0.2);
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-card h4 {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .steps-container {
            counter-reset: step-counter;
        }

        .step {
            counter-increment: step-counter;
            background: #f8f9fa;
            margin: 20px 0;
            padding: 20px;
            border-radius: 15px;
            border-left: 5px solid #ff6b6b;
            position: relative;
            transition: all 0.3s ease;
        }

        .step:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }

        .step::before {
            content: counter(step-counter);
            position: absolute;
            left: -15px;
            top: 20px;
            background: #ff6b6b;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
        }

        .step h4 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .alert-box {
            background: linear-gradient(135deg, #fdcb6e, #e17055);
            color: white;
            padding: 20px;
            border-radius: 15px;
            margin: 20px 0;
            box-shadow: 0 10px 25px rgba(253, 203, 110, 0.3);
        }

        .alert-box::before {
            content: '⚠️';
            font-size: 1.5rem;
            margin-right: 10px;
        }

        .tips-box {
            background: linear-gradient(135deg, #a29bfe, #6c5ce7);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin: 20px 0;
            box-shadow: 0 15px 35px rgba(162, 155, 254, 0.3);
        }

        .tips-list {
            list-style: none;
            padding: 0;
        }

        .tips-list li {
            margin: 12px 0;
            padding-left: 25px;
            position: relative;
        }

        .tips-list li::before {
            content: '💡';
            position: absolute;
            left: 0;
            top: 0;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-radius: 15px;
            overflow: hidden;
        }

        .comparison-table th {
            background: linear-gradient(135deg, #2d3436, #636e72);
            color: white;
            padding: 15px;
            text-align: left;
        }

        .comparison-table td {
            padding: 15px;
            border-bottom: 1px solid #ddd;
        }

        .comparison-table tr:nth-child(even) {
            background: #f8f9fa;
        }

        .comparison-table tr:hover {
            background: #e9ecef;
        }

        .highlight-stat {
            background: linear-gradient(135deg, #ff7675, #d63031);
            color: white;
            padding: 15px 20px;
            border-radius: 10px;
            text-align: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin: 15px 0;
            box-shadow: 0 8px 20px rgba(255, 118, 117, 0.3);
        }

        .conclusion {
            background: linear-gradient(135deg, #55a3ff, #003d82);
            color: white;
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            margin-top: 30px;
            box-shadow: 0 15px 40px rgba(85, 163, 255, 0.3);
        }

        .responsible-gaming {
            background: linear-gradient(135deg, #fd79a8, #e84393);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin: 20px 0;
            text-align: center;
            font-weight: bold;
            box-shadow: 0 12px 30px rgba(253, 121, 168, 0.3);
        }

        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }

            .content-wrapper {
                padding: 20px;
            }

            .article-header h1 {
                font-size: 2rem;
            }

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

        ul, ol {
            margin: 15px 0;
            padding-left: 20px;
        }

        li {
            margin: 8px 0;
        }

        p {
            margin: 15px 0;
            text-align: justify;
        }

        strong {
            color: #2c3e50;
            font-weight: 600;
        }