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

/* Access ID Overlay Styles */
.access-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.access-modal {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 2px solid #00ff88;
  border-radius: 15px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.access-header {
  text-align: center;
  margin-bottom: 2rem;
}

.access-header h2 {
  color: #00ff88;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px #00ff88;
}

.access-header p {
  color: #cccccc;
  font-size: 1rem;
}

.access-content input {
  width: 100%;
  padding: 1rem;
  font-size: 1.2rem;
  background: #0a0a0a;
  border: 2px solid #333;
  border-radius: 8px;
  color: #00ff88;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.access-content input:focus {
  outline: none;
  border-color: #00ff88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.access-error {
  color: #ff4444;
  text-align: center;
  margin-bottom: 1rem;
  min-height: 1.5rem;
  font-size: 0.9rem;
}

.access-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.access-btn-primary,
.access-btn-secondary {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.access-btn-primary {
  background: #00ff88;
  color: #1a1a1a;
}

.access-btn-primary:hover {
  background: #00cc66;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.access-btn-secondary {
  background: transparent;
  color: #00ff88;
  border: 2px solid #00ff88;
}

.access-btn-secondary:hover {
  background: #00ff88;
  color: #1a1a1a;
}

.access-help {
  background: #333;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
  color: #cccccc;
}

.access-help a {
  color: #00ff88;
  text-decoration: none;
}

.access-help a:hover {
  text-decoration: underline;
}

/* Top-right Access Display */
.access-display {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 1px solid #00ff88;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1000;
}

.access-label {
  color: #cccccc;
  font-size: 0.8rem;
}

.access-id-value {
  color: #00ff88;
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Logout button removed - no persistent sessions */

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a4a3a 25%, #2d5a4d 50%, #1a4a3a 75%, #0a0a0a 100%);
  color: #00ff88;
  min-height: 100vh;
  overflow-x: auto;
}

/* ==================== HERO SECTION ==================== */
.hero-section-below {
  position: relative;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 74, 58, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.highlight-strike {
  position: relative;
  color: #ff6b6b;
  text-decoration: line-through;
  text-decoration-color: #ff6b6b;
  text-decoration-thickness: 3px;
}

.highlight-glow {
  color: #00ff88;
  text-shadow: 0 0 20px #00ff88, 0 0 40px #00ff88;
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    text-shadow: 0 0 20px #00ff88, 0 0 40px #00ff88;
  }
  50% {
    text-shadow: 0 0 30px #00ff88, 0 0 60px #00ff88, 0 0 80px #00ff88;
  }
}

.hero-subtitle {
  font-size: 1.8rem;
  color: #cccccc;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: #00ff88;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Hover effect for 52 countries stat */
#countries-stat:hover .countries-hover-image {
  display: block !important;
  animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

#countries-stat:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.hero-cta {
  margin-top: 2rem;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 50px;
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
  color: #000;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.5);
  animation: cta-pulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.5);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 15px 60px rgba(0, 255, 136, 0.7);
    transform: translateY(-5px);
  }
}

.hero-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.hero-btn-primary:hover::before {
  left: 100%;
}

.hero-btn-primary:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 70px rgba(0, 255, 136, 0.8);
}

.btn-icon {
  font-size: 2rem;
  animation: icon-bounce 1s ease-in-out infinite;
}

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

.price-badge {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.old-price {
  font-size: 1.3rem;
  color: #ff6b6b;
  text-decoration: line-through;
  font-weight: bold;
}

.new-price {
  font-size: 1.8rem;
  color: #00ff88;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  /* Prevent horizontal scrolling */
  body {
    overflow-x: hidden;
    width: 100%;
    font-size: 0.85rem !important;
  }

  /* GLOBAL - Max width control */
  *,
  *::before,
  *::after {
    max-width: 100vw;
  }

  /* Hero Section Mobile Adjustments */
  .hero-section-below {
    padding: 1.5rem 0.75rem !important;
  }

  .hero-title {
    font-size: 1.1rem !important;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: 0.8rem !important;
    margin-bottom: 1rem;
  }

  .stat-number {
    font-size: 1.4rem !important;
  }

  .stat-label {
    font-size: 0.7rem !important;
    letter-spacing: 0.5px;
  }

  .hero-stats {
    gap: 1rem;
  }

  /* ALL BUTTONS - PROFESSIONAL SIZE */
  .hero-btn-primary,
  .btn-primary,
  .btn-secondary,
  button,
  .detail-btn,
  .course-details-btn,
  a[class*="btn"],
  [class*="-btn"] {
    font-size: 0.75rem !important;
    padding: 10px 18px !important;
    gap: 6px !important;
    letter-spacing: 0.5px !important;
  }

  /* Emojis and Icons - Balanced */
  .btn-icon,
  [class*="icon"],
  [class*="-icon"] {
    font-size: 0.9rem !important;
  }

  /* Price Badge - Readable */
  .old-price {
    font-size: 0.75rem !important;
  }

  .new-price {
    font-size: 0.95rem !important;
  }

  .price-badge {
    margin-top: 1rem;
    gap: 10px;
  }

  /* Glowing Price - Prominent but not huge */
  [style*="font-size: 1.8rem"],
  [style*="font-size: 2rem"],
  [style*="font-size: 2.5rem"],
  [style*="font-size: 3rem"] {
    font-size: 1.1rem !important;
  }
}

/* ==================== SECTION STYLES ==================== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 204, 102, 0.15) 100%);
  border: 2px solid #00ff88;
  border-radius: 30px;
  padding: 10px 25px;
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: bold;
  color: #00ff88;
}

.section-badge.glow {
  animation: badge-pulse 2s ease-in-out infinite;
}

.section-badge.gold {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
  border-color: #ffd700;
  color: #ffd700;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 3rem;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
  line-height: 1.4;
}

.gradient-text {
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 50%, #009944 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==================== MINDSET SECTION ==================== */
.mindset-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 74, 58, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
  padding: 4rem 0;
}

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

.feature-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 74, 58, 0.3) 100%);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.feature-card:hover {
  transform: translateY(-10px);
  border-color: #00ff88;
  box-shadow: 0 15px 50px rgba(0, 255, 136, 0.4);
}

.feature-card.highlighted {
  border-color: #00ff88;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 204, 102, 0.1) 100%);
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.feature-content h3 {
  font-size: 1.5rem;
  color: #00ff88;
  margin-bottom: 1rem;
  font-weight: bold;
}

.feature-content p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
}

/* ==================== CAREER SECTION ==================== */
.career-section {
  background: linear-gradient(135deg, rgba(26, 74, 58, 0.4) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(26, 74, 58, 0.4) 100%);
  padding: 4rem 0;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.career-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 74, 58, 0.3) 100%);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.career-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #00cc66);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.career-card:hover::after {
  transform: scaleX(1);
}

.career-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: #00ff88;
  box-shadow: 0 20px 60px rgba(0, 255, 136, 0.5);
}

.career-card.primary {
  border-color: #00ff88;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 204, 102, 0.1) 100%);
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
}

.career-card.highlight {
  border-color: #ffd700;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.1) 100%);
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.card-header h3 {
  font-size: 1.3rem;
  color: #00ff88;
  font-weight: bold;
}

.career-card p {
  font-size: 1.05rem;
  color: #cccccc;
  line-height: 1.8;
}

/* ==================== RISK SECTION ==================== */
.risk-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 74, 58, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
  padding: 4rem 0;
}

.risk-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.truth-box {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 74, 58, 0.3) 100%);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: all 0.4s ease;
}

.incentive-box {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 74, 58, 0.3) 100%);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  transition: all 0.4s ease;
}

.truth-box:hover {
  border-color: #00ff88;
  box-shadow: 0 15px 50px rgba(0, 255, 136, 0.4);
  transform: translateX(10px);
}

.incentive-box:hover {
  border-color: #00ff88;
  box-shadow: 0 15px 50px rgba(0, 255, 136, 0.4);
  transform: scale(1.02);
}

.truth-icon,
.incentive-icon {
  font-size: 4rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.6));
}

.truth-text h3,
.incentive-content h3 {
  font-size: 1.8rem;
  color: #00ff88;
  margin-bottom: 1rem;
  font-weight: bold;
}

.truth-text p {
  font-size: 1.15rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.highlight-text {
  color: #ffffff;
  font-weight: bold;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 204, 102, 0.1) 100%);
  padding: 1rem;
  border-left: 4px solid #00ff88;
  border-radius: 8px;
}

.prize-text {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 1rem;
}

.prize-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #ffd700;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
  margin: 1rem 0;
  animation: prize-glow 2s ease-in-out infinite;
}

@keyframes prize-glow {
  0%,
  100% {
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 50px rgba(255, 215, 0, 1), 0 0 70px rgba(255, 165, 0, 0.8);
    transform: scale(1.05);
  }
}

.prize-subtitle {
  font-size: 1.3rem;
  color: #00ff88;
  font-weight: bold;
}

.palestine-box {
  background: linear-gradient(135deg, rgba(0, 128, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
  border: 3px solid #00ff88;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
  animation: palestine-pulse 3s ease-in-out infinite;
}

@keyframes palestine-pulse {
  0%,
  100% {
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
  }
  50% {
    box-shadow: 0 15px 60px rgba(0, 255, 136, 0.5);
  }
}

.palestine-flag {
  font-size: 4rem;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.palestine-content h3 {
  font-size: 1.8rem;
  color: #00ff88;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.palestine-content p {
  font-size: 1.1rem;
  color: #cccccc;
}

/* ==================== AUTHORITY SECTION ==================== */
.authority-section {
  background: linear-gradient(135deg, rgba(26, 74, 58, 0.4) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(26, 74, 58, 0.4) 100%);
  padding: 4rem 0;
}

.authority-content {
  display: grid;
  gap: 3rem;
}

.instructor-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 74, 58, 0.3) 100%);
  border: 2px solid rgba(255, 215, 0, 0.5);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.2);
}

.instructor-header {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.instructor-avatar {
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  color: #000;
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.5);
}

.instructor-info h3 {
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.credentials {
  display: grid;
  gap: 1rem;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: #cccccc;
}

.credential-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.5));
}

.instructor-statement {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 204, 102, 0.05) 100%);
  border-left: 4px solid #00ff88;
  border-radius: 12px;
  padding: 2rem;
}

.statement-text {
  font-size: 1.3rem;
  color: #ffffff;
  line-height: 1.8;
  font-style: italic;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 74, 58, 0.3) 100%);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 20px;
  padding: 2rem;
}

.proof-stat {
  text-align: center;
  padding: 1.5rem;
  border-radius: 15px;
  background: rgba(0, 255, 136, 0.05);
  transition: all 0.3s ease;
}

.proof-stat:hover {
  background: rgba(0, 255, 136, 0.15);
  transform: translateY(-5px);
}

.proof-number {
  font-size: 3rem;
  font-weight: 900;
  color: #00ff88;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
  margin-bottom: 0.5rem;
}

.proof-label {
  font-size: 1rem;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  /* Section Titles - PROMINENT */
  .section-title {
    font-size: 1.15rem !important;
    margin-bottom: 1rem;
    font-weight: 900;
  }

  .section-badge {
    font-size: 0.75rem !important;
    padding: 6px 14px;
  }

  .content-block,
  .career-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .section-container {
    padding: 1.5rem 0.75rem !important;
  }

  /* Feature Cards */
  .feature-card {
    padding: 1rem;
  }

  .feature-icon {
    font-size: 1.8rem !important;
    margin-bottom: 0.75rem;
  }

  .feature-content h3 {
    font-size: 0.95rem !important;
    font-weight: bold;
  }

  .feature-content p {
    font-size: 0.8rem !important;
    line-height: 1.5;
  }

  /* Career Cards */
  .career-card {
    padding: 1rem;
  }

  .card-icon {
    font-size: 1.5rem !important;
  }

  .card-header h3 {
    font-size: 0.9rem !important;
    font-weight: bold;
  }

  .card-header {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .career-card p {
    font-size: 0.75rem !important;
  }

  /* Truth and Incentive Boxes */
  .truth-box,
  .incentive-box {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .truth-icon,
  .incentive-icon {
    font-size: 1.8rem !important;
  }

  .truth-text h3,
  .incentive-content h3 {
    font-size: 1rem !important;
    font-weight: bold;
  }

  .truth-text p {
    font-size: 0.8rem !important;
    line-height: 1.5;
  }

  .prize-amount {
    font-size: 1.5rem !important;
  }

  .prize-text {
    font-size: 0.8rem !important;
  }

  .prize-subtitle {
    font-size: 0.9rem !important;
  }

  .highlight-text {
    font-size: 0.8rem !important;
    padding: 0.75rem;
  }

  /* Instructor Section - PROMINENT */
  .instructor-header {
    flex-direction: column;
    text-align: center;
  }

  .instructor-card {
    padding: 1.5rem;
  }

  .avatar-placeholder {
    width: 80px;
    height: 80px;
    font-size: 1.8rem !important;
  }

  .instructor-info h3 {
    font-size: 1.2rem !important;
    margin-bottom: 1rem;
    font-weight: bold;
  }

  .credential-item {
    font-size: 0.8rem !important;
  }

  .credential-icon {
    font-size: 1rem !important;
  }

  .statement-text {
    font-size: 0.85rem !important;
    line-height: 1.6;
  }

  .instructor-statement {
    padding: 1.2rem;
  }

  .proof-stats {
    grid-template-columns: 1fr;
    padding: 1.2rem;
  }

  .proof-stat {
    padding: 1rem;
  }

  .proof-number {
    font-size: 1.5rem !important;
  }

  .proof-label {
    font-size: 0.75rem !important;
  }

  /* Phases table mobile responsive */
  div[style*="grid-template-columns: auto 1fr auto"] {
    grid-template-columns: 1fr !important;
    gap: 0.6rem !important;
    text-align: center !important;
  }
}

.header {
  text-align: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #00ff88;
}

.header-gif {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 10px;
}

.header-video {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 10px;
  object-fit: cover;
}

/* Desktop: Show video, hide image */
.header-desktop {
  display: block;
}

.header-mobile {
  display: none;
}

/* Mobile: Show image, hide video */
@media (max-width: 768px) {
  .header-desktop {
    display: none !important;
  }

  .header-mobile {
    display: block !important;
  }
}

/* Course Details Button and Modal */
.course-details-trigger {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 2rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  position: relative;
}

/* Mobile: Stack buttons vertically */
@media (max-width: 768px) {
  .course-details-trigger {
    flex-direction: column;
    gap: 20px;
  }
}

.course-details-btn {
  padding: 18px 40px;
  font-size: 1.3rem;
  font-weight: bold;
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
  color: #000;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(0, 255, 136, 0.4);
  font-family: "Pacifico", "Lobster", "Righteous", cursive;
}

.course-details-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 255, 136, 0.6);
  background: linear-gradient(135deg, #00cc66 0%, #00ff88 100%);
}

/* Trophy Button Styles */
.trophy-btn {
  padding: 20px;
  font-size: 3rem;
  background: #000000;
  color: #ffd700;
  border: 3px solid #20beff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(32, 190, 255, 0.6), 0 0 60px rgba(32, 190, 255, 0.4);
  animation: trophy-glow 2s ease-in-out infinite;
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes trophy-glow {
  0%,
  100% {
    box-shadow: 0 8px 30px rgba(32, 190, 255, 0.6), 0 0 60px rgba(32, 190, 255, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 10px 40px rgba(32, 190, 255, 0.8), 0 0 80px rgba(32, 190, 255, 0.6);
    transform: scale(1.05);
  }
}

.trophy-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 45px rgba(32, 190, 255, 0.9), 0 0 100px rgba(32, 190, 255, 0.7);
  animation: none;
}

.trophy-btn:active {
  transform: translateY(-3px) scale(1.05);
}

/* Competition Popup Styles */
.competition-popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999 !important; /* Very high z-index to ensure visibility */
  background: linear-gradient(135deg, #0a0a0a 0%, #1a4a3a 50%, #0a0a0a 100%);
  border: 3px solid #00ff88;
  border-radius: 20px;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 0 50px rgba(0, 255, 136, 0.5), 0 0 100px rgba(0, 255, 136, 0.3);
}

/* Add backdrop when popup is visible */
.competition-popup::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

.competition-popup-content {
  position: relative;
  z-index: 1;
}

.social-buttons-group {
  display: flex;
  gap: 15px;
  position: absolute;
  right: 2rem;
}

.course-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  overflow-y: auto;
}

.course-modal-content {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a4a3a 50%, #0a0a0a 100%);
  margin: 3% auto;
  padding: 0;
  border: 2px solid #00ff88;
  border-radius: 15px;
  width: 90%;
  max-width: 900px;
  position: relative;
  box-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

.course-modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #00ff88;
  font-size: 32px;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #00ff88;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.course-modal-close:hover {
  background: #00ff88;
  color: #000;
  transform: rotate(90deg);
}

.course-modal-body {
  padding: 50px 40px;
  color: #cccccc;
  font-size: 16px;
  line-height: 1.8;
}

.course-modal-body h1 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.course-modal-body h2 {
  color: #00ff88;
  font-size: 1.6rem;
  margin-bottom: 15px;
  margin-top: 25px;
}

.course-section {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border-left: 4px solid #00ff88;
}

.highlight-box {
  background: rgba(0, 255, 136, 0.05);
  border: 2px solid #00ff88;
  border-left: 6px solid #00ff88;
}

.course-section ul {
  margin: 15px 0;
  padding-right: 30px;
}

.course-section li {
  margin: 10px 0;
  line-height: 1.8;
}

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

.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: rgba(0, 255, 136, 0.05);
  padding: 15px;
  border-radius: 8px;
}

.info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.buttons-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.detail-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
  color: #000;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px rgba(0, 255, 136, 0.3);
  border: none;
  cursor: pointer;
}

.detail-btn:hover {
  transform: translateX(-5px);
  box-shadow: 0 5px 25px rgba(0, 255, 136, 0.5);
}

.detail-btn .btn-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.udemy-btn {
  background: linear-gradient(135deg, #ec5252 0%, #a435f0 100%);
  color: #fff;
}

.youtube-btn {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: #fff;
}

.linkedin-btn {
  background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
  color: #fff;
}

.references-btn {
  background: linear-gradient(135deg, #4a9eff 0%, #3a7ecc 100%);
  color: #fff;
}

.form-btn {
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
  color: #000;
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
  .course-modal-content {
    width: 95%;
    margin: 5% auto;
    padding: 0;
  }

  .course-modal-body {
    padding: 15px 10px;
  }

  .course-modal-body h1 {
    font-size: 0.85rem !important;
  }

  .course-modal-body h2 {
    font-size: 0.75rem !important;
  }

  .course-modal-body p,
  .course-modal-body li {
    font-size: 0.65rem !important;
    line-height: 1.4;
  }

  .course-section {
    padding: 10px;
    margin-bottom: 15px;
  }

  .detail-btn,
  .udemy-btn,
  .youtube-btn,
  .linkedin-btn,
  .references-btn,
  .form-btn {
    font-size: 0.7rem !important;
    padding: 7px 12px !important;
  }

  .detail-btn .btn-icon {
    font-size: 0.75rem !important;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .info-item {
    padding: 8px;
  }

  .info-icon {
    font-size: 1rem !important;
  }

  /* Course Details Button */
  .course-details-btn {
    font-size: 0.7rem !important;
    padding: 10px 20px !important;
  }

  /* Trophy Button - Much Smaller on Mobile */
  .trophy-btn {
    font-size: 1.3rem !important;
    width: 45px !important;
    height: 45px !important;
    border-width: 2px;
  }

  /* Competition Popup */
  .competition-popup {
    padding: 12px;
    max-width: 95%;
  }

  .competition-popup h1,
  .competition-popup h2 {
    font-size: 0.85rem !important;
  }

  .competition-popup p {
    font-size: 0.65rem !important;
  }

  .course-modal-close {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}

/* Tech logos section */
.tech-logos {
  padding: 1rem 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid #333;
}

.header-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(45deg, #00ff88, #00cc66);
  color: #000;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #00cc66, #009944);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  border: 2px solid #00ff88;
}

.btn-secondary:hover {
  background: rgba(0, 255, 136, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* Roadmap Section Styling */
.roadmap-section {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem 1rem;
}

.roadmap-header {
  text-align: center;
  margin-bottom: 2rem;
}

.roadmap-title {
  font-size: 2.75rem;
  color: #00ff88;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
  font-weight: bold;
  font-family: "Georgia", "Times New Roman", serif;
  letter-spacing: 3px;
  font-style: italic;
}

@media (max-width: 768px) {
  .roadmap-title {
    font-size: 1.5rem;
  }

  .roadmap-header .header-controls {
    flex-direction: column;
  }

  .roadmap-header .btn-primary,
  .roadmap-header .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

.additional-purchase-note {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 8px;
  color: #00ff88;
  font-size: 0.9rem;
  text-align: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.social-media-buttons {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #00ff88;
  background: rgba(0, 255, 136, 0.1);
  border: 2px solid #00ff88;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.social-btn:hover {
  background: rgba(0, 255, 136, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.6), 0 5px 15px rgba(0, 255, 136, 0.4);
  color: #ffffff;
}

.social-btn svg {
  width: 22px;
  height: 22px;
}

.roadmap-container {
  position: relative;
  margin: 2rem auto;
  width: 95%; /* Increased from 90% to 95% */
  max-width: 2000px; /* Increased from 1400px to 2000px */
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  border: 2px solid #00ff88;
  overflow: hidden; /* Enable proper zoom */
  padding: 20px; /* Internal padding for spacing */
  min-height: 600px; /* Minimum height for mobile */
}

/* Mobile: Better roadmap visibility */
@media (max-width: 768px) {
  .roadmap-container {
    width: 98%; /* Almost full width on mobile */
    margin: 1rem auto;
    padding: 10px;
    min-height: 500px; /* Slightly smaller min-height on mobile */
  }

  #roadmap {
    height: auto !important; /* Let it scale naturally */
    min-height: 600px; /* Ensure minimum viewable area */
  }
}

/* Controls positioned next to roadmap */
.controls {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 10px;
}

.controls button {
  padding: 8px 12px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid #00ff88;
  border-radius: 5px;
  color: #00ff88;
  cursor: pointer;
  transition: all 0.3s ease;
}

.controls button:hover {
  background: rgba(0, 255, 136, 0.2);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

#roadmap {
  display: block;
  background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
  touch-action: pan-x pan-y pinch-zoom; /* Enable smooth touch interactions on mobile */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#roadmap text,
#roadmap .topic-text,
#roadmap .cluster-title,
#roadmap .lecture-text {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: auto;
}

.cluster {
  cursor: pointer;
  transition: all 0.3s ease;
}

.cluster-background {
  fill: rgba(0, 0, 0, 0.8);
  stroke: #00ff88;
  stroke-width: 1;
  transition: all 0.3s ease;
  rx: 15;
}

.cluster:hover .cluster-background {
  fill: rgba(0, 255, 136, 0.15);
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.4));
}

.cluster-title {
  fill: #00ff88;
  font-size: 16px;
  font-weight: bold;
  text-anchor: middle;
  text-shadow: 0 0 2px #00ff88;
}

.topic-node {
  cursor: pointer;
  transition: all 0.3s ease;
}

.topic-circle {
  fill: rgba(0, 0, 0, 0.9);
  stroke: #00ff88;
  stroke-width: 1;
  transition: all 0.3s ease;
}

.topic-node:hover .topic-circle {
  fill: rgba(0, 255, 136, 0.2);
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.6));
}

.topic-node.selected .topic-circle {
  fill: rgba(0, 255, 136, 0.4);
  stroke: #00ff66;
  stroke-width: 2;
}

.topic-text {
  fill: #cccccc;
  font-size: 11px;
  text-anchor: middle;
  pointer-events: none;
}

.topic-checkbox {
  fill: none;
  stroke: #00ff88;
  stroke-width: 2;
}

.topic-checkbox.checked {
  fill: #00ff88;
}

.lecture-group {
  stroke: rgba(0, 204, 102, 0.4);
  stroke-width: 1;
  fill: rgba(0, 204, 102, 0.08);
}

.connection-line {
  stroke: #00ff88;
  stroke-width: 2;
  stroke-opacity: 0.6;
  stroke-dasharray: 2, 2;
}

.tech-logos {
  margin-top: 2rem;
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border-top: 1px solid #00ff88;
}

.tech-scroll {
  display: flex;
  animation: scroll 20s linear infinite;
  gap: 3rem;
  white-space: nowrap;
}

.tech-item {
  background: rgba(0, 255, 136, 0.1);
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid #00ff88;
  color: #00ff88;
  font-weight: bold;
  opacity: 0.7;
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: fit-content;
}

.tech-item:hover {
  opacity: 1;
  background: rgba(0, 255, 136, 0.2);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
  transform: translateY(-2px);
}

.tech-icon {
  font-size: 1.2em;
  filter: brightness(1.2);
}

.tech-name {
  font-size: 0.9em;
  white-space: nowrap;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Pulse glow animation for attend all button */
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6), 0 0 60px rgba(0, 255, 136, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.8), 0 0 80px rgba(0, 255, 136, 0.6);
    transform: scale(1.05);
  }
}

.expanded .topic-node {
  opacity: 1;
  pointer-events: all;
}

.collapsed .topic-node {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  /* ================================================================
       🎨 MOBILE FONT SIZE CONTROL - CHANGE ONLY THESE VARIABLES
       ================================================================ */
  :root {
    --mobile-title: 2.1rem; /* Big but not huge - Titles & Headers */
    --mobile-subtitle: 0.95rem; /* Section headers */
    --mobile-text: 0.85rem; /* Moderate - Regular text/paragraphs */
    --mobile-button: 0.75rem; /* Big but not huge - Same throughout */
    --mobile-small: 0.7rem; /* Small text/labels */
  }
  /* ================================================================ */

  /* Header */
  .header {
    padding: 0.75rem;
  }

  .header h1 {
    font-size: var(--mobile-title) !important;
  }

  .header-content {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 0.5rem;
  }

  .header-controls {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .btn-primary,
  .btn-secondary {
    font-size: var(--mobile-button) !important;
    padding: 10px 18px !important;
    width: 100%;
    max-width: 260px;
    letter-spacing: 0.5px;
  }

  .social-media-buttons {
    position: static;
    transform: none;
    order: -1;
    justify-content: center;
    gap: 0.4rem;
  }

  .social-btn {
    width: 34px;
    height: 34px;
  }

  .social-btn svg {
    width: 16px;
    height: 16px;
  }

  /* Roadmap Section */
  .roadmap-section {
    padding: 1.5rem 0.75rem;
  }

  .roadmap-title {
    font-size: var(--mobile-subtitle) !important;
    letter-spacing: 0.5px;
  }

  .roadmap-container {
    margin: 0.5rem;
    padding: 8px;
    width: 98%;
  }

  .controls {
    position: static;
    justify-content: center;
    padding: 6px;
    background: rgba(0, 0, 0, 0.7);
    gap: 6px;
    flex-wrap: wrap;
  }

  .controls button {
    font-size: var(--mobile-small) !important;
    padding: 5px 8px !important;
  }

  /* Access Overlay Mobile */
  .access-modal {
    padding: 1.2rem;
    width: 92%;
  }

  .access-header h2 {
    font-size: var(--mobile-title) !important;
  }

  .access-header p {
    font-size: var(--mobile-button) !important;
  }

  .access-content input {
    font-size: var(--mobile-text) !important;
    padding: 0.7rem;
    letter-spacing: 1px;
  }

  .access-btn-primary,
  .access-btn-secondary {
    font-size: var(--mobile-button) !important;
    padding: 0.7rem !important;
  }

  .access-help {
    font-size: var(--mobile-small) !important;
    padding: 0.7rem;
  }

  .access-help ul li {
    font-size: var(--mobile-small) !important;
    margin-bottom: 0.4rem;
  }

  .access-help a {
    font-size: var(--mobile-small) !important;
  }

  .access-error {
    font-size: var(--mobile-button) !important;
  }
}

/* YouTube Video Section */
.video-section {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(0, 0, 0, 0.5);
}

.video-section .udemy-review-link {
  display: inline-block;
  color: #00ff88;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 1.5rem;
  padding: 10px 20px;
  border: 2px solid #00ff88;
  border-radius: 8px;
  background: rgba(0, 255, 136, 0.1);
  transition: all 0.3s ease;
}

.video-section .udemy-review-link:hover {
  background: rgba(0, 255, 136, 0.2);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
  transform: translateY(-2px);
}

.video-container {
  display: inline-block;
  border: 3px solid #00ff88;
  border-radius: 12px;
  padding: 8px;
  background: rgba(0, 255, 136, 0.05);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
  width: 65%;
  min-width: 300px;
  position: relative;
  cursor: pointer;
}

.video-container iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}

/* YouTube Lite Embed Styles */
.youtube-lite {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
}

.youtube-lite-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.youtube-lite-playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background-color: rgba(33, 33, 33, 0.9);
  border-radius: 14px;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
  cursor: pointer;
}

.youtube-lite-playbtn:hover {
  background-color: #cc181e;
  transform: translate(-50%, -50%) scale(1.1);
}

.youtube-lite-playbtn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent #fff;
}

.youtube-lite.activated {
  cursor: unset;
}

.youtube-lite.activated .youtube-lite-thumbnail,
.youtube-lite.activated .youtube-lite-playbtn {
  display: none;
}

@media (max-width: 768px) {
  .video-section .udemy-review-link {
    font-size: 1rem;
    padding: 8px 16px;
  }

  .video-container {
    width: 90%;
    min-width: 280px;
  }
}

/* Payment Modal Styles */
.payment-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

.payment-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.payment-modal-content {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 3px solid #00ff88;
  border-radius: 20px;
  max-width: 1400px;
  width: 95%;
  max-height: 95vh;
  overflow-y: auto;
  box-shadow: 0 0 60px rgba(0, 255, 136, 0.4);
  z-index: 2;
  animation: modalSlideIn 0.4s ease-out;
  padding: 30px;
  margin: 20px;
}

.payment-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.payment-modal-close:hover {
  background: #ff6b6b;
  border-color: #ff6b6b;
  color: #ffffff;
  transform: rotate(90deg);
}

.payment-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.payment-left-section,
.payment-right-section {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px;
  border-radius: 15px;
  border: 2px solid rgba(0, 255, 136, 0.3);
}

.payment-left-section {
  display: flex;
  flex-direction: column;
}

.payment-right-section {
  display: flex;
  flex-direction: column;
}

/* Loading Modal */
.loading-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 11000;
}

.loading-modal-content {
  text-align: center;
  padding: 40px;
  background: rgba(26, 26, 26, 0.95);
  border: 2px solid #00ff88;
  border-radius: 15px;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(0, 255, 136, 0.2);
  border-top-color: #00ff88;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success Modal */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 11000;
}

.success-modal-content {
  text-align: center;
  padding: 40px;
  background: rgba(26, 26, 26, 0.95);
  border: 2px solid #00ff88;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
}

.success-icon {
  font-size: 80px;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .payment-modal-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .payment-modal-content {
    max-width: 800px;
    width: 95%;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .payment-modal-content {
    padding: 15px;
    margin: 10px;
  }

  .payment-left-section,
  .payment-right-section {
    padding: 15px;
  }
}

/* Fullscreen Image Modal - Mobile Only */
.fullscreen-image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
}

.fullscreen-image-modal.active {
  display: flex;
  opacity: 1;
}

.fullscreen-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px 20px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.fullscreen-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.3s ease;
  transform-origin: center center;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.fullscreen-image-modal img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 60px rgba(0, 255, 136, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fullscreen-image-modal img:hover {
  box-shadow: 0 15px 80px rgba(0, 255, 136, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .fullscreen-image-container {
    padding: 70px 10px 10px;
  }

  .fullscreen-image-modal img {
    max-width: 95vw;
    max-height: 80vh;
    border-radius: 8px;
  }
}

.fullscreen-close-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #00ff88;
  border-radius: 50%;
  color: #00ff88;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 100000;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.fullscreen-close-btn:hover {
  background: #00ff88;
  color: #000;
  transform: rotate(90deg) scale(1.15);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.9);
}

.fullscreen-nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(0, 255, 136, 0.6);
  border-radius: 50%;
  color: #00ff88;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 100001;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
  line-height: 1;
  padding-bottom: 3px;
  opacity: 0.7;
}

.fullscreen-nav-left {
  left: 10px;
}

.fullscreen-nav-right {
  right: 10px;
}

.fullscreen-nav-btn:hover {
  background: rgba(0, 255, 136, 0.9);
  color: #000;
  opacity: 1;
  border-color: #00ff88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.fullscreen-nav-btn:active {
  transform: translateY(-50%) scale(0.9);
}

.fullscreen-nav-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
  border-color: #444;
  color: #444;
}

.fullscreen-nav-btn:disabled:hover {
  background: rgba(0, 0, 0, 0.7);
  color: #444;
  transform: translateY(-50%);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .fullscreen-nav-btn {
    width: 50px;
    height: 50px;
    font-size: 32px;
  }

  .fullscreen-nav-left {
    left: 8px;
  }

  .fullscreen-nav-right {
    right: 8px;
  }
}

.zoom-controls {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 100001;
  background: rgba(0, 0, 0, 0.85);
  padding: 10px 15px;
  border-radius: 30px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(0, 255, 136, 0.3);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.8);
}

.zoom-btn {
  background: rgba(0, 255, 136, 0.15);
  border: 2px solid #00ff88;
  border-radius: 50%;
  color: #00ff88;
  font-size: 20px;
  font-weight: bold;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-btn:hover {
  background: #00ff88;
  color: #000;
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.zoom-btn:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .zoom-controls {
    bottom: 20px;
    padding: 8px 12px;
    gap: 8px;
  }

  .zoom-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.fullscreen-zoom-controls {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.9);
  padding: 8px 12px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 255, 136, 0.5);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}

.fullscreen-zoom-btn {
  background: rgba(0, 255, 136, 0.2);
  border: 2px solid #00ff88;
  border-radius: 8px;
  color: #00ff88;
  font-size: 15px;
  font-weight: bold;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 45px;
}

.fullscreen-zoom-btn:hover {
  background: #00ff88;
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.fullscreen-zoom-btn:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .fullscreen-zoom-controls {
    bottom: -70px;
    padding: 6px 8px;
    gap: 6px;
    font-size: 12px;
  }

  .fullscreen-zoom-btn {
    font-size: 12px;
    padding: 5px 8px;
    min-width: 35px;
  }

  .fullscreen-close-btn {
    top: -55px;
    right: -5px;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .fullscreen-image-wrapper {
    max-width: 85%;
    max-height: 85%;
  }
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
  /* Make reach image bigger on mobile */
  .course-reach-section img {
    max-width: 80% !important;
  }
}

/* Smooth transitions for responsive elements */
.header,
.header-video,
.header-mobile,
.roadmap-section,
.roadmap-container,
.video-container,
.course-section,
.info-grid,
.buttons-container,
.detail-btn,
.course-modal-body h1,
.course-modal-body h2,
.course-modal,
.payment-modal,
.access-overlay,
.course-reach-section img,
.btn-primary,
.btn-secondary,
.controls button {
  transition: all 0.3s ease;
}

/* Specific smooth transitions for text elements */
h1,
h2,
h3,
p,
span,
div {
  transition: font-size 0.3s ease;
}

/* ===== NEW REVIEW CARDS STYLING ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.review-card {
  background: linear-gradient(135deg, rgba(26, 74, 58, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
  border: 2px solid rgba(0, 255, 136, 0.2);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.3);
}

.review-stars {
  font-size: 1.3rem;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.review-author {
  font-size: 1.1rem;
  font-weight: bold;
  color: #00ff88;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.review-text {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: justify;
}

/* Mobile responsiveness for reviews */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .review-card {
    padding: 12px;
  }

  .review-stars {
    font-size: 0.85rem !important;
  }

  .review-author {
    font-size: 0.8rem !important;
  }

  .review-text {
    font-size: 0.7rem !important;
  }

  /* Hero section mobile adjustments - Aggressive reduction */
  .hero-section-below p[style*="font-size: 1.3rem"] {
    font-size: 0.75rem !important;
    line-height: 1.5 !important;
  }

  .hero-section-below p[style*="font-size: 2rem"] {
    font-size: 1rem !important;
    line-height: 1.3 !important;
  }

  .hero-section-below p {
    font-size: 0.8rem !important;
  }

  /* Instructor section mobile - Much smaller */
  h2[style*="font-size: 3rem"] {
    font-size: 1.2rem !important;
  }

  h3[style*="font-size: 2.2rem"] {
    font-size: 1.1rem !important;
  }

  h3[style*="font-size: 1.8rem"] {
    font-size: 0.95rem !important;
  }

  h3[style*="font-size: 1.5rem"] {
    font-size: 0.9rem !important;
  }

  /* Countdown timer mobile */
  #competitionCountdown > div {
    min-width: 50px !important;
    padding: 0.5rem !important;
  }

  #competitionCountdown span[id] {
    font-size: 1.1rem !important;
  }

  #competitionCountdown p {
    font-size: 0.65rem !important;
  }

  /* Payment/Contact sections mobile */
  div[style*="padding: 3rem"] {
    padding: 1.2rem 0.75rem !important;
  }

  div[style*="padding: 4rem 2rem"] {
    padding: 1.5rem 0.75rem !important;
  }

  div[style*="padding: 2rem"] {
    padding: 1rem !important;
  }

  /* Section containers */
  .section-container {
    padding: 1.5rem 0.75rem;
  }

  /* Payment Modal Mobile */
  .payment-modal-content {
    width: 95%;
    padding: 12px;
    margin: 8px;
  }

  .payment-modal-body {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .payment-left-section,
  .payment-right-section {
    padding: 12px;
  }

  /* Video Section Mobile */
  .video-section {
    padding: 1.5rem 0.75rem;
  }

  .video-section .udemy-review-link {
    font-size: 0.8rem !important;
    padding: 7px 12px !important;
  }

  .video-container {
    width: 95%;
    min-width: 280px;
    padding: 6px;
  }

  /* Palestine Box Mobile */
  .palestine-box {
    padding: 1.2rem;
    gap: 0.75rem;
  }

  .palestine-flag {
    font-size: 2rem !important;
  }

  .palestine-content h3 {
    font-size: 1rem !important;
  }

  .palestine-content p {
    font-size: 0.75rem !important;
  }

  /* General Emoji/Icon Size Reduction */
  .stat-item,
  .feature-icon,
  .card-icon,
  .truth-icon,
  .incentive-icon,
  .credential-icon,
  .info-icon,
  .step-icon,
  .upload-icon,
  .success-icon {
    font-size: inherit;
  }

  /* Additional Purchase Note */
  .additional-purchase-note {
    font-size: 0.7rem !important;
    padding: 0.5rem 0.8rem !important;
  }

  /* Tech Logos */
  .tech-item {
    padding: 8px 16px;
    font-size: 0.7rem !important;
  }

  .tech-icon {
    font-size: 0.9rem !important;
  }

  .tech-name {
    font-size: 0.7rem !important;
  }

  /* All paragraph text on mobile */
  p {
    font-size: 0.8rem !important;
    line-height: 1.5;
  }

  /* All heading overrides - PROFESSIONAL HIERARCHY */
  h1,
  h1[style] {
    font-size: 1.2rem !important;
    font-weight: 900;
  }

  h2,
  h2[style] {
    font-size: 1.1rem !important;
    font-weight: bold;
  }

  h3,
  h3[style] {
    font-size: 1rem !important;
    font-weight: bold;
  }

  h4,
  h4[style] {
    font-size: 0.9rem !important;
  }

  h5,
  h6 {
    font-size: 0.85rem !important;
  }

  /* Body text readable */
  p,
  p[style] {
    font-size: 0.85rem !important;
    line-height: 1.6;
  }

  /* Countdown and special large text */
  #competitionCountdown span {
    font-size: 1.1rem !important;
  }

  #competitionCountdown p {
    font-size: 0.75rem !important;
  }

  #competitionCountdown > div {
    min-width: 50px !important;
    padding: 0.5rem !important;
  }
}
