/* GLOBAL STYLES */
:root {
  --primary-color: #f8b700;
  --primary-dark: #c08d00;
  --secondary-color: #522e92;
  --dark-bg: #0f0e1a;
  --dark-bg-2: #1a1830;
  --dark-bg-3: #252042;
  --text-color: #ffffff;
  --text-muted: #a2a0b3;
  --card-bg: rgba(26, 24, 48, 0.7);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  --border-glow: 0 0 10px rgba(248, 183, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-attachment: fixed;
}

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

a {
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
  font-weight: 700;
  background: linear-gradient(to right, #f8b700, #f5d67d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.highlight {
  color: var(--primary-color);
  font-weight: 700;
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #000;
  box-shadow: 0 4px 15px rgba(248, 183, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(248, 183, 0, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--text-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(248, 183, 0, 0.1);
}

.btn-secondary:hover {
  background: rgba(248, 183, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(248, 183, 0, 0.3);
}

/* HEADER & NAVIGATION */
header {
  background-color: rgba(15, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

header.scrolled {
  padding: 0;
  background-color: rgba(15, 14, 26, 0.98);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(248, 183, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(248, 183, 0, 0.8);
}

.logo .logo-text-wrapper {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(to right, #ffffff, #a2a0b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.logo .logo-text-wrapper span {
  background: linear-gradient(to right, var(--primary-color), #f5d67d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

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

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* Media Query for Responsive Navigation */
@media screen and (max-width: 1150px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(15, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    z-index: 100;
    text-align: center;
    gap: 1rem;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li a {
    padding: 12px 0;
    display: block;
    font-size: 1.1rem;
  }
  
  .menu-toggle {
    display: block;
  }
}

/* HERO SECTION */
.hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(rgba(15, 14, 26, 0.9), rgba(15, 14, 26, 0.95)), url('0073_1_a-photo-of-a-very-sexy-asian-woman-with-_8iS1_0kER2uwjp7iQDkCRQ_bpZ6_FCUTUaEZSaYtiXzqQ.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to top, var(--dark-bg), transparent);
  z-index: 2;
}

.hero .container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.hero-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image {
  flex: 1;
  transform: perspective(1000px) rotateY(-5deg);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  border: 1px solid rgba(248, 183, 0, 0.3);
  overflow: hidden;
  transition: var(--transition);
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0);
  box-shadow: var(--border-glow);
}

/* JUMBO INTRO SECTION */
.jumbo-intro {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(135deg, #1c1236 0%, #2a1b4a 100%);
  overflow: hidden;
}

.jumbo-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(248, 183, 0, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.jumbo-intro::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 46, 146, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.jumbo-intro .container {
  position: relative;
  z-index: 2;
}

.jumbo-content {
  max-width: 1100px;
  margin: 0 auto;
}

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

.jumbo-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.jumbo-text p:last-child {
  margin-bottom: 0;
}

.jumbo-text strong {
  color: var(--primary-color);
  font-weight: 600;
}

.jumbo-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.jumbo-feature-card {
  background: rgba(15, 14, 26, 0.6);
  border-radius: var(--border-radius);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: var(--transition);
  border: 1px solid rgba(82, 46, 146, 0.2);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

.jumbo-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  transition: height 0.4s ease;
}

.jumbo-feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(248, 183, 0, 0.3);
  box-shadow: var(--border-glow);
  background: rgba(26, 24, 48, 0.8);
}

.jumbo-feature-card:hover::before {
  height: 100%;
}

.feature-icon-wrap {
  flex: 0 0 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(82, 46, 146, 0.8) 0%, rgba(42, 23, 77, 0.8) 100%);
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.feature-icon-wrap::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 1px solid rgba(248, 183, 0, 0.3);
  opacity: 0;
  transition: var(--transition);
}

.jumbo-feature-card:hover .feature-icon-wrap::after {
  opacity: 1;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.feature-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.jumbo-conclusion {
  background: rgba(15, 14, 26, 0.6);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  position: relative;
  border: 1px solid rgba(82, 46, 146, 0.2);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.jumbo-conclusion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 183, 0, 0.05) 0%, transparent 100%);
  z-index: -1;
}

.jumbo-conclusion p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.jumbo-conclusion strong {
  color: var(--primary-color);
  font-weight: 600;
}

.jumbo-action {
  text-align: center;
  margin-top: 2.5rem;
}

.jumbo-action .btn-primary {
  padding: 14px 30px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  box-shadow: 0 5px 20px rgba(248, 183, 0, 0.3);
  border-radius: 30px;
}

.jumbo-action .btn-primary:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 25px rgba(248, 183, 0, 0.5);
}

/* FEATURES SECTION */
.features {
  padding: 5rem 0;
  background-color: var(--dark-bg-2);
  position: relative;
}

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

.feature-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(248, 183, 0, 0.3);
  box-shadow: var(--border-glow);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
}

/* GAMES SECTION */
.games {
  padding: 5rem 0;
  position: relative;
}

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

.game-category {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.game-category:hover {
  transform: translateY(-10px);
  border-color: rgba(248, 183, 0, 0.3);
  box-shadow: var(--border-glow);
}

.game-category img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.game-category h3 {
  font-size: 1.5rem;
  padding: 1.5rem 1.5rem 0.5rem;
}

.game-category p {
  color: var(--text-muted);
  padding: 0 1.5rem 1.5rem;
}

/* ABOUT SECTION */
.about {
  padding: 5rem 0;
  background-color: var(--dark-bg-2);
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 2rem;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, var(--primary-color), #f5d67d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.stat-text {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* CONTACT SECTION */
.contact {
  padding: 5rem 0;
}

.contact-grid {
  display: flex;
  justify-content: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 500px;
  width: 100%;
  border: 1px solid rgba(248, 183, 0, 0.1);
}

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

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--dark-bg-3);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-color);
  color: #000;
  transform: translateY(-5px);
}

/* FOOTER */
footer {
  background-color: var(--dark-bg-3);
  padding: 5rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo .logo-icon {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}

.footer-logo:hover .logo-icon {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(248, 183, 0, 0.8);
}

.footer-logo h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #ffffff, #a2a0b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.footer-logo h2 span {
  background: linear-gradient(to right, var(--primary-color), #f5d67d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.footer-logo p {
  color: var(--text-muted);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 1.5px;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(162, 160, 179, 0.1);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
  color: var(--text-muted);
}

/* STICKY BUTTONS */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(15, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
  flex: 1;
  padding: 12px;
  text-align: center;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sticky-btn i {
  font-size: 1.1rem;
}

.login-btn {
  background: linear-gradient(135deg, #444, #333);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-btn:hover {
  background: linear-gradient(135deg, #555, #444);
  transform: translateY(-3px);
}

.register-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #000;
}

.register-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(248, 183, 0, 0.4);
}

.credit-btn {
  background: linear-gradient(135deg, var(--secondary-color), #3a215e);
}

.credit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(82, 46, 146, 0.4);
}

/* Improved responsive design for sticky buttons */
@media (max-width: 992px) {
  .sticky-buttons {
    padding: 0.9rem 1rem;
    gap: 0.9rem;
  }

  .sticky-btn {
    max-width: none;
    padding: 12px 10px;
  }
}

@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0.8rem;
    gap: 0.8rem;
  }
  
  .sticky-btn {
    padding: 10px 8px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .sticky-buttons {
    padding: 0.6rem;
    gap: 0.6rem;
  }
  
  .sticky-btn {
    padding: 8px 5px;
    font-size: 0.85rem;
    border-radius: 6px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
}

@media (max-width: 420px) {
  .sticky-buttons {
    gap: 0.4rem;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.75rem;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .jumbo-features {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--dark-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: 0.5s;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .sticky-btn {
    font-size: 0.9rem;
    padding: 10px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .jumbo-feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  
  .jumbo-feature-card::before {
    width: 0;
    height: 4px;
    top: auto;
    bottom: 0;
    transition: width 0.4s ease;
  }
  
  .jumbo-feature-card:hover::before {
    width: 100%;
    height: 4px;
  }
  
  .feature-content h3 {
    margin-top: 1rem;
  }
  
  .jumbo-conclusion {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .stat-item {
    flex: 100%;
  }
  
  .sticky-btn {
    font-size: 0.8rem;
    padding: 8px;
  }
}

/* SLOT EXPERIENCE SECTION */
.slot-experience {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(145deg, #0c0b16 0%, #1e1238 100%);
  overflow: hidden;
}

.slot-experience::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 46, 146, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.slot-experience::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 183, 0, 0.05) 0%, transparent 70%);
  z-index: 1;
}

.experience-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.experience-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.slot-decoration {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: -1rem;
}

.slot-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 1.8rem;
  color: var(--primary-color);
  background: linear-gradient(135deg, rgba(15, 14, 26, 0.8) 0%, rgba(26, 24, 48, 0.8) 100%);
  border-radius: 50%;
  border: 2px solid rgba(248, 183, 0, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(248, 183, 0, 0.2);
  position: relative;
  z-index: 1;
  animation: pulse 3s infinite alternate;
}

.slot-symbol:nth-child(2) {
  animation-delay: 0.5s;
}

.slot-symbol:nth-child(3) {
  animation-delay: 1s;
}

@keyframes pulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(248, 183, 0, 0.2);
  }
  100% {
    transform: translateY(-10px);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(248, 183, 0, 0.4);
  }
}

.experience-content {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.experience-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.experience-right {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.exp-paragraph p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.exp-paragraph p:last-child {
  margin-bottom: 0;
}

.exp-paragraph strong {
  color: var(--primary-color);
  font-weight: 600;
}

.exp-feature-box {
  display: flex;
  gap: 1.5rem;
  background: rgba(30, 18, 56, 0.6);
  border-radius: var(--border-radius);
  padding: 2rem;
  position: relative;
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.exp-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  background: rgba(37, 23, 65, 0.7);
}

.exp-feature-icon {
  flex: 0 0 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 20px;
  font-size: 2rem;
  color: #000;
  box-shadow: 0 5px 15px rgba(248, 183, 0, 0.3);
  position: relative;
  aspect-ratio: 1/1;
}

.exp-feature-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  width: 15px;
  height: 15px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  filter: blur(2px);
}

.exp-feature-text {
  flex: 1;
}

.exp-feature-text h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.exp-feature-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.slot-preview-card {
  background: linear-gradient(145deg, rgba(15, 14, 26, 0.8) 0%, rgba(30, 18, 56, 0.8) 100%);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(82, 46, 146, 0.3);
  transition: var(--transition);
}

.slot-preview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(248, 183, 0, 0.3);
}

.preview-header {
  padding: 1.5rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(82, 46, 146, 0.3);
}

.preview-label {
  position: absolute;
  top: 0;
  right: 1.5rem;
  background: var(--primary-color);
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 3px 10px rgba(248, 183, 0, 0.3);
}

.preview-header h3 {
  font-size: 1.3rem;
  color: var(--text-color);
}

.preview-image {
  position: relative;
  overflow: hidden;
}

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

.slot-preview-card:hover .preview-image img {
  transform: scale(1.05);
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 14, 26, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slot-preview-card:hover .preview-overlay {
  opacity: 1;
}

.play-button {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
  box-shadow: 0 0 20px rgba(248, 183, 0, 0.5);
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.slot-preview-card:hover .play-button {
  transform: scale(1);
}

.preview-providers {
  padding: 1.5rem;
}

.preview-providers p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.exp-highlight-box {
  display: flex;
  gap: 1.5rem;
  background: linear-gradient(145deg, rgba(82, 46, 146, 0.2) 0%, rgba(30, 18, 56, 0.2) 100%);
  border-radius: var(--border-radius);
  padding: 2rem;
  position: relative;
  border: 1px solid rgba(82, 46, 146, 0.3);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.exp-highlight-box:hover {
  transform: translateY(-5px);
  border-color: rgba(82, 46, 146, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.highlight-icon {
  flex: 0 0 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary-color), #3a215e);
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--text-color);
  box-shadow: 0 5px 15px rgba(82, 46, 146, 0.3);
  aspect-ratio: 1/1;
}

.highlight-content {
  flex: 1;
}

.highlight-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.highlight-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.experience-footer {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.jackpot-box {
  display: flex;
  gap: 2rem;
  background: linear-gradient(145deg, rgba(248, 183, 0, 0.15) 0%, rgba(15, 14, 26, 0.15) 100%);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  width: 100%;
  max-width: 900px;
  position: relative;
  border: 1px solid rgba(248, 183, 0, 0.2);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.jackpot-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(248, 183, 0, 0.1);
  border-color: rgba(248, 183, 0, 0.3);
}

.jackpot-icon {
  flex: 0 0 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 25px;
  font-size: 2.5rem;
  color: #000;
  box-shadow: 0 5px 15px rgba(248, 183, 0, 0.4);
  position: relative;
  z-index: 1;
  aspect-ratio: 1/1;
}

.jackpot-icon::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, rgba(248, 183, 0, 0.2), rgba(248, 183, 0, 0.05));
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.jackpot-box:hover .jackpot-icon::after {
  opacity: 1;
}

.jackpot-content {
  flex: 1;
}

.jackpot-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.jackpot-content h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 1.5px;
}

.jackpot-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.conclusion-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-text strong {
  color: var(--primary-color);
  font-weight: 600;
}

.experience-cta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.experience-cta .btn-primary,
.experience-cta .btn-secondary {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 14px 28px;
  font-size: 1.1rem;
}

.experience-cta .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 30px;
}

.experience-cta .btn-secondary {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--text-color);
  border-radius: 30px;
}

.experience-cta .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(248, 183, 0, 0.3);
}

.experience-cta .btn-secondary:hover {
  background: rgba(82, 46, 146, 0.1);
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

@media (max-width: 992px) {
  .experience-content {
    flex-direction: column;
  }
  
  .jackpot-box {
    padding: 2rem;
  }
  
  .experience-cta {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
  }
  
  .experience-cta .btn-primary,
  .experience-cta .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .slot-decoration {
    gap: 1.5rem;
  }
  
  .slot-symbol {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .exp-feature-box,
  .exp-highlight-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .jackpot-box {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  
  .jackpot-content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .slot-decoration {
    gap: 1rem;
  }
  
  .slot-symbol {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .exp-feature-icon,
  .highlight-icon {
    aspect-ratio: 1/1;
    font-size: 1.5rem;
  }
  
  .exp-feature-box,
  .exp-highlight-box,
  .jackpot-box {
    padding: 1.5rem;
  }
  
  .jackpot-icon {
    font-size: 2rem;
  }
}

/* SLOT POPULARITY SECTION */
.slot-popularity {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(125deg, #141030 0%, #281743 100%);
  overflow: hidden;
}

.slot-popularity::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 75% 25%, rgba(82, 46, 146, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 25% 75%, rgba(248, 183, 0, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.popularity-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.popularity-intro {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.popularity-intro p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.popularity-intro strong,
.reason-content strong {
  color: var(--primary-color);
  font-weight: 600;
}

.reasons-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.reason-card {
  position: relative;
  background: rgba(20, 16, 48, 0.6);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(82, 46, 146, 0.3);
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.reason-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  background: rgba(30, 18, 56, 0.7);
  border-color: rgba(248, 183, 0, 0.2);
}

.reason-card:hover::before {
  opacity: 1;
}

.reason-number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: #000;
  font-size: 1.3rem;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 5px 15px rgba(248, 183, 0, 0.3);
}

.reason-content {
  padding-top: 2rem;
  flex: 1;
}

.reason-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--text-color);
  padding-left: 2.5rem;
}

.reason-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.reason-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.8rem;
  color: var(--primary-color);
  opacity: 0.7;
  transition: var(--transition);
}

.reason-card:hover .reason-icon {
  opacity: 1;
  transform: scale(1.2);
}

.central-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  position: relative;
  width: 350px;
  height: 250px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  border: 2px solid rgba(82, 46, 146, 0.4);
  transform: perspective(800px) rotateY(10deg);
}

.image-container:hover {
  transform: perspective(800px) rotateY(0);
  border-color: rgba(248, 183, 0, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(248, 183, 0, 0.2);
}

.slot-machine-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-container:hover .slot-machine-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(20, 16, 48, 0.2), rgba(20, 16, 48, 0.6));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.pulsating-circle {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(248, 183, 0, 0.1);
  animation: pulse-ring 3s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 0.1;
  }
}

.overlay-text {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-color);
  text-shadow: 0 0 10px rgba(248, 183, 0, 0.5);
  position: relative;
  z-index: 3;
  background: linear-gradient(to right, #ffffff, var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.reason-card-wide {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
  max-width: 900px;
  padding: 3rem;
  position: relative;
  background: linear-gradient(135deg, rgba(82, 46, 146, 0.2) 0%, rgba(15, 14, 26, 0.2) 100%);
}

.reason-card-wide .reason-number {
  position: relative;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  font-size: 1.8rem;
  margin-right: 1rem;
}

.reason-card-wide .reason-content {
  padding-top: 0;
  flex: 1;
}

.reason-card-wide .reason-content h3 {
  padding-left: 0;
  font-size: 1.6rem;
}

.reason-card-wide .reason-icon {
  position: relative;
  top: 0;
  right: 0;
  font-size: 3rem;
  opacity: 0.9;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.popularity-conclusion {
  margin: 4rem auto 0;
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 2rem;
  background: rgba(15, 14, 26, 0.4);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(82, 46, 146, 0.2);
}

.popularity-conclusion p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.popularity-conclusion strong {
  color: var(--primary-color);
  font-weight: 600;
}

.popularity-buttons {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.gradient-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #000;
  box-shadow: 0 5px 20px rgba(82, 46, 146, 0.3), 0 0 10px rgba(248, 183, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.gradient-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.gradient-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(82, 46, 146, 0.4), 0 0 15px rgba(248, 183, 0, 0.4);
}

.gradient-btn:hover::before {
  opacity: 1;
}

@media (max-width: 992px) {
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .reason-card-wide {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem;
  }
  
  .reason-card-wide .reason-number {
    margin-bottom: 1.5rem;
  }
  
  .reason-card-wide .reason-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
  }
  
  .image-container {
    width: 300px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .reason-content h3 {
    font-size: 1.3rem;
  }
  
  .reason-card-wide .reason-content h3 {
    font-size: 1.4rem;
  }
  
  .popularity-intro p,
  .popularity-conclusion p {
    font-size: 1rem;
  }
  
  .overlay-text {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .reason-number {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }
  
  .reason-card {
    padding: 2rem;
  }
  
  .reason-content h3 {
    font-size: 1.2rem;
    padding-left: 2rem;
  }
  
  .reason-icon {
    font-size: 1.5rem;
  }
  
  .gradient-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .image-container {
    width: 260px;
    height: 180px;
  }
  
  .overlay-text {
    font-size: 1.8rem;
  }
}

/* DEMO SLOT SECTION */
.demo-slot {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(to bottom, #1a1236 0%, #0d0a1c 100%);
  overflow: hidden;
}

.demo-slot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(82, 46, 146, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(248, 183, 0, 0.08) 0%, transparent 45%);
  z-index: 1;
}

.demo-slot-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.demo-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.demo-intro {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(26, 18, 54, 0.4);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-bottom: 3px solid var(--primary-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.demo-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.demo-intro p:last-child {
  margin-bottom: 0;
}

.demo-intro strong,
.demo-benefits strong,
.instruction-step strong,
.demo-conclusion strong {
  color: var(--primary-color);
  font-weight: 600;
}

.demo-main-content {
  display: flex;
  margin-bottom: 4rem;
  gap: 2.5rem;
}

.demo-interactive {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.demo-machine {
  width: 100%;
  max-width: 450px;
  background: linear-gradient(145deg, #111, #1d1433);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(248, 183, 0, 0.1);
  border: 1px solid rgba(82, 46, 146, 0.3);
  padding: 15px;
  transition: var(--transition);
}

.demo-machine:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(248, 183, 0, 0.15);
}

.slot-screen {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.slot-screen-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.demo-machine:hover .slot-screen-img {
  transform: scale(1.05);
}

.slot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 14, 26, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.demo-machine:hover .slot-overlay {
  opacity: 1;
}

.play-now-btn {
  background: var(--primary-color);
  color: #000;
  padding: 12px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-machine:hover .play-now-btn {
  transform: translateY(0);
}

.play-now-btn:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.play-now-btn i {
  font-size: 1.3rem;
}

.slot-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.control-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1d1433, #111);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.2rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(82, 46, 146, 0.3);
}

.control-btn.main-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
  color: #000;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(248, 183, 0, 0.3);
}

.control-btn:hover {
  transform: translateY(-5px);
}

.control-btn.main-btn:hover {
  box-shadow: 0 8px 20px rgba(248, 183, 0, 0.4);
}

.provider-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 1.5rem;
}

.provider-tag {
  padding: 8px 15px;
  background: linear-gradient(145deg, #1d1433, #0f0c1e);
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(248, 183, 0, 0.1);
  transition: var(--transition);
}

.provider-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(248, 183, 0, 0.2);
  background: linear-gradient(145deg, #231a3f, #14102a);
}

.demo-benefits {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.benefits-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  position: relative;
  padding-bottom: 0.8rem;
}

.benefits-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 1.5px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  background: rgba(26, 18, 54, 0.4);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.benefit-item:hover {
  transform: translateX(10px);
  background: rgba(30, 21, 61, 0.5);
  border-left-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  flex: 0 0 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary-color), #3a215e);
  border-radius: 12px;
  font-size: 1.5rem;
  color: var(--text-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  aspect-ratio: 1/1;
}

.benefit-item:hover .benefit-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #000;
  transform: rotate(10deg);
}

.benefit-text {
  flex: 1;
}

.benefit-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  color: var(--text-color);
}

.benefit-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.demo-footer {
  max-width: 900px;
  margin: 0 auto;
}

.demo-instruction {
  background: linear-gradient(145deg, rgba(40, 30, 80, 0.2) 0%, rgba(15, 12, 27, 0.2) 100%);
  border-radius: var(--border-radius);
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.demo-instruction::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  border-radius: 0 0 5px 5px;
}

.instruction-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.instruction-step:last-child {
  margin-bottom: 0;
}

.instruction-step::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 25px;
  width: 2px;
  height: calc(100% - 50px);
  background: linear-gradient(to bottom, var(--primary-color), rgba(82, 46, 146, 0.1));
  display: none;
}

.instruction-step:not(:last-child)::after {
  display: block;
}

.step-number {
  flex: 0 0 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(248, 183, 0, 0.3);
  position: relative;
  z-index: 2;
}

.step-text {
  flex: 1;
}

.step-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  color: var(--text-color);
}

.step-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.demo-conclusion {
  text-align: center;
  background: rgba(15, 12, 27, 0.4);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.demo-conclusion::before,
.demo-conclusion::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  z-index: -1;
}

.demo-conclusion::before {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(82, 46, 146, 0.1) 0%, transparent 70%);
}

.demo-conclusion::after {
  bottom: -120px;
  right: -120px;
  background: radial-gradient(circle, rgba(248, 183, 0, 0.05) 0%, transparent 70%);
}

.demo-conclusion p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.demo-cta {
  display: flex;
  justify-content: center;
}

.start-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 35px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(248, 183, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.start-demo-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.start-demo-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(248, 183, 0, 0.4);
}

.start-demo-btn:hover::before {
  opacity: 1;
}

.start-demo-btn:hover .btn-text {
  transform: translateX(-5px);
}

.start-demo-btn:hover i {
  transform: translateX(5px);
}

.start-demo-btn .btn-text,
.start-demo-btn i {
  transition: transform 0.4s ease;
}

@media (max-width: 992px) {
  .demo-main-content {
    flex-direction: column;
  }
  
  .demo-machine {
    margin-bottom: 2rem;
  }
  
  .demo-instruction {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .benefit-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .benefit-item:hover {
    transform: translateX(0) translateY(-10px);
  }
  
  .instruction-step {
    flex-direction: column;
    gap: 1rem;
    padding-left: 30px;
  }
  
  .instruction-step::after {
    left: 25px;
    top: 50px;
    height: calc(100% - 30px);
  }
  
  .step-number {
    position: absolute;
    left: -25px;
    top: 0;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .demo-conclusion p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .demo-intro {
    padding: 1.5rem;
  }
  
  .benefits-title {
    font-size: 1.2rem;
  }
  
  .benefit-text h4,
  .step-text h4 {
    font-size: 1.1rem;
  }
  
  .slot-screen-img {
    height: 220px;
  }
  
  .play-now-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
  
  .demo-instruction {
    padding: 1.5rem;
  }
  
  .start-demo-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* SLOT COMPARISON SECTION */
.slot-comparison {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(to bottom right, #121028, #261544, #0c0a16);
  overflow: hidden;
}

.slot-comparison::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 90%, rgba(82, 46, 146, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(248, 183, 0, 0.06) 0%, transparent 50%);
  z-index: 1;
}

.comparison-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.comparison-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: -1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(248, 183, 0, 0.15) 0%, rgba(248, 183, 0, 0.05) 100%);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(248, 183, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.badge:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(248, 183, 0, 0.2) 0%, rgba(248, 183, 0, 0.1) 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(248, 183, 0, 0.3);
}

.comparison-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.intro-paragraph {
  background: rgba(24, 18, 48, 0.4);
  border-radius: var(--border-radius);
  padding: 2rem;
  position: relative;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.intro-paragraph p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.intro-paragraph strong,
.card-body strong,
.feature-description strong,
.conclusion-content strong {
  color: var(--primary-color);
  font-weight: 600;
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card-wrapper {
  perspective: 1000px;
}

.comparison-card {
  height: 100%;
  background: rgba(20, 16, 37, 0.7);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.5s ease;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  transform: translateZ(0);
}

.comparison-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.platform-card {
  border-top: 3px solid #3a77cf;
}

.platform-card .card-icon {
  background: linear-gradient(135deg, #3a77cf, #2c5ba0);
}

.platform-card:hover {
  border-color: #3a77cf;
}

.demo-card {
  border-top: 3px solid #e74c3c;
}

.demo-card .card-icon {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.demo-card:hover {
  border-color: #e74c3c;
}

.variety-card {
  border-top: 3px solid #27ae60;
}

.variety-card .card-icon {
  background: linear-gradient(135deg, #27ae60, #219653);
}

.variety-card:hover {
  border-color: #27ae60;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-header h3 {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 0;
}

.card-body {
  padding: 1.5rem;
  flex: 1;
}

.card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.features-list-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  background: rgba(24, 18, 48, 0.4);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.features-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
  min-height: 300px;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.features-image:hover .feature-image {
  transform: scale(1.05);
}

.image-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  letter-spacing: 3px;
  z-index: 2;
  background: linear-gradient(to right, var(--primary-color), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateX(10px);
}

.feature-bullet {
  flex: 0 0 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 5px 15px rgba(248, 183, 0, 0.2);
  transition: var(--transition);
  aspect-ratio: 1/1;
}

.feature-item:hover .feature-bullet {
  transform: rotate(15deg);
  box-shadow: 0 8px 20px rgba(248, 183, 0, 0.3);
}

.feature-description {
  flex: 1;
}

.feature-description h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--text-color);
}

.feature-description p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.conclusion-container {
  background: linear-gradient(to right, rgba(15, 14, 26, 0.7), rgba(30, 18, 56, 0.7));
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.conclusion-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--primary-color));
  z-index: 1;
}

.conclusion-content {
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.conclusion-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-content p:last-child {
  margin-bottom: 0;
}

.cta-container {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-size: 1.3rem;
}

.rating-text {
  margin-left: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(248, 183, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transition: width 0.4s ease;
  z-index: -1;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(248, 183, 0, 0.4);
}

.cta-button:hover::after {
  width: 100%;
}

.cta-button:hover i {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

.comparison-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.providers-list,
.advantages,
.testimonial {
  background: rgba(20, 16, 37, 0.7);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.providers-list:hover,
.advantages:hover,
.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.providers-list h3,
.advantages h3 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: var(--text-color);
  position: relative;
  padding-bottom: 0.8rem;
}

.providers-list h3::after,
.advantages h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 1.5px;
}

.providers-list ul,
.advantages ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.providers-list ul li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.provider-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: var(--secondary-color);
  border-radius: 8px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
}

.providers-list ul li:hover .provider-logo {
  transform: rotate(10deg);
  background: var(--primary-color);
  color: #000;
}

.advantages ul li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.advantages ul li i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.testimonial {
  position: relative;
  border-left: 3px solid var(--primary-color);
}

.quote-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 1.5rem;
  color: rgba(248, 183, 0, 0.2);
}

.testimonial p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.name {
  color: var(--text-color);
  font-size: 0.95rem;
  font-weight: 600;
}

.status {
  color: var(--primary-color);
  font-size: 0.8rem;
}

@media (max-width: 1200px) {
  .comparison-layout {
    grid-template-columns: 1fr;
  }
  
  .comparison-sidebar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .comparison-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .features-list-container {
    grid-template-columns: 1fr;
  }
  
  .comparison-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .feature-item:hover {
    transform: none;
  }
  
  .cta-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .comparison-badges {
    flex-wrap: wrap;
  }
  
  .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .conclusion-content,
  .cta-container {
    padding: 1.5rem;
  }
  
  .rating {
    font-size: 1.1rem;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
    padding: 12px 25px;
    font-size: 1rem;
  }
}
