@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css');

:root {
  --primary-color: #3CC66C;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #1E7668;
  --assassination-red: #DC143C;
  --assassination-dark: #0A0A0A;
  --assassination-gold: #D4AF37;
  --assassination-shadow: rgba(220, 20, 60, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Ubuntu', sans-serif;
  background: var(--assassination-dark);
  background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), 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.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.4);
  z-index: -1;
  pointer-events: none;
}

/* Skip Navigation Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--assassination-red);
  color: var(--text-primary);
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border: 2px solid var(--assassination-gold);
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
  position: fixed;
}

/* Button Reset */
button {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  cursor: pointer;
  color: inherit;
}

a {
  text-decoration: none;
  color: var(--accent-primary);
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  display: block;
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, rgba(212, 175, 55, 0.15) 100%);
  border-bottom: 2px solid var(--assassination-red);
  padding: 12px 20px;
  position: relative;
  z-index: 999;
  display: block;
}

.announcement-bar.hidden {
  display: none;
}

.announcement-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}

.announcement-icon {
  font-size: 1.5rem;
  color: var(--assassination-gold);
  animation: bounce 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.announcement-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  text-align: center;
}

.announcement-highlight {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(220, 20, 60, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.announcement-icon-3d {
  font-size: 1.2rem;
  color: var(--assassination-gold);
  text-shadow: 
    0 0 10px rgba(212, 175, 55, 0.6),
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 4px 8px rgba(212, 175, 55, 0.3);
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.4));
  animation: iconFloat 3s ease-in-out infinite;
  display: inline-block;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-4px) rotate(5deg);
  }
}

.announcement-details {
  font-size: 0.85rem;
  color: #E0E0E0;
  font-weight: 500;
}

.announcement-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(220, 20, 60, 0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.announcement-close:hover {
  background: rgba(220, 20, 60, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.announcement-close i {
  font-size: 1rem;
  color: #FFFFFF;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  background: rgba(10, 10, 10, 0.8);
  padding: 10px 80px;
  border-bottom: 1px solid rgba(220, 20, 60, 0.2);
}

.breadcrumb {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin: 0 10px;
  color: var(--assassination-gold);
  opacity: 0.6;
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--assassination-gold);
}

.breadcrumb span {
  color: var(--assassination-gold);
  font-weight: 500;
}

/* Navbar Styles */
.navbar {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--assassination-red);
  box-shadow: 0 4px 20px rgba(220, 20, 60, 0.2);
}

.navbar .logo img {
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.navbar-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-menu li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--assassination-red);
  transition: width 0.3s ease;
}

.navbar-menu li a:hover {
  color: var(--assassination-red);
}

.navbar-menu li a:hover::before {
  width: 80%;
}

.navbar .auth-buttons {
  display: flex;
  gap: 15px;
}

/* Image Button Styles */
.btn-image-link {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  background: none;
  padding: 0;
}

.btn-image-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
  opacity: 0.95;
}

.btn-image-link:active {
  transform: translateY(0);
  opacity: 0.9;
}

.btn-image {
  height: auto;
  width: auto;
  max-width: 140px;
  max-height: 45px;
  display: block;
  border: none;
  outline: none;
  object-fit: contain;
}

.btn-image-large .btn-image {
  max-width: 180px;
  max-height: 55px;
  width: auto;
  height: auto;
}

.btn-image-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-image-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-image-button:active {
  transform: translateY(0);
}

.btn-image-button .btn-image {
  height: auto;
  width: auto;
  max-width: 100%;
  display: block;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  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-login {
  background: var(--text-primary);
  color: var(--secondary-color);
  border: 2px solid var(--text-primary);
}

.btn-login:hover {
  background: transparent;
  color: var(--text-primary);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.btn-register {
  background: linear-gradient(135deg, var(--assassination-red) 0%, #B01030 100%);
  color: var(--text-primary);
  border: 2px solid var(--assassination-red);
}

.btn-register:hover {
  background: linear-gradient(135deg, #B01030 0%, var(--assassination-red) 100%);
  box-shadow: 0 0 20px var(--assassination-shadow);
  transform: translateY(-2px);
}

.btn-assassination {
  background: linear-gradient(135deg, var(--assassination-red) 0%, #B01030 100%);
  color: var(--text-primary);
  border: 2px solid var(--assassination-red);
  box-shadow: 0 4px 15px var(--assassination-shadow);
}

.btn-assassination:hover {
  box-shadow: 0 6px 25px var(--assassination-shadow);
  transform: translateY(-3px);
}

.btn-assassination-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--assassination-red);
}

.btn-assassination-outline:hover {
  background: var(--assassination-red);
  box-shadow: 0 0 20px var(--assassination-shadow);
}

.btn-assassination-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, rgba(10, 10, 10, 0.95) 50%, rgba(30, 118, 104, 0.15) 100%);
  padding: 80px 50px;
  margin-top: 30px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(220, 20, 60, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-assassination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(220, 20, 60, 0.08) 50%, transparent 70%),
    radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.15) 0%, transparent 50%);
  animation: assassinationGlow 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes assassinationGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--assassination-red) 0%, #B01030 100%);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px var(--assassination-shadow);
}

.hero-content h1 {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.4;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.8);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-highlight {
  color: #FF6B8A;
  text-shadow: 0 0 15px rgba(220, 20, 60, 0.6), 2px 2px 10px rgba(0, 0, 0, 0.8);
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--assassination-red) 0%, transparent 100%);
  animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
  0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
  50% { opacity: 1; transform: scaleX(1); }
}

.hero-description {
  margin-bottom: 25px;
  color: #E0E0E0;
  font-size: 1.15rem;
  line-height: 2;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.6);
  font-weight: 400;
  letter-spacing: 0.3px;
}

.hero-author {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(220, 20, 60, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.author-info:hover {
  border-color: rgba(220, 20, 60, 0.5);
  background: rgba(10, 10, 10, 0.8);
  box-shadow: 0 5px 20px rgba(220, 20, 60, 0.2);
}

.author-info i {
  font-size: 2rem;
  color: var(--assassination-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.author-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.author-name {
  font-size: 1.1rem;
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.author-credentials {
  font-size: 0.9rem;
  color: var(--assassination-gold);
  font-weight: 500;
}

/* Hero Myths Preview */
.hero-myths-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-bottom: 35px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(10, 10, 10, 0.6) 100%);
  border-radius: 12px;
  border: 1px solid rgba(220, 20, 60, 0.3);
  backdrop-filter: blur(10px);
}

.myth-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  border-left: 3px solid var(--assassination-red);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.myth-item:hover {
  background: rgba(220, 20, 60, 0.2);
  transform: translateX(5px);
  border-left-color: var(--assassination-gold);
  text-decoration: none;
  color: inherit;
}

.myth-item:active {
  transform: translateX(3px) scale(0.98);
}

.myth-item i {
  font-size: 1.2rem;
  color: var(--assassination-red);
  flex-shrink: 0;
  animation: pulseRed 2s ease-in-out infinite;
}

@keyframes pulseRed {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.95); }
}

.myth-item span {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.2px;
}

/* Hero Trust Indicators */
.hero-trust-indicators {
  display: flex;
  gap: 25px;
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid rgba(220, 20, 60, 0.3);
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0.4) 100%);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(10, 10, 10, 0.6) 100%);
  border-color: var(--assassination-gold);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.trust-item i {
  font-size: 1.3rem;
  color: var(--assassination-gold);
}

.trust-item span {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.3px;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
  background: var(--text-primary);
  color: var(--secondary-color);
}

/* Introduction Section - New Design */
.introduction {
  margin-top: 60px;
  margin-bottom: 50px;
  padding: 0 20px;
}

.introduction-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Introduction Header */
.introduction-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.intro-header-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--assassination-red) 0%, #B01030 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px var(--assassination-shadow);
  animation: iconFloat 3s ease-in-out infinite;
  position: relative;
}

.intro-header-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--assassination-red);
  opacity: 0.3;
  animation: pulseRing 2s ease-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.5); opacity: 0; }
}

.intro-header-icon i {
  font-size: 2.5rem;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.intro-tag {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, var(--assassination-red) 0%, #B01030 100%);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px var(--assassination-shadow);
}

.introduction-title {
  font-size: 2.5rem;
  color: #FFFFFF;
  font-weight: 700;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.8);
  letter-spacing: -0.5px;
  margin-top: 10px;
}

/* Introduction Grid - Card Layout */
.introduction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.intro-card {
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.12) 0%, rgba(10, 10, 10, 0.9) 100%);
  padding: 35px;
  border-radius: 15px;
  border: 2px solid rgba(220, 20, 60, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--assassination-red) 0%, transparent 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.intro-card:hover::before {
  transform: scaleX(1);
}

.intro-card:hover {
  transform: translateY(-8px);
  border-color: var(--assassination-red);
  box-shadow: 0 15px 40px var(--assassination-shadow);
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.18) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.intro-card-main {
  border-left: 4px solid var(--assassination-gold);
}

.intro-card-main .intro-card-header i {
  color: var(--assassination-gold);
}

.intro-card-myths {
  border-left: 4px solid var(--assassination-red);
}

.intro-card-myths .intro-card-header i {
  color: var(--assassination-red);
}

.intro-card-scr55 {
  border-left: 4px solid #3CC66C;
}

.intro-card-scr55 .intro-card-header i {
  color: #3CC66C;
}

.intro-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.intro-card-header i {
  font-size: 2rem;
  flex-shrink: 0;
}

.intro-card-header h3 {
  font-size: 1.4rem;
  color: #FFFFFF;
  font-weight: 700;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8);
  margin: 0;
}

.intro-card-text {
  color: #E5E5E5;
  font-size: 1.05rem;
  line-height: 1.9;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
  font-weight: 400;
  letter-spacing: 0.2px;
  margin: 0;
}

/* Introduction Footer */
.introduction-footer {
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, rgba(10, 10, 10, 0.8) 100%);
  padding: 30px 40px;
  border-radius: 15px;
  border: 1px solid rgba(220, 20, 60, 0.3);
  position: relative;
  overflow: hidden;
}

.introduction-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.intro-footer-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.intro-footer-content i {
  font-size: 2rem;
  color: var(--assassination-red);
  flex-shrink: 0;
  margin-top: 5px;
  filter: drop-shadow(0 0 10px var(--assassination-shadow));
}

.intro-footer-content p {
  color: #FFFFFF;
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 600;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.9);
  letter-spacing: 0.2px;
  margin: 0;
  flex: 1;
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(10, 10, 10, 0.8) 100%);
  border-radius: 15px;
  border: 1px solid rgba(220, 20, 60, 0.3);
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(220, 20, 60, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--assassination-red);
  box-shadow: 0 5px 20px var(--assassination-shadow);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--assassination-red);
  margin-bottom: 10px;
  text-shadow: 0 0 10px var(--assassination-shadow);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--assassination-red) 0%, #B01030 100%);
  color: var(--text-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-header h2,
.section-header h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Myth Section - Minimalist Design */
.myth-section {
  margin-top: 80px;
  padding: 0 20px;
}

.myth-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Myth Header - Minimalist */
.myth-header {
  text-align: center;
  margin-bottom: 60px;
}

.myth-number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 24px;
  background: transparent;
  border: 2px solid var(--assassination-red);
  border-radius: 50px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.myth-number-badge:hover {
  background: rgba(220, 20, 60, 0.1);
  transform: translateY(-2px);
}

.myth-number-badge span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--assassination-red);
  text-transform: uppercase;
}

.myth-number-badge strong {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
}

.myth-title {
  font-size: 2.2rem;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.4;
  letter-spacing: -0.3px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.myth-banner {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(220, 20, 60, 0.2);
}

.myth-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  transition: opacity 0.3s ease;
  opacity: 1;
}

.myth-banner:hover .banner-overlay {
  opacity: 0.7;
}

/* Myth Content Wrapper - Clean & Spacious */
.myth-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.myth-content-block {
  background: rgba(10, 10, 10, 0.6);
  padding: 50px 40px;
  border-radius: 8px;
  border: 1px solid rgba(220, 20, 60, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.myth-content-block:hover {
  border-color: rgba(220, 20, 60, 0.4);
  background: rgba(10, 10, 10, 0.8);
}

/* Minimalist Block Header */
.block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(220, 20, 60, 0.2);
}

.block-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.block-icon i {
  font-size: 1.5rem;
}

.confusion-block .block-icon i {
  color: var(--assassination-gold);
}

.facts-block .block-icon i {
  color: #3CC66C;
}

.scr55-block .block-icon i {
  color: var(--assassination-red);
}

.block-header h3 {
  font-size: 1.6rem;
  color: #FFFFFF;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.3px;
}

/* Clean Content */
.block-content {
  color: #E0E0E0;
}

.block-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 24px;
  letter-spacing: 0.1px;
}

.block-content p:last-child {
  margin-bottom: 0;
}

.block-content p strong {
  color: #FFFFFF;
  font-weight: 600;
}

.emphasis-text {
  color: var(--assassination-gold) !important;
  font-weight: 600 !important;
  font-size: 1.15rem !important;
  display: block;
  margin-top: 8px !important;
}

/* Minimalist Fact Stat */
.fact-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(60, 198, 108, 0.08);
  border-radius: 8px;
  border-left: 3px solid #3CC66C;
  margin: 32px 0;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(60, 198, 108, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 1.4rem;
  color: #3CC66C;
}

.stat-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-highlight {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3CC66C;
  line-height: 1;
}

.stat-detail {
  font-size: 0.95rem;
  color: #E0E0E0;
  line-height: 1.5;
}

.fact-note {
  font-size: 0.9rem !important;
  color: #AAAAAA !important;
  font-style: italic;
  margin-top: 16px !important;
}

/* Clean Checklist */
.scr55-checklist {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.scr55-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(220, 20, 60, 0.1);
  transition: all 0.2s ease;
}

.scr55-checklist li:last-child {
  border-bottom: none;
}

.scr55-checklist li:hover {
  padding-left: 8px;
}

.scr55-checklist li i {
  font-size: 1.2rem;
  color: var(--assassination-red);
  flex-shrink: 0;
  margin-top: 3px;
}

.scr55-checklist li span {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.scr55-checklist li span strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* Minimalist Warning Box */
.warning-box {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 8px;
  border-left: 3px solid var(--assassination-gold);
  margin-top: 32px;
}

.warning-box i {
  font-size: 1.5rem;
  color: var(--assassination-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.warning-content {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.warning-content strong {
  color: var(--assassination-gold);
  font-weight: 600;
}

/* Payment Restrictions - Myth 2 */
.payment-restrictions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
  padding: 24px;
  background: rgba(220, 20, 60, 0.08);
  border-radius: 8px;
  border-left: 3px solid var(--assassination-red);
}

.restriction-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(220, 20, 60, 0.15);
  transition: all 0.2s ease;
}

.restriction-item:last-child {
  border-bottom: none;
}

.restriction-item:hover {
  padding-left: 6px;
}

.restriction-item i {
  font-size: 1.4rem;
  color: var(--assassination-red);
  flex-shrink: 0;
}

.restriction-item span {
  color: #E0E0E0;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.1px;
}

/* Tip Box - Myth 2 */
.tip-box {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: rgba(60, 198, 108, 0.08);
  border-radius: 8px;
  border-left: 3px solid #3CC66C;
  margin-top: 32px;
}

.tip-box i {
  font-size: 1.5rem;
  color: #3CC66C;
  flex-shrink: 0;
  margin-top: 2px;
}

.tip-content {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.tip-content strong {
  color: #3CC66C;
  font-weight: 600;
}

/* Fairness Systems - Myth 4 */
.fairness-systems {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
}

.system-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: rgba(60, 198, 108, 0.08);
  border-radius: 8px;
  border-left: 3px solid #3CC66C;
  transition: all 0.2s ease;
}

.system-item:hover {
  background: rgba(60, 198, 108, 0.12);
  transform: translateX(3px);
}

.system-icon {
  width: 50px;
  height: 50px;
  background: rgba(60, 198, 108, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.system-icon i {
  font-size: 1.6rem;
  color: #3CC66C;
}

.system-content {
  flex: 1;
}

.system-content strong {
  display: block;
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.system-content p {
  color: #E0E0E0;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* Risk List - Myth 5 */
.risk-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
  padding: 24px;
  background: rgba(220, 20, 60, 0.08);
  border-radius: 8px;
  border-left: 3px solid var(--assassination-red);
}

.risk-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(220, 20, 60, 0.15);
  transition: all 0.2s ease;
}

.risk-item:last-child {
  border-bottom: none;
}

.risk-item:hover {
  padding-left: 6px;
}

.risk-item i {
  font-size: 1.3rem;
  color: var(--assassination-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.risk-item span {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================
   MYTH 2 - SPLIT LAYOUT DESIGN
   ============================================ */
.myth-2-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.myth-2-left,
.myth-2-right {
  display: flex;
  flex-direction: column;
}

.confusion-card,
.facts-card {
  background: rgba(10, 10, 10, 0.7);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(220, 20, 60, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.confusion-card {
  border-color: rgba(212, 175, 55, 0.3);
}

.confusion-card:hover,
.facts-card:hover {
  border-color: rgba(220, 20, 60, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(220, 20, 60, 0.15);
}

.confusion-label,
.facts-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(220, 20, 60, 0.3);
}

.confusion-label i {
  color: var(--assassination-gold);
  font-size: 1.4rem;
}

.facts-label i {
  color: #3CC66C;
  font-size: 1.4rem;
}

.confusion-label span,
.facts-label span {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.confusion-card p,
.facts-card p {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.timeline-marker {
  text-align: center;
  margin: 24px 0;
  position: relative;
}

.timeline-marker::before,
.timeline-marker::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--assassination-red), transparent);
}

.timeline-marker::before {
  left: 0;
}

.timeline-marker::after {
  right: 0;
}

.marker-text {
  display: inline-block;
  padding: 8px 20px;
  background: var(--assassination-red);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 20px;
  letter-spacing: 2px;
}

.emphasis-text-large {
  color: var(--assassination-gold) !important;
  font-weight: 700 !important;
  font-size: 1.3rem !important;
  text-align: center;
  margin-top: 20px !important;
}

.date-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(220, 20, 60, 0.15);
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--assassination-red);
}

.date-highlight i {
  color: var(--assassination-red);
  font-size: 1.2rem;
}

.date-highlight span {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.05rem;
}

.payment-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
}

.payment-card {
  position: relative;
  background: rgba(220, 20, 60, 0.1);
  padding: 24px;
  border-radius: 8px;
  border: 2px solid rgba(220, 20, 60, 0.3);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.payment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.2), transparent);
  transition: left 0.5s ease;
}

.payment-card:hover::before {
  left: 100%;
}

.payment-card:hover {
  border-color: var(--assassination-red);
  transform: translateX(5px);
}

.payment-card.banned {
  border-color: var(--assassination-red);
}

.payment-card i {
  font-size: 2rem;
  color: var(--assassination-red);
  flex-shrink: 0;
}

.payment-card span {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.1rem;
  flex: 1;
}

.banned-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 4px 12px;
  background: var(--assassination-red);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.facts-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(220, 20, 60, 0.2);
}

.facts-footer p {
  color: #E0E0E0;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.myth-2-bottom {
  margin-top: 40px;
}

.scr55-guide-card {
  background: rgba(10, 10, 10, 0.8);
  padding: 50px 40px;
  border-radius: 12px;
  border: 1px solid rgba(220, 20, 60, 0.3);
}

.guide-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(220, 20, 60, 0.3);
}

.guide-header i {
  font-size: 1.8rem;
  color: var(--assassination-red);
}

.guide-header h3 {
  font-size: 1.6rem;
  color: #FFFFFF;
  font-weight: 600;
  margin: 0;
}

.scr55-guide-card > p {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.guide-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 30px 0;
}

.pillar-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(220, 20, 60, 0.08);
  border-radius: 8px;
  border-left: 4px solid var(--assassination-red);
  transition: all 0.3s ease;
}

.pillar-item:hover {
  background: rgba(220, 20, 60, 0.12);
  transform: translateX(5px);
}

.pillar-number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--assassination-red);
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 8px;
  flex-shrink: 0;
}

.pillar-content {
  flex: 1;
}

.pillar-content strong {
  display: block;
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.pillar-content p {
  color: #E0E0E0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   MYTH 3 - VERTICAL TIMELINE DESIGN
   ============================================ */
.myth-3-timeline {
  position: relative;
  padding-left: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.myth-3-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--assassination-red), var(--assassination-gold), #3CC66C);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -50px;
  top: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--assassination-dark);
  border: 4px solid var(--assassination-red);
  box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.3);
  z-index: 2;
}

.timeline-item.facts-timeline .timeline-dot {
  border-color: #3CC66C;
  box-shadow: 0 0 0 4px rgba(60, 198, 108, 0.3);
}

.timeline-item.scr55-timeline .timeline-dot {
  border-color: var(--assassination-red);
  box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.3);
}

.timeline-content {
  background: rgba(10, 10, 10, 0.7);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(220, 20, 60, 0.2);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  border-color: rgba(220, 20, 60, 0.5);
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(220, 20, 60, 0.15);
}

.timeline-label {
  display: inline-block;
  padding: 8px 20px;
  background: var(--assassination-red);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.timeline-item.facts-timeline .timeline-label {
  background: #3CC66C;
}

.timeline-content p {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.fact-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: rgba(60, 198, 108, 0.15);
  border-radius: 8px;
  border-left: 4px solid #3CC66C;
  margin: 24px 0;
}

.fact-banner i {
  font-size: 1.8rem;
  color: #3CC66C;
  flex-shrink: 0;
}

.fact-banner span {
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
}

.exception-box {
  margin-top: 24px;
  padding: 24px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  border-left: 4px solid var(--assassination-gold);
}

.exception-box i {
  font-size: 1.5rem;
  color: var(--assassination-gold);
  margin-bottom: 12px;
  display: block;
}

.exception-box > div {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.exception-box > div strong {
  color: var(--assassination-gold);
  font-weight: 600;
}

.exception-note {
  color: #AAAAAA !important;
  font-size: 0.9rem !important;
  font-style: italic;
  margin: 0 !important;
}

.crypto-dimension {
  margin-top: 30px;
  padding: 24px;
  background: rgba(220, 20, 60, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(220, 20, 60, 0.3);
}

.dimension-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(220, 20, 60, 0.2);
}

.dimension-header i {
  font-size: 1.5rem;
  color: var(--assassination-gold);
}

.dimension-header span {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.dimension-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dimension-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.dimension-point i {
  font-size: 0.5rem;
  color: var(--assassination-red);
  margin-top: 8px;
  flex-shrink: 0;
}

.dimension-point span {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================
   MYTH 4 - CENTERED CARD DESIGN
   ============================================ */
.myth-4-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.confusion-compact {
  text-align: center;
  padding: 30px;
  margin-bottom: 40px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.confusion-compact i {
  font-size: 2.5rem;
  color: var(--assassination-gold);
  margin-bottom: 16px;
  display: block;
}

.confusion-compact p {
  color: #E0E0E0;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.fairness-showcase {
  margin-bottom: 50px;
}

.showcase-header {
  text-align: center;
  margin-bottom: 40px;
}

.showcase-header h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
}

.systems-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.system-card {
  background: rgba(10, 10, 10, 0.8);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid rgba(220, 20, 60, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.system-card:hover {
  border-color: rgba(220, 20, 60, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(220, 20, 60, 0.2);
}

.rtp-card {
  border-color: rgba(60, 198, 108, 0.3);
}

.rtp-card:hover {
  border-color: rgba(60, 198, 108, 0.5);
  box-shadow: 0 12px 40px rgba(60, 198, 108, 0.2);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.system-icon-large {
  width: 70px;
  height: 70px;
  background: rgba(220, 20, 60, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rtp-card .system-icon-large {
  background: rgba(60, 198, 108, 0.15);
}

.system-icon-large i {
  font-size: 2.5rem;
  color: var(--assassination-red);
}

.rtp-card .system-icon-large i {
  color: #3CC66C;
}

.rtp-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3CC66C;
  line-height: 1;
}

.rng-badge {
  padding: 8px 16px;
  background: var(--assassination-red);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 1.5px;
}

.system-card h4 {
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.system-card p {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.testing-note {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(60, 198, 108, 0.1);
  border-radius: 8px;
  border-left: 4px solid #3CC66C;
}

.testing-note i {
  font-size: 1.8rem;
  color: #3CC66C;
  flex-shrink: 0;
}

.testing-note p {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.scr55-education {
  background: rgba(10, 10, 10, 0.8);
  padding: 50px 40px;
  border-radius: 12px;
  border: 1px solid rgba(220, 20, 60, 0.3);
}

.education-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(220, 20, 60, 0.3);
}

.education-header i {
  font-size: 1.8rem;
  color: var(--assassination-red);
}

.education-header h3 {
  font-size: 1.6rem;
  color: #FFFFFF;
  font-weight: 600;
  margin: 0;
}

.scr55-education > p {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.education-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(220, 20, 60, 0.08);
  border-radius: 8px;
  border-left: 3px solid var(--assassination-red);
  transition: all 0.3s ease;
}

.education-item:hover {
  background: rgba(220, 20, 60, 0.12);
  transform: translateX(5px);
}

.education-item i {
  font-size: 1.5rem;
  color: var(--assassination-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.education-item strong {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
  display: block;
}

.red-flags-box {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(220, 20, 60, 0.12);
  border-radius: 8px;
  border-left: 4px solid var(--assassination-red);
  margin-bottom: 24px;
}

.red-flags-box i {
  font-size: 1.6rem;
  color: var(--assassination-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.red-flags-box strong {
  display: block;
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.red-flags-box p {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   MYTH 5 - COMPARISON DESIGN
   ============================================ */
.confusion-inline {
  text-align: center;
  padding: 30px;
  margin-bottom: 50px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.confusion-inline i {
  font-size: 2.5rem;
  color: var(--assassination-gold);
  margin-bottom: 16px;
  display: block;
}

.confusion-inline p {
  color: #E0E0E0;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.warning-text {
  display: block;
  color: var(--assassination-gold) !important;
  font-weight: 600 !important;
  font-size: 1.15rem !important;
  margin-top: 12px;
}

.comparison-section {
  margin-bottom: 50px;
}

.comparison-header {
  text-align: center;
  margin-bottom: 40px;
}

.comparison-header h3 {
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}

.comparison-side {
  background: rgba(10, 10, 10, 0.8);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid rgba(220, 20, 60, 0.2);
  transition: all 0.3s ease;
}

.offshore-side {
  border-color: rgba(220, 20, 60, 0.4);
}

.offshore-side:hover {
  border-color: rgba(220, 20, 60, 0.6);
  box-shadow: 0 8px 30px rgba(220, 20, 60, 0.2);
}

.licensed-side {
  border-color: rgba(60, 198, 108, 0.4);
}

.licensed-side:hover {
  border-color: rgba(60, 198, 108, 0.6);
  box-shadow: 0 8px 30px rgba(60, 198, 108, 0.2);
}

.side-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(220, 20, 60, 0.3);
}

.licensed-side .side-header {
  border-bottom-color: rgba(60, 198, 108, 0.3);
}

.side-header i {
  font-size: 1.8rem;
  color: var(--assassination-red);
}

.licensed-side .side-header i {
  color: #3CC66C;
}

.side-header h4 {
  font-size: 1.5rem;
  color: #FFFFFF;
  font-weight: 600;
  margin: 0;
}

.comparison-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: rgba(220, 20, 60, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.licensed-side .point-item {
  background: rgba(60, 198, 108, 0.08);
}

.point-item:hover {
  transform: translateX(5px);
}

.point-item.negative i {
  color: var(--assassination-red);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.point-item.positive i {
  color: #3CC66C;
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.point-item span {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.7;
  flex: 1;
}

.comparison-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
}

.divider-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, var(--assassination-red), var(--assassination-gold), #3CC66C);
}

.comparison-divider span {
  padding: 12px 20px;
  background: rgba(220, 20, 60, 0.2);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 20px;
  letter-spacing: 2px;
  border: 2px solid var(--assassination-red);
}

.acma-note {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(220, 20, 60, 0.1);
  border-radius: 8px;
  border-left: 4px solid var(--assassination-red);
  margin-top: 30px;
}

.acma-note i {
  font-size: 1.6rem;
  color: var(--assassination-red);
  flex-shrink: 0;
}

.acma-note p {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.scr55-safety-guide {
  background: rgba(10, 10, 10, 0.8);
  padding: 50px 40px;
  border-radius: 12px;
  border: 1px solid rgba(220, 20, 60, 0.3);
}

.safety-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(220, 20, 60, 0.3);
}

.safety-header i {
  font-size: 1.8rem;
  color: var(--assassination-red);
}

.safety-header h3 {
  font-size: 1.6rem;
  color: #FFFFFF;
  font-weight: 600;
  margin: 0;
}

.scr55-safety-guide > p {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.safety-checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.safety-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(220, 20, 60, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(220, 20, 60, 0.2);
  transition: all 0.3s ease;
}

.safety-item:hover {
  border-color: rgba(220, 20, 60, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(220, 20, 60, 0.15);
}

.safety-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(220, 20, 60, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.safety-icon i {
  font-size: 2rem;
  color: var(--assassination-red);
}

.safety-item strong {
  display: block;
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.5;
}

.safety-item span {
  color: #AAAAAA;
  font-size: 0.9rem;
  line-height: 1.5;
  display: block;
}

/* Bonus Insight Section */
.bonus-insight {
  margin-top: 80px;
  padding: 50px 20px;
  background: linear-gradient(135deg, rgba(60, 198, 108, 0.08) 0%, rgba(10, 10, 10, 0.95) 100%);
  border-radius: 15px;
  border: 1px solid rgba(60, 198, 108, 0.3);
}

.bonus-insight-container {
  max-width: 1200px;
  margin: 0 auto;
}

.bonus-insight-header {
  text-align: center;
  margin-bottom: 50px;
}

.insight-badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, #3CC66C 0%, #2A9D4F 100%);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.bonus-insight-header h2 {
  font-size: 2.2rem;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.bonus-insight-header p {
  font-size: 1.1rem;
  color: #E0E0E0;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* BetStop Section */
.betstop-section {
  background: rgba(10, 10, 10, 0.6);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(60, 198, 108, 0.3);
  margin-bottom: 40px;
}

.betstop-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(60, 198, 108, 0.2);
}

.betstop-icon {
  width: 50px;
  height: 50px;
  background: rgba(60, 198, 108, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.betstop-icon i {
  font-size: 1.8rem;
  color: #3CC66C;
}

.betstop-header h3 {
  font-size: 1.8rem;
  color: #FFFFFF;
  font-weight: 600;
  margin: 0;
}

.betstop-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.betstop-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.betstop-feature i {
  font-size: 1.4rem;
  color: #3CC66C;
  flex-shrink: 0;
  margin-top: 3px;
}

.betstop-feature p {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.betstop-feature p strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* Responsibility Strategies */
.responsibility-strategies {
  margin-bottom: 40px;
}

.responsibility-strategies h3 {
  font-size: 1.6rem;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.strategies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.strategy-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: rgba(10, 10, 10, 0.6);
  border-radius: 8px;
  border: 1px solid rgba(60, 198, 108, 0.2);
  transition: all 0.3s ease;
}

.strategy-item:hover {
  border-color: rgba(60, 198, 108, 0.5);
  background: rgba(10, 10, 10, 0.8);
  transform: translateY(-2px);
}

.strategy-item i {
  font-size: 1.5rem;
  color: #3CC66C;
  flex-shrink: 0;
}

.strategy-item span {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Insight Footer */
.insight-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(60, 198, 108, 0.2);
}

.insight-message {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(60, 198, 108, 0.1);
  border-radius: 8px;
  border-left: 3px solid #3CC66C;
  text-align: center;
  justify-content: center;
}

.insight-message i {
  font-size: 1.8rem;
  color: #3CC66C;
  flex-shrink: 0;
}

.insight-message p {
  color: #E0E0E0;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

.insight-message p strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* Bonus Section */
.bonus {
  margin-top: 60px;
  padding: 50px 0;
}

.bonus-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.bonus-card {
  position: relative;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, rgba(10, 10, 10, 0.9) 100%);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(220, 20, 60, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
}

.bonus-card:hover {
  transform: translateY(-5px);
  border-color: var(--assassination-red);
  box-shadow: 0 10px 30px var(--assassination-shadow);
}

.bonus-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.bonus-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--assassination-red) 0%, #B01030 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bonus-icon i {
  font-size: 1.8rem;
  color: var(--text-primary);
}

.bonus-card h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-weight: 600;
}

.bonus-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.bonus-carousel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bonus-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(220, 20, 60, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bonus-carousel-track img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.bonus-banner {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(220, 20, 60, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.bonus-banner:hover {
  border-color: var(--assassination-red);
  box-shadow: 0 15px 40px var(--assassination-shadow);
}

.bonus-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Games Section */
.games {
  margin-top: 60px;
  padding: 50px;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%);
  border-radius: 15px;
  border: 1px solid rgba(220, 20, 60, 0.3);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.game-card {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(220, 20, 60, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: var(--assassination-red);
  box-shadow: 0 15px 40px var(--assassination-shadow);
}

.game-image-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  min-height: 300px;
}

.game-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.game-card:hover .game-image-wrapper img {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.game-card:hover .game-overlay {
  opacity: 1;
  pointer-events: auto;
}

.btn-play {
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--assassination-red) 0%, #B01030 100%);
  color: var(--text-primary);
  border: 2px solid var(--assassination-red);
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-play:hover {
  background: linear-gradient(135deg, #B01030 0%, var(--assassination-red) 100%);
  box-shadow: 0 0 20px var(--assassination-shadow);
  transform: scale(1.05);
}

.game-card h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 20px 0 10px;
  font-weight: 600;
}

.game-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  padding: 15px 20px 25px;
  margin: 0;
}

/* Player Community Section */
.testimonials {
  margin-top: 60px;
  padding: 50px 0;
}

/* Player Stats Showcase */
.player-stats-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0;
}

.stats-card {
  background: rgba(10, 10, 10, 0.8);
  padding: 40px 30px;
  border-radius: 12px;
  border: 2px solid rgba(220, 20, 60, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
  transition: left 0.5s ease;
}

.stats-card:hover::before {
  left: 100%;
}

.stats-card:hover {
  transform: translateY(-8px);
  border-color: var(--assassination-red);
  box-shadow: 0 12px 40px rgba(220, 20, 60, 0.3);
}

.stat-icon-large {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(220, 20, 60, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(220, 20, 60, 0.3);
  transition: all 0.3s ease;
}

.stats-card:hover .stat-icon-large {
  background: rgba(220, 20, 60, 0.25);
  border-color: var(--assassination-red);
  transform: scale(1.1) rotate(5deg);
}

.stat-icon-large i {
  font-size: 2.5rem;
  color: var(--assassination-red);
}

.stat-number-large {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--assassination-red), var(--assassination-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-description {
  color: #E0E0E0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Player Experiences Grid */
.player-experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0;
}

.experience-card {
  background: rgba(10, 10, 10, 0.8);
  padding: 35px;
  border-radius: 12px;
  border: 1px solid rgba(220, 20, 60, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.experience-card:hover {
  transform: translateY(-5px);
  border-color: var(--assassination-red);
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.25);
}

.experience-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(220, 20, 60, 0.2);
}

.experience-avatar {
  width: 60px;
  height: 60px;
  background: rgba(220, 20, 60, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(220, 20, 60, 0.3);
  flex-shrink: 0;
}

.experience-avatar i {
  font-size: 2.5rem;
  color: var(--assassination-red);
}

.experience-meta {
  flex: 1;
}

.experience-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.experience-location {
  font-size: 0.85rem;
  color: var(--assassination-gold);
  margin-bottom: 8px;
  font-weight: 500;
}

.experience-stars {
  color: var(--assassination-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.experience-content p {
  color: #E0E0E0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.experience-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(220, 20, 60, 0.1);
  border-radius: 8px;
  border-left: 3px solid var(--assassination-red);
}

.experience-highlight i {
  color: var(--assassination-red);
  font-size: 1.1rem;
}

.experience-highlight span {
  color: #E0E0E0;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Community CTA */
.community-cta {
  margin-top: 50px;
  padding: 50px;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(10, 10, 10, 0.95) 100%);
  border-radius: 15px;
  border: 2px solid rgba(220, 20, 60, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.community-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.community-cta-content {
  position: relative;
  z-index: 1;
}

.community-cta-content i {
  font-size: 3rem;
  color: var(--assassination-red);
  margin-bottom: 20px;
  display: block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.community-cta-content h4 {
  font-size: 2rem;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 15px;
}

.community-cta-content p {
  color: #E0E0E0;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.community-cta-content .btn-register {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
}

/* FAQ Section */
.faq {
  margin-top: 60px;
  padding: 50px;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%);
  border-radius: 15px;
  border: 1px solid rgba(220, 20, 60, 0.3);
}

.faq-container {
  max-width: 1000px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* FAQ Category */
.faq-category {
  background: rgba(10, 10, 10, 0.7);
  border-radius: 12px;
  border: 2px solid rgba(220, 20, 60, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-category:hover {
  border-color: rgba(220, 20, 60, 0.5);
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.15);
}

.faq-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 25px 30px;
  background: rgba(220, 20, 60, 0.1);
  border-bottom: 2px solid rgba(220, 20, 60, 0.3);
  position: relative;
}

.faq-category-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--assassination-red);
  transition: width 0.3s ease;
}

.faq-category:hover .faq-category-header::after {
  width: 100%;
}

.faq-category-header i {
  font-size: 1.8rem;
  color: var(--assassination-red);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 20, 60, 0.15);
  border-radius: 10px;
  border: 1px solid rgba(220, 20, 60, 0.3);
  flex-shrink: 0;
}

.faq-category-header h4 {
  font-size: 1.4rem;
  color: #FFFFFF;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-item {
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  border: none;
  border-bottom: 1px solid rgba(220, 20, 60, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item:hover {
  background: rgba(220, 20, 60, 0.05);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  gap: 20px;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.faq-question:hover {
  background: rgba(220, 20, 60, 0.08);
}

.faq-question h5 {
  font-size: 1.15rem;
  color: #FFFFFF;
  font-weight: 600;
  margin: 0;
  flex: 1;
  line-height: 1.5;
}

.faq-question i {
  color: var(--assassination-red);
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-question {
  background: rgba(220, 20, 60, 0.1);
  border-left: 4px solid var(--assassination-red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 30px 25px;
}

.faq-answer p {
  color: #E0E0E0;
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
  padding-top: 10px;
}

/* E-E-A-T Section */
.eeat-section {
  margin-top: 60px;
  padding: 30px 20px;
}

.eeat-container {
  max-width: 1000px;
  margin: 0 auto;
}

.eeat-content {
  background: rgba(10, 10, 10, 0.6);
  padding: 30px 40px;
  border-radius: 12px;
  border: 1px solid rgba(220, 20, 60, 0.2);
}

.eeat-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

.eeat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.eeat-item:hover {
  background: rgba(220, 20, 60, 0.05);
}

.eeat-item i {
  font-size: 1.8rem;
  color: var(--assassination-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.eeat-item > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.eeat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--assassination-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.eeat-text {
  font-size: 0.95rem;
  color: #E0E0E0;
  line-height: 1.5;
}

/* Final CTA Section */
.final-cta {
  margin-top: 60px;
  padding: 80px 50px;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(10, 10, 10, 0.9) 50%, rgba(220, 20, 60, 0.2) 100%);
  border-radius: 15px;
  border: 2px solid rgba(220, 20, 60, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(220, 20, 60, 0.1) 50%, transparent 70%);
  animation: assassinationGlow 4s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h3 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(0, 0, 0, 1) 100%);
  padding: 50px 20px 30px;
  margin-top: 80px;
  border-top: 2px solid var(--assassination-red);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo img {
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--assassination-red);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--assassination-red);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-copy p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

.footer-copy a {
  color: var(--assassination-red);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .breadcrumb-nav {
    padding: 10px 40px;
  }

  .breadcrumb {
    font-size: 0.85rem;
  }

  .navbar {
    padding: 15px 40px;
    flex-wrap: wrap;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .myth-section {
    padding: 0 15px;
    margin-top: 50px;
  }

  .myth-header {
    margin-bottom: 40px;
  }

  .myth-title {
    font-size: 1.8rem;
  }

  .myth-content-wrapper {
    gap: 40px;
  }

  .myth-content-block {
    padding: 35px 28px;
  }

  .block-header {
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  .block-header h3 {
    font-size: 1.4rem;
  }

  .block-content p {
    font-size: 1rem;
  }

  .fact-stat {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .stat-text {
    align-items: center;
  }

  .payment-restrictions {
    padding: 20px;
    margin: 24px 0;
  }

  .restriction-item {
    padding: 12px 0;
  }

  .restriction-item i {
    font-size: 1.3rem;
  }

  .restriction-item span {
    font-size: 1rem;
  }

  .tip-box {
    padding: 20px;
    margin-top: 28px;
  }

  .tip-box i {
    font-size: 1.3rem;
  }

  .tip-content {
    font-size: 1rem;
  }

  .fairness-systems {
    gap: 16px;
    margin: 24px 0;
  }

  .system-item {
    padding: 20px;
    gap: 14px;
  }

  .system-icon {
    width: 45px;
    height: 45px;
  }

  .system-icon i {
    font-size: 1.4rem;
  }

  .system-content strong {
    font-size: 1rem;
  }

  .system-content p {
    font-size: 0.95rem;
  }

  .risk-list {
    padding: 20px;
    margin: 24px 0;
  }

  .risk-item {
    padding: 12px 0;
  }

  .risk-item i {
    font-size: 1.2rem;
  }

  .risk-item span {
    font-size: 1rem;
  }

  .bonus-insight {
    padding: 40px 15px;
    margin-top: 60px;
  }

  .bonus-insight-header h2 {
    font-size: 1.9rem;
  }

  .bonus-insight-header p {
    font-size: 1rem;
  }

  .betstop-section {
    padding: 30px 25px;
  }

  .betstop-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .betstop-header h3 {
    font-size: 1.5rem;
  }

  .strategies-grid {
    grid-template-columns: 1fr;
  }

  .bonus-container {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .announcement-bar {
    padding: 10px 15px;
  }

  .announcement-content {
    gap: 12px;
  }

  .announcement-icon {
    font-size: 1.3rem;
  }

  .announcement-highlight {
    font-size: 0.9rem;
  }

  .announcement-details {
    font-size: 0.8rem;
  }

  .announcement-close {
    right: 10px;
    width: 24px;
    height: 24px;
  }

  .announcement-close i {
    font-size: 0.9rem;
  }

  .navbar {
    flex-direction: column;
    padding: 15px 20px;
    gap: 15px;
  }

  .navbar-menu {
    width: 100%;
    justify-content: center;
    gap: 15px;
  }

  .navbar .auth-buttons {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 40px 25px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-myths-preview {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 12px;
  }

  .myth-item {
    padding: 10px 12px;
  }

  .myth-item span {
    font-size: 0.85rem;
  }

  .hero-trust-indicators {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .trust-item {
    width: 100%;
    justify-content: center;
  }

  .introduction {
    margin-top: 40px;
    padding: 0 15px;
  }

  .introduction-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .intro-card {
    padding: 25px;
  }

  .intro-card-header h3 {
    font-size: 1.2rem;
  }

  .intro-card-text {
    font-size: 1rem;
  }

  .introduction-title {
    font-size: 2rem;
  }

  .intro-header-icon {
    width: 70px;
    height: 70px;
  }

  .intro-header-icon i {
    font-size: 2.2rem;
  }

  .introduction-footer {
    padding: 25px 30px;
  }

  .intro-footer-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .intro-footer-content i {
    font-size: 1.8rem;
    margin: 0;
  }

  .intro-footer-content p {
    font-size: 1.05rem;
  }

  .section-header h2,
  .section-header h3 {
    font-size: 1.6rem;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .games {
    padding: 30px 20px;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .player-stats-showcase {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .stats-card {
    padding: 30px 25px;
  }

  .stat-icon-large {
    width: 70px;
    height: 70px;
  }

  .stat-icon-large i {
    font-size: 2rem;
  }

  .stat-number-large {
    font-size: 2.5rem;
  }

  .player-experiences-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .experience-card {
    padding: 30px 25px;
  }

  .community-cta {
    padding: 40px 25px;
  }

  .community-cta-content h4 {
    font-size: 1.6rem;
  }

  .community-cta-content p {
    font-size: 1rem;
  }

  .faq {
    padding: 30px 20px;
  }

  .eeat-section {
    padding: 25px 15px;
    margin-top: 40px;
  }

  .eeat-content {
    padding: 25px 30px;
  }

  .eeat-meta {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .eeat-item {
    padding: 12px;
  }

  .faq-container {
    gap: 25px;
  }

  .faq-category-header {
    padding: 20px 25px;
    flex-wrap: wrap;
  }

  .faq-category-header i {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }

  .faq-category-header h4 {
    font-size: 1.2rem;
  }

  .faq-question {
    padding: 20px 25px;
  }

  .faq-question h5 {
    font-size: 1.05rem;
  }

  .faq-answer {
    padding: 0 25px;
  }

  .faq-item.active .faq-answer {
    padding: 0 25px 20px;
  }

  .final-cta {
    padding: 50px 25px;
  }

  .cta-content h3 {
    font-size: 1.8rem;
  }

  /* Myth 2 - Split Layout Mobile */
  .myth-2-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .confusion-card,
  .facts-card {
    padding: 30px 25px;
  }

  .confusion-label span,
  .facts-label span {
    font-size: 1.1rem;
  }

  .payment-cards-grid {
    gap: 12px;
    margin: 20px 0;
  }

  .payment-card {
    padding: 20px;
  }

  .payment-card i {
    font-size: 1.6rem;
  }

  .payment-card span {
    font-size: 1rem;
  }

  .scr55-guide-card {
    padding: 35px 25px;
  }

  .guide-pillars {
    gap: 16px;
  }

  .pillar-item {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .pillar-number {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    margin: 0 auto;
  }

  /* Myth 3 - Timeline Mobile */
  .myth-3-timeline {
    padding-left: 40px;
  }

  .myth-3-timeline::before {
    left: 15px;
  }

  .timeline-dot {
    left: -35px;
    width: 20px;
    height: 20px;
    border-width: 3px;
  }

  .timeline-content {
    padding: 30px 25px;
  }

  .timeline-item:hover .timeline-content {
    transform: translateX(5px);
  }

  .fact-banner {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }

  .exception-box {
    padding: 20px;
  }

  /* Myth 4 - Centered Card Mobile */
  .confusion-compact {
    padding: 25px 20px;
  }

  .confusion-compact i {
    font-size: 2rem;
  }

  .systems-comparison {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .system-card {
    padding: 30px 25px;
  }

  .card-top {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .system-icon-large {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }

  .system-icon-large i {
    font-size: 2rem;
  }

  .rtp-value {
    font-size: 2rem;
  }

  .education-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .scr55-education {
    padding: 35px 25px;
  }

  /* Myth 5 - Comparison Mobile */
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .comparison-divider {
    order: 2;
    flex-direction: row;
    padding: 20px 0;
  }

  .divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--assassination-red), var(--assassination-gold), #3CC66C);
  }

  .comparison-side {
    padding: 30px 25px;
    order: 1;
  }

  .comparison-side:last-of-type {
    order: 3;
  }

  .side-header h4 {
    font-size: 1.3rem;
  }

  .safety-checklist-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .safety-item {
    padding: 25px 20px;
  }

  .safety-icon {
    width: 60px;
    height: 60px;
  }

  .safety-icon i {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .announcement-bar {
    padding: 8px 12px;
  }

  .announcement-content {
    gap: 10px;
    flex-wrap: wrap;
  }

  .announcement-icon {
    font-size: 1.2rem;
  }

  .announcement-text {
    width: 100%;
    order: 2;
  }

  .announcement-highlight {
    font-size: 0.85rem;
  }

  .announcement-details {
    font-size: 0.75rem;
  }

  .announcement-close {
    right: 8px;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .breadcrumb-nav {
    padding: 8px 15px;
  }

  .breadcrumb {
    font-size: 0.8rem;
    gap: 5px;
  }

  .breadcrumb li:not(:last-child)::after {
    margin: 0 5px;
  }

  .navbar {
    padding: 12px 15px;
  }

  .hero {
    padding: 30px 20px;
    margin-top: 20px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .hero-highlight {
    display: block;
    margin-top: 10px;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .hero-author {
    margin: 20px 0;
  }

  .author-info {
    padding: 12px 20px;
    gap: 12px;
  }

  .author-info i {
    font-size: 1.6rem;
  }

  .author-name {
    font-size: 1rem;
  }

  .author-credentials {
    font-size: 0.85rem;
  }

  .hero-myths-preview {
    padding: 15px;
    gap: 10px;
    margin-bottom: 25px;
  }

  .myth-item {
    padding: 10px;
    gap: 10px;
  }

  .myth-item i {
    font-size: 1rem;
  }

  .myth-item span {
    font-size: 0.8rem;
  }

  .hero-trust-indicators {
    margin-top: 25px;
    padding-top: 20px;
    gap: 12px;
  }

  .trust-item {
    padding: 8px 15px;
    font-size: 0.8rem;
  }

  .trust-item span {
    font-size: 0.75rem;
  }

  .hero-cta-group {
    margin-top: 25px;
    width: 100%;
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .introduction {
    margin-top: 25px;
    padding: 0 10px;
  }

  .introduction-header {
    margin-bottom: 35px;
  }

  .intro-header-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .intro-header-icon i {
    font-size: 2rem;
  }

  .introduction-title {
    font-size: 1.8rem;
  }

  .introduction-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .intro-card {
    padding: 25px 20px;
  }

  .intro-card-header {
    gap: 12px;
    margin-bottom: 15px;
  }

  .intro-card-header i {
    font-size: 1.8rem;
  }

  .intro-card-header h3 {
    font-size: 1.15rem;
  }

  .intro-card-text {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .introduction-footer {
    padding: 20px 25px;
  }

  .intro-footer-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .intro-footer-content i {
    font-size: 1.6rem;
    margin: 0;
  }

  .intro-footer-content p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    padding: 20px 15px;
  }

  .section-header h2,
  .section-header h3 {
    font-size: 1.4rem;
  }

  .games,
  .faq {
    padding: 25px 15px;
  }

  .eeat-section {
    padding: 20px 15px;
    margin-top: 30px;
  }

  .eeat-content {
    padding: 20px 20px;
  }

  .eeat-meta {
    gap: 15px;
  }

  .eeat-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .eeat-item i {
    font-size: 1.5rem;
    margin: 0 auto;
  }

  .eeat-item > div {
    align-items: center;
  }

  .faq-container {
    gap: 20px;
  }

  .faq-category-header {
    padding: 18px 20px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .faq-category-header i {
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }

  .faq-category-header h4 {
    font-size: 1.1rem;
  }

  .faq-question {
    padding: 18px 20px;
    flex-wrap: wrap;
  }

  .faq-question h5 {
    font-size: 1rem;
    width: 100%;
    margin-bottom: 8px;
  }

  .faq-question i {
    font-size: 1.2rem;
    margin-left: auto;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 18px;
  }

  .faq-answer p {
    font-size: 1rem;
  }

  .player-stats-showcase {
    gap: 20px;
  }

  .stats-card {
    padding: 25px 20px;
  }

  .stat-icon-large {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .stat-icon-large i {
    font-size: 1.8rem;
  }

  .stat-number-large {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .stat-description {
    font-size: 0.9rem;
  }

  .player-experiences-grid {
    gap: 20px;
  }

  .experience-card {
    padding: 25px 20px;
  }

  .experience-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .experience-avatar {
    margin: 0 auto;
  }

  .experience-content p {
    font-size: 1rem;
  }

  .community-cta {
    padding: 35px 20px;
  }

  .community-cta-content i {
    font-size: 2.5rem;
  }

  .community-cta-content h4 {
    font-size: 1.4rem;
  }

  .community-cta-content p {
    font-size: 0.95rem;
  }

  .bonus-card {
    padding: 20px;
  }

  .myth-section {
    padding: 0 10px;
    margin-top: 40px;
  }

  .myth-header {
    margin-bottom: 35px;
  }

  .myth-number-badge {
    padding: 6px 18px;
  }

  .myth-number-badge span {
    font-size: 0.6rem;
  }

  .myth-number-badge strong {
    font-size: 1rem;
  }

  .myth-title {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 30px;
  }

  .myth-content-wrapper {
    gap: 35px;
  }

  .myth-content-block {
    padding: 30px 22px;
  }

  .block-header {
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
  }

  .block-icon {
    width: 36px;
    height: 36px;
  }

  .block-icon i {
    font-size: 1.3rem;
  }

  .block-header h3 {
    font-size: 1.25rem;
  }

  .block-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .emphasis-text {
    font-size: 1.05rem !important;
  }

  .fact-stat {
    padding: 18px;
    gap: 14px;
    margin: 24px 0;
  }

  .stat-icon {
    width: 42px;
    height: 42px;
  }

  .stat-icon i {
    font-size: 1.2rem;
  }

  .stat-highlight {
    font-size: 1.5rem;
  }

  .stat-detail {
    font-size: 0.9rem;
  }

  .scr55-checklist {
    margin: 24px 0;
  }

  .scr55-checklist li {
    padding: 14px 0;
    gap: 12px;
  }

  .scr55-checklist li i {
    font-size: 1.1rem;
  }

  .scr55-checklist li span {
    font-size: 0.95rem;
  }

  .warning-box {
    padding: 20px;
    gap: 14px;
    margin-top: 24px;
  }

  .warning-box i {
    font-size: 1.3rem;
  }

  .warning-content {
    font-size: 0.95rem;
  }

  .payment-restrictions {
    padding: 18px;
    margin: 20px 0;
    gap: 10px;
  }

  .restriction-item {
    padding: 12px 0;
    gap: 12px;
  }

  .restriction-item i {
    font-size: 1.2rem;
  }

  .restriction-item span {
    font-size: 0.95rem;
  }

  .tip-box {
    padding: 18px;
    gap: 14px;
    margin-top: 24px;
  }

  .tip-box i {
    font-size: 1.2rem;
  }

  .tip-content {
    font-size: 0.95rem;
  }

  .fairness-systems {
    gap: 14px;
    margin: 20px 0;
  }

  .system-item {
    padding: 18px;
    gap: 12px;
    flex-direction: column;
    text-align: center;
  }

  .system-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
  }

  .system-icon i {
    font-size: 1.3rem;
  }

  .system-content strong {
    font-size: 0.95rem;
  }

  .system-content p {
    font-size: 0.9rem;
  }

  .risk-list {
    padding: 18px;
    margin: 20px 0;
    gap: 12px;
  }

  .risk-item {
    padding: 12px 0;
    gap: 12px;
  }

  .risk-item i {
    font-size: 1.1rem;
  }

  .risk-item span {
    font-size: 0.95rem;
  }

  .bonus-insight {
    padding: 35px 15px;
    margin-top: 50px;
  }

  .bonus-insight-header {
    margin-bottom: 35px;
  }

  .bonus-insight-header h2 {
    font-size: 1.6rem;
  }

  .bonus-insight-header p {
    font-size: 0.95rem;
  }

  .betstop-section {
    padding: 25px 20px;
    margin-bottom: 30px;
  }

  .betstop-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  .betstop-header h3 {
    font-size: 1.3rem;
  }

  .betstop-feature {
    gap: 12px;
  }

  .betstop-feature i {
    font-size: 1.2rem;
  }

  .betstop-feature p {
    font-size: 0.95rem;
  }

  .responsibility-strategies h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }

  .strategy-item {
    padding: 16px;
    gap: 12px;
  }

  .strategy-item i {
    font-size: 1.3rem;
  }

  .strategy-item span {
    font-size: 0.95rem;
  }

  .insight-footer {
    margin-top: 30px;
    padding-top: 24px;
  }

  .insight-message {
    padding: 20px;
    gap: 12px;
    flex-direction: column;
    text-align: center;
  }

  .insight-message i {
    font-size: 1.5rem;
  }

  .insight-message p {
    font-size: 1rem;
  }

  .final-cta {
    padding: 40px 20px;
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }

  /* Myth 2 - Extra Small Mobile */
  .confusion-card,
  .facts-card {
    padding: 25px 20px;
  }

  .confusion-label span,
  .facts-label span {
    font-size: 1rem;
  }

  .date-highlight {
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  .payment-card {
    padding: 16px;
    flex-direction: column;
    text-align: center;
  }

  .payment-card i {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .scr55-guide-card {
    padding: 30px 20px;
  }

  .guide-header h3 {
    font-size: 1.4rem;
  }

  .pillar-item {
    padding: 18px;
  }

  .pillar-content strong {
    font-size: 1rem;
  }

  /* Myth 3 - Extra Small Mobile */
  .myth-3-timeline {
    padding-left: 35px;
  }

  .timeline-dot {
    left: -30px;
    width: 18px;
    height: 18px;
  }

  .timeline-content {
    padding: 25px 20px;
  }

  .timeline-label {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .fact-banner span {
    font-size: 1rem;
  }

  .crypto-dimension {
    padding: 20px;
  }

  /* Myth 4 - Extra Small Mobile */
  .confusion-compact {
    padding: 20px 15px;
  }

  .confusion-compact i {
    font-size: 1.8rem;
  }

  .confusion-compact p {
    font-size: 1rem;
  }

  .system-card {
    padding: 25px 20px;
  }

  .system-icon-large {
    width: 50px;
    height: 50px;
  }

  .system-icon-large i {
    font-size: 1.6rem;
  }

  .rtp-value {
    font-size: 1.6rem;
  }

  .system-card h4 {
    font-size: 1.2rem;
  }

  .education-item {
    padding: 16px;
    flex-direction: column;
    text-align: center;
  }

  .education-item i {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  /* Myth 5 - Extra Small Mobile */
  .confusion-inline {
    padding: 25px 20px;
  }

  .confusion-inline i {
    font-size: 2rem;
  }

  .confusion-inline p {
    font-size: 1rem;
  }

  .comparison-header h3 {
    font-size: 1.5rem;
  }

  .comparison-side {
    padding: 25px 20px;
  }

  .side-header h4 {
    font-size: 1.2rem;
  }

  .point-item {
    padding: 14px;
    flex-direction: column;
    text-align: center;
  }

  .point-item i {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .scr55-safety-guide {
    padding: 30px 20px;
  }

  .safety-header h3 {
    font-size: 1.4rem;
  }

  .safety-item {
    padding: 20px 15px;
  }

  .safety-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .safety-icon i {
    font-size: 1.4rem;
  }

  .safety-item strong {
    font-size: 1rem;
  }

  .safety-item span {
    font-size: 0.85rem;
  }
}
