@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

:root {
  --primary-color: #FFC614;
  --primary-dark: #E0A800;
  --secondary-color: #000000;
  --third-color: #1a1a1a;
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0B0;
  --accent-primary: #E0C352;
  --gradient-1: linear-gradient(135deg, #FFC614 0%, #E0A800 100%);
  --gradient-2: linear-gradient(135deg, rgba(255, 198, 20, 0.1) 0%, rgba(224, 168, 0, 0.05) 100%);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0a0a;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(images/background.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--accent-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Section Layout - Fixed */
section {
  position: relative;
  width: 100%;
  clear: both;
}

section > * {
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

main {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 198, 20, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.navbar .logo img {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar .logo:hover img {
  transform: scale(1.05);
}

.navbar-menu {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: width 0.3s ease;
}

.navbar-menu li a:hover {
  color: var(--primary-color);
}

.navbar-menu li a:hover::after {
  width: 100%;
}

.auth-buttons {
  display: flex;
  gap: 12px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.btn {
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-large {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-login {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-register {
  background: var(--gradient-1);
  color: #000;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 198, 20, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--primary-color);
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-register:hover {
  box-shadow: 0 6px 25px rgba(255, 198, 20, 0.4);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: #000;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 120px 0 100px;
  margin: 0;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 198, 20, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-primary);
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFC614 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h3 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* About Us Section */
.about-us {
  margin: 100px 0;
  position: relative;
  z-index: 1;
  width: 100%;
  clear: both;
}

.about-us-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: stretch;
  width: 100%;
}

.about-us-banner {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 600px;
}

.about-us-banner a {
  display: block;
  width: 100%;
  height: 100%;
}

.about-us-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.about-us-banner:hover::before {
  opacity: 0.1;
}

.about-us-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  border-radius: 20px;
  display: block;
}

.about-us-banner:hover img {
  opacity: 0.95;
}

.about-us-intro {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.about-us-intro h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.about-us-intro p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-us-intro p:last-child {
  margin-bottom: 0;
}

/* Features Section */
.features {
  margin: 100px 0;
  padding: 80px 0;
  background: var(--gradient-2);
  border-radius: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  clear: both;
}

.features::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 198, 20, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  border-color: rgba(255, 198, 20, 0.3);
  box-shadow: 0 15px 40px rgba(255, 198, 20, 0.15);
}

.feature-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 24px;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon {
  opacity: 0.9;
}

.feature-card h4 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

/* Bonus Section */
.bonus {
  margin: 100px 0;
  position: relative;
  z-index: 1;
  width: 100%;
  clear: both;
  overflow: visible;
}

.bonus-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  position: relative;
}

.bonus-details {
  width: 100%;
  order: 1;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
}

.bonus-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.bonus-card:hover {
  border-color: rgba(255, 198, 20, 0.4);
  box-shadow: 0 10px 30px rgba(255, 198, 20, 0.1);
}

.bonus-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.bonus-card h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.bonus-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.bonus-carousel {
  width: 100%;
  position: relative;
  z-index: 1;
  order: 2;
  margin-top: 20px;
  overflow: hidden;
}

.bonus-carousel-track {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  position: relative;
}

.bonus-carousel-track a {
  display: block;
  flex-shrink: 0;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.bonus-carousel img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 16px;
  transition: opacity 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
  position: relative;
}

.bonus-carousel img:hover {
  opacity: 0.9;
}

.bonus-banner {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
  position: relative;
}

.bonus-banner a {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.bonus-banner img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  position: relative;
}

/* Games Section */
.games {
  margin: 100px 0;
  padding: 80px 0;
  background: var(--gradient-2);
  border-radius: 30px;
  position: relative;
  z-index: 1;
  width: 100%;
  clear: both;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  width: 100%;
}

.game-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.game-card:hover {
  border-color: rgba(255, 198, 20, 0.4);
  box-shadow: 0 15px 40px rgba(255, 198, 20, 0.15);
}

.game-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  border-radius: 20px 20px 0 0;
  background: #1a1a1a;
  flex-shrink: 0;
  display: block;
}

.game-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 250px;
  object-fit: cover;
  display: block !important;
  position: relative;
  z-index: 10;
  opacity: 1 !important;
  visibility: visible !important;
  background: transparent;
}

.game-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 11;
  pointer-events: none;
}

.game-card:hover .game-image img {
  opacity: 1 !important;
}

.game-content {
  padding: 30px;
}

.game-content h4 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 700;
}

.game-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

/* How It Works Section */
.how-it-works {
  margin: 100px 0;
  position: relative;
  z-index: 1;
  width: 100%;
  clear: both;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.step-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--glass-border);
}

.step-card:hover {
  border-color: rgba(255, 198, 20, 0.4);
  box-shadow: 0 15px 40px rgba(255, 198, 20, 0.15);
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--gradient-1);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 8px 25px rgba(255, 198, 20, 0.3);
  transition: transform 0.3s ease;
}

.step-card:hover .step-number {
  opacity: 0.9;
}

.step-card h4 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 600;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

/* Download Guide Section */
.download-guide {
  margin: 100px 0;
  padding: 80px 0;
  background: var(--gradient-2);
  border-radius: 30px;
  position: relative;
  z-index: 1;
  width: 100%;
  clear: both;
}

.download-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.download-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 35px;
  border-radius: 16px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--primary-color);
}

.download-step:hover {
  border-left-color: var(--accent-primary);
  box-shadow: 0 10px 30px rgba(255, 198, 20, 0.1);
}

.download-step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: flex-start;
  line-height: 1;
}

.download-step-content h4 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.download-step-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.download-note {
  background: rgba(255, 198, 20, 0.1);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 198, 20, 0.3);
}

.download-note p {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.download-note strong {
  color: var(--primary-color);
}

/* FAQ Section */
.faq {
  margin: 100px 0;
  position: relative;
  z-index: 1;
  width: 100%;
  clear: both;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
}

.faq-item:hover {
  border-color: rgba(255, 198, 20, 0.3);
}

.faq-item.active {
  border-color: var(--primary-color);
  background: rgba(255, 198, 20, 0.05);
}

.faq-item h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0;
  font-weight: 600;
  position: relative;
  padding-right: 40px;
  line-height: 1.5;
}

.faq-item h4::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active h4::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
  opacity: 0;
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  margin-top: 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  padding: 70px 0 30px;
  margin-top: 100px;
  border-top: 1px solid rgba(255, 198, 20, 0.2);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-logo p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-column h5 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary-color);
}

.footer-copy {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 198, 20, 0.1);
}

.footer-copy p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-copy a {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-us-wrapper {
    grid-template-columns: 1fr;
  }
  
  .bonus-grid {
    grid-template-columns: 1fr;
  }
  
  .bonus-carousel-track a {
    max-width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid,
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 24px 40px;
    gap: 30px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .navbar-menu.active {
    transform: translateX(0);
  }

  .auth-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero {
    padding: 80px 0 60px;
    min-height: 70vh;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .features,
  .games,
  .download-guide {
    padding: 60px 0;
  }

  .features-grid,
  .games-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .download-step {
    grid-template-columns: 80px 1fr;
    gap: 20px;
    padding: 28px;
  }

  .download-step-number {
    font-size: 2rem;
  }

  .about-us-intro,
  .feature-card,
  .bonus-card,
  .game-content,
  .step-card {
    padding: 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .about-us-intro,
  .feature-card,
  .bonus-card,
  .game-content,
  .step-card {
    padding: 24px;
  }

  .download-step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .download-step-number {
    font-size: 1.8rem;
  }
}