@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&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/font/bootstrap-icons.css');

:root {
  --primary-color: #FFCB2C;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #E1A022;
  --spaceship-glow: #FFCB2C;
  --spaceship-border: #FFCB2C;
  --spaceship-shadow: rgba(255, 203, 44, 0.3);
}

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

body {
  font-family: 'Ubuntu', sans-serif;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(images/background.png);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Spaceship starfield effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, white, transparent),
    radial-gradient(2px 2px at 60% 70%, white, transparent),
    radial-gradient(1px 1px at 50% 50%, white, transparent),
    radial-gradient(1px 1px at 80% 10%, white, transparent),
    radial-gradient(2px 2px at 90% 60%, white, transparent),
    radial-gradient(1px 1px at 33% 80%, white, transparent),
    radial-gradient(1px 1px at 10% 40%, white, transparent);
  background-size: 200% 200%;
  background-position: 0% 0%;
  animation: starfield 20s linear infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

@keyframes starfield {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

a {
  text-decoration: none;
  color: var(--accent-primary);
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  display: block;
}

/* Spaceship-themed buttons */
.btn {
  padding: 12px 28px;
  border: 2px solid var(--spaceship-border);
  border-radius: 8px;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.1) 0%, rgba(225, 160, 34, 0.1) 100%);
  box-shadow: 0 0 15px rgba(255, 203, 44, 0.3);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 203, 44, 0.4), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  box-shadow: 0 0 25px rgba(255, 203, 44, 0.6);
  transform: translateY(-2px);
  border-color: var(--primary-color);
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(17, 17, 17, 0.7) 100%);
  z-index: 1;
}

/* Navbar - keep unchanged above navbar */
.navbar {
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  position: relative;
  z-index: 100;
  border-bottom: 2px solid var(--spaceship-border);
  box-shadow: 0 4px 20px rgba(255, 203, 44, 0.2);
}

.navbar .logo img {
  height: 50px;
  align-items: center;
  filter: drop-shadow(0 0 10px rgba(255, 203, 44, 0.5));
  transition: filter 0.3s ease;
}

.navbar .logo img:hover {
  filter: drop-shadow(0 0 15px rgba(255, 203, 44, 0.8));
}

.navbar-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--spaceship-glow);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.navbar-menu li a:hover::after {
  width: 80%;
}

.navbar-menu li a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 203, 44, 0.5);
}

.navbar .auth-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.navbar .auth-buttons img {
  height: auto;
  max-height: 50px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.navbar .auth-buttons a:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(255, 203, 44, 0.6));
}

.btn-login {
  background-color: var(--text-primary);
  color: var(--secondary-color);
  border: 2px solid var(--text-primary);
}

.btn-login:hover {
  background-color: transparent;
  color: var(--text-primary);
}

.btn-register {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn-register:hover {
  background-color: var(--text-primary);
  color: var(--secondary-color);
}

/* Breadcrumbs */
.breadcrumbs {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px 80px;
  border-bottom: 1px solid rgba(255, 203, 44, 0.2);
}

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

.breadcrumbs-list {
  display: flex;
  list-style: none;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
}

.breadcrumbs-list li {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
}

.breadcrumbs-list li:not(:last-child)::after {
  content: '›';
  margin-left: 10px;
  color: var(--spaceship-glow);
  font-size: 1.2rem;
}

.breadcrumbs-list li a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.breadcrumbs-list li a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 8px rgba(255, 203, 44, 0.5);
}

.breadcrumbs-list li[aria-current="page"] {
  color: var(--primary-color);
  font-weight: 500;
}

/* Floating Announcement */
.floating-announcement {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 450px;
  width: calc(100% - 40px);
  z-index: 1000;
  animation: slideInUp 0.5s ease-out, floatAnnouncement 3s ease-in-out infinite;
  animation-delay: 0s, 0.5s;
}

@keyframes slideInUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes floatAnnouncement {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.announcement-content {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%);
  border: 2px solid var(--spaceship-border);
  border-radius: 15px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 
    0 0 30px rgba(255, 203, 44, 0.5),
    0 10px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 20px rgba(255, 203, 44, 0.1);
  position: relative;
  overflow: hidden;
}

.announcement-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 203, 44, 0.15), transparent);
  animation: scanline 4s linear infinite;
}

.announcement-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  padding: 2px;
  background: linear-gradient(135deg, var(--spaceship-glow), var(--accent-primary), var(--spaceship-glow));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
}

.announcement-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.2) 0%, rgba(225, 160, 34, 0.2) 100%);
  border: 2px solid var(--spaceship-border);
  border-radius: 50%;
  color: var(--spaceship-glow);
  font-size: 1.5rem;
  box-shadow: 0 0 20px rgba(255, 203, 44, 0.4);
  animation: iconPulse 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 203, 44, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 203, 44, 0.6);
  }
}

.announcement-text {
  flex: 1;
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.announcement-text strong {
  color: var(--primary-color);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 203, 44, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.announcement-text strong i {
  font-size: 1.1rem;
  filter: drop-shadow(0 0 8px rgba(255, 203, 44, 0.6));
}

.announcement-link {
  color: var(--spaceship-glow);
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-left: 5px;
}

.announcement-link:hover {
  color: var(--primary-color);
  text-shadow: 0 0 8px rgba(255, 203, 44, 0.6);
}

.announcement-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--text-secondary);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.announcement-close:hover {
  border-color: var(--spaceship-border);
  color: var(--primary-color);
  background: rgba(255, 203, 44, 0.1);
  transform: rotate(90deg);
  box-shadow: 0 0 15px rgba(255, 203, 44, 0.4);
}

.floating-announcement.hidden {
  animation: slideOutDown 0.5s ease-out forwards;
}

@keyframes slideOutDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100px);
    opacity: 0;
  }
}

/* Table of Contents */
.table-of-contents {
  margin-top: 50px;
  padding: 40px 0;
  position: relative;
}

.toc-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.toc-title {
  font-size: 2rem;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 0 15px rgba(255, 203, 44, 0.5);
}

.toc-nav {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border: 2px solid var(--spaceship-border);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 0 30px rgba(255, 203, 44, 0.2);
  position: relative;
  overflow: hidden;
}

.toc-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 203, 44, 0.1), transparent);
  animation: scanline 3s linear infinite;
}

.toc-list {
  list-style: none;
  counter-reset: toc-counter;
  position: relative;
  z-index: 1;
}

.toc-list li {
  counter-increment: toc-counter;
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
}

.toc-list li::before {
  content: counter(toc-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.2) 0%, rgba(225, 160, 34, 0.2) 100%);
  border: 2px solid var(--spaceship-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 0.9rem;
  box-shadow: 0 0 10px rgba(255, 203, 44, 0.3);
}

.toc-list li a {
  color: var(--text-primary);
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.toc-list li a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 203, 44, 0.6);
  border-bottom-color: var(--spaceship-border);
  transform: translateX(5px);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

/* Spaceship Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(225, 160, 34, 0.3) 0%, rgba(17, 17, 17, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 60px 50px;
  margin-top: 20px;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid var(--spaceship-border);
  box-shadow: 
    0 0 30px rgba(255, 203, 44, 0.4),
    inset 0 0 30px rgba(255, 203, 44, 0.1);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 203, 44, 0.1), transparent);
  animation: spaceshipScan 3s linear infinite;
}

@keyframes spaceshipScan {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.2) 0%, rgba(225, 160, 34, 0.2) 100%);
  border: 1px solid var(--spaceship-border);
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 0 15px rgba(255, 203, 44, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
  text-align: center;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 203, 44, 0.3); }
  50% { box-shadow: 0 0 25px rgba(255, 203, 44, 0.6); }
}

.badge-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 5px rgba(255, 203, 44, 0.8));
}

.badge-text {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-shadow: 
    0 0 10px rgba(255, 203, 44, 0.5),
    0 0 20px rgba(255, 203, 44, 0.3);
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-description {
  margin-bottom: 35px;
  color: var(--text-primary);
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hero Features */
.hero-features {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
  border: 1px solid rgba(255, 203, 44, 0.3);
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 203, 44, 0.2), transparent);
  transition: left 0.5s ease;
}

.feature-item:hover::before {
  left: 100%;
}

.feature-item:hover {
  border-color: var(--spaceship-border);
  box-shadow: 0 5px 20px rgba(255, 203, 44, 0.4);
  transform: translateY(-3px);
}

.feature-item i {
  font-size: 1.3rem;
  color: var(--accent-primary);
  text-shadow: 0 0 10px rgba(255, 203, 44, 0.6);
  transition: transform 0.3s ease;
}

.feature-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.feature-item span {
  font-weight: 500;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-learn {
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.2) 0%, rgba(225, 160, 34, 0.2) 100%);
  color: var(--text-primary);
  border: 2px solid var(--spaceship-border);
}

.btn-learn:hover {
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.3) 0%, rgba(225, 160, 34, 0.3) 100%);
  color: var(--primary-color);
}

/* Introduction Section - Spaceship Intelligence Hub */
.introduction {
  margin-top: 50px;
  padding: 50px 0;
  position: relative;
}

.introduction-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.introduction-content {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border: 2px solid var(--spaceship-border);
  border-radius: 15px;
  padding: 50px 40px;
  box-shadow: 
    0 0 30px rgba(255, 203, 44, 0.3),
    inset 0 0 25px rgba(255, 203, 44, 0.05);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.introduction-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--spaceship-glow), transparent);
  animation: scanline 3s linear infinite;
}

.introduction-content::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 203, 44, 0.05) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
}

.introduction-title {
  font-size: 2rem;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 
    0 0 10px rgba(255, 203, 44, 0.5),
    0 0 20px rgba(255, 203, 44, 0.3);
  position: relative;
  z-index: 1;
}

.introduction-text {
  position: relative;
  z-index: 1;
}

.introduction-text p {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.9;
  margin-bottom: 20px;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.introduction-text p:first-child {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 203, 44, 0.6);
}

/* SCR66 Stands For Section - Spaceship Decoder */
.scr66-stands-for {
  margin-top: 50px;
  padding: 50px 0;
  position: relative;
}

.scr66-stands-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.scr66-stands-title {
  font-size: 2.2rem;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 
    0 0 10px rgba(255, 203, 44, 0.5),
    0 0 20px rgba(255, 203, 44, 0.3);
}

.scr66-stands-intro {
  font-size: 1.1rem;
  color: var(--text-primary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.8;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.scr66-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.scr66-item {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%);
  border: 2px solid rgba(255, 203, 44, 0.2);
  border-radius: 20px;
  padding: 0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.scr66-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--spaceship-glow), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 2;
}

.scr66-item:hover::before {
  transform: scaleX(1);
}

.scr66-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.scr66-item:hover::after {
  opacity: 1;
}

.scr66-item:hover {
  border-color: var(--spaceship-border);
  box-shadow: 
    0 15px 40px rgba(255, 203, 44, 0.5),
    inset 0 0 30px rgba(255, 203, 44, 0.1);
  transform: translateY(-8px);
}

.scr66-letter,
.scr66-number {
  font-size: 4.5rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  color: var(--spaceship-glow);
  text-shadow: 
    0 0 25px rgba(255, 203, 44, 0.9),
    0 0 50px rgba(255, 203, 44, 0.5),
    0 0 75px rgba(255, 203, 44, 0.3);
  line-height: 1;
  padding: 30px 20px 20px;
  background: linear-gradient(180deg, rgba(255, 203, 44, 0.1) 0%, transparent 100%);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  border-bottom: 2px solid rgba(255, 203, 44, 0.2);
}

.scr66-item:hover .scr66-letter,
.scr66-item:hover .scr66-number {
  transform: scale(1.15);
  text-shadow: 
    0 0 30px rgba(255, 203, 44, 1),
    0 0 60px rgba(255, 203, 44, 0.7),
    0 0 90px rgba(255, 203, 44, 0.4);
  border-bottom-color: var(--spaceship-border);
}

.scr66-content {
  padding: 30px 25px;
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.scr66-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 
    0 0 10px rgba(255, 203, 44, 0.5),
    0 0 20px rgba(255, 203, 44, 0.3);
  transition: color 0.3s ease;
}

.scr66-item:hover .scr66-content h3 {
  color: var(--spaceship-glow);
  text-shadow: 
    0 0 15px rgba(255, 203, 44, 0.7),
    0 0 30px rgba(255, 203, 44, 0.4);
}

.scr66-content p {
  font-size: 1.05rem;
  color: var(--text-primary);
  opacity: 0.9;
  line-height: 1.8;
  margin: 0;
  flex: 1;
}

/* Tip Section - Spaceship Knowledge Hub */
.tip-section {
  margin-top: 50px;
  position: relative;
}

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

.tip-title {
  font-size: 2.2rem;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 
    0 0 10px rgba(255, 203, 44, 0.5),
    0 0 20px rgba(255, 203, 44, 0.3);
}

.tip-banner {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid var(--spaceship-border);
  box-shadow: 0 0 25px rgba(255, 203, 44, 0.3);
  margin-bottom: 40px;
  position: relative;
}

.tip-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.1) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.tip-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.tip-banner:hover img {
  transform: scale(1.03);
}

.tip-content {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border-radius: 15px;
  border: 2px solid var(--spaceship-border);
  box-shadow: 
    0 0 30px rgba(255, 203, 44, 0.3),
    inset 0 0 25px rgba(255, 203, 44, 0.05);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.tip-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--spaceship-glow), transparent);
  animation: scanline 3s linear infinite;
}

.tip-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.2) 0%, rgba(225, 160, 34, 0.2) 100%);
  border: 1px solid var(--spaceship-border);
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 0 15px rgba(255, 203, 44, 0.3);
}

.tip-badge-icon {
  font-size: 1.3rem;
  filter: drop-shadow(0 0 5px rgba(255, 203, 44, 0.8));
}

.tip-badge-text {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
}

.tip-insight {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(255, 203, 44, 0.6);
  font-style: italic;
}

.tip-main-text {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.9;
  margin-bottom: 35px;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tip-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 35px;
}

.tip-point {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
  border: 1px solid rgba(255, 203, 44, 0.3);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.tip-point::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--spaceship-glow);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.tip-point:hover::before {
  transform: scaleY(1);
}

.tip-point:hover {
  border-color: var(--spaceship-border);
  box-shadow: 
    0 8px 25px rgba(255, 203, 44, 0.4),
    inset 0 0 15px rgba(255, 203, 44, 0.1);
  transform: translateY(-5px);
}

.tip-point-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(255, 203, 44, 0.5));
  transition: transform 0.3s ease;
}

.tip-point:hover .tip-point-icon {
  transform: scale(1.15) rotate(5deg);
}

.tip-point-content {
  flex: 1;
}

.tip-point-content h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: 0 0 8px rgba(255, 203, 44, 0.3);
}

.tip-point-content p {
  font-size: 1rem;
  color: var(--text-primary);
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
}

.tip-conclusion {
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.1) 0%, rgba(225, 160, 34, 0.1) 100%);
  border-left: 4px solid var(--spaceship-border);
  border-radius: 10px;
  padding: 25px;
  position: relative;
}

.tip-conclusion p {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Tip #2 Section - Bankroll Management */
.tip-2-section {
  margin-top: 50px;
  position: relative;
}

.tip-2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.tip-2-title {
  font-size: 2.2rem;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 
    0 0 10px rgba(255, 203, 44, 0.5),
    0 0 20px rgba(255, 203, 44, 0.3);
}

.tip-2-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.tip-2-content {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border-radius: 15px;
  border: 2px solid var(--spaceship-border);
  box-shadow: 
    0 0 30px rgba(255, 203, 44, 0.3),
    inset 0 0 25px rgba(255, 203, 44, 0.05);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.tip-2-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--spaceship-glow), transparent);
  animation: scanline 3s linear infinite;
}

.tip-2-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.2) 0%, rgba(225, 160, 34, 0.2) 100%);
  border: 1px solid var(--spaceship-border);
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 0 15px rgba(255, 203, 44, 0.3);
}

.tip-2-badge-icon {
  font-size: 1.3rem;
  filter: drop-shadow(0 0 5px rgba(255, 203, 44, 0.8));
}

.tip-2-badge-text {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
}

.tip-2-insight {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(255, 203, 44, 0.6);
  font-style: italic;
}

.tip-2-main-text {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.9;
  margin-bottom: 30px;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tip-2-questions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.tip-2-question {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
  border: 1px solid rgba(255, 203, 44, 0.3);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tip-2-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--spaceship-glow);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.tip-2-question:hover::before {
  transform: scaleY(1);
}

.tip-2-question:hover {
  border-color: var(--spaceship-border);
  box-shadow: 0 5px 20px rgba(255, 203, 44, 0.3);
  transform: translateX(5px);
}

.question-icon {
  font-size: 2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255, 203, 44, 0.6));
  transition: transform 0.3s ease;
}

.tip-2-question:hover .question-icon {
  transform: scale(1.15) rotate(5deg);
}

.question-text h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 0 8px rgba(255, 203, 44, 0.3);
  line-height: 1.4;
}

.tip-2-reminder {
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.15) 0%, rgba(225, 160, 34, 0.15) 100%);
  border-left: 4px solid var(--spaceship-border);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
}

.tip-2-reminder p {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tip-2-scr66-note {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 25px;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tip-2-pro-tip {
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.2) 0%, rgba(225, 160, 34, 0.2) 100%);
  border: 2px solid var(--spaceship-border);
  border-radius: 12px;
  padding: 25px;
  position: relative;
  box-shadow: 0 0 20px rgba(255, 203, 44, 0.4);
}

.pro-tip-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.pro-tip-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 8px rgba(255, 203, 44, 0.8));
}

.pro-tip-label {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 203, 44, 0.6);
  letter-spacing: 1px;
}

.tip-2-pro-tip p {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tip-2-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 20px;
}

.tip-2-image-main {
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid var(--spaceship-border);
  box-shadow: 0 0 25px rgba(255, 203, 44, 0.3);
  position: relative;
}

.tip-2-image-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.1) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.tip-2-image-main img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.tip-2-image-main:hover img {
  transform: scale(1.05);
}

.tip-2-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.tip-2-image-grid a {
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid rgba(255, 203, 44, 0.3);
  box-shadow: 0 0 15px rgba(255, 203, 44, 0.2);
  transition: all 0.3s ease;
  display: block;
}

.tip-2-image-grid a:hover {
  border-color: var(--spaceship-border);
  box-shadow: 0 0 25px rgba(255, 203, 44, 0.4);
  transform: translateY(-5px);
}

.tip-2-image-grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.tip-2-image-grid a:hover img {
  transform: scale(1.1);
}

/* Tip #3 Section - Checklist Design */
.tip-3-section {
  margin-top: 50px;
  padding: 50px 0;
  position: relative;
}

.tip-3-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.tip-3-title {
  font-size: 2.2rem;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 
    0 0 10px rgba(255, 203, 44, 0.5),
    0 0 20px rgba(255, 203, 44, 0.3);
}

.tip-3-content {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border-radius: 15px;
  border: 2px solid var(--spaceship-border);
  box-shadow: 
    0 0 30px rgba(255, 203, 44, 0.3),
    inset 0 0 25px rgba(255, 203, 44, 0.05);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.tip-3-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--spaceship-glow), transparent);
  animation: scanline 3s linear infinite;
}

.tip-3-insight-box {
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.1) 0%, rgba(225, 160, 34, 0.1) 100%);
  border-left: 4px solid var(--spaceship-border);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}

.tip-3-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.2) 0%, rgba(225, 160, 34, 0.2) 100%);
  border: 1px solid var(--spaceship-border);
  border-radius: 50px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 0 15px rgba(255, 203, 44, 0.3);
}

.tip-3-badge-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 5px rgba(255, 203, 44, 0.8));
}

.tip-3-badge-text {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
}

.tip-3-insight {
  font-size: 1.15rem;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
  text-shadow: 0 0 10px rgba(255, 203, 44, 0.6);
  font-style: italic;
}

.tip-3-intro {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.9;
  margin-bottom: 35px;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tip-3-checklist {
  margin-bottom: 30px;
}

.checklist-title {
  font-size: 1.3rem;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255, 203, 44, 0.4);
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checklist-item {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
  border: 1px solid rgba(255, 203, 44, 0.3);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: all 0.3s ease;
  position: relative;
}

.checklist-item:hover {
  border-color: var(--spaceship-border);
  box-shadow: 0 5px 20px rgba(255, 203, 44, 0.3);
  transform: translateX(5px);
}

.check-icon {
  font-size: 1.8rem;
  color: var(--spaceship-glow);
  text-shadow: 0 0 15px rgba(255, 203, 44, 0.8);
  flex-shrink: 0;
  font-weight: 900;
  transition: transform 0.3s ease;
}

.checklist-item:hover .check-icon {
  transform: scale(1.2) rotate(10deg);
}

.check-content h4 {
  font-size: 1.15rem;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: 0 0 8px rgba(255, 203, 44, 0.3);
}

.check-content p {
  font-size: 1rem;
  color: var(--text-primary);
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

.tip-3-scr66-note {
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.1) 0%, rgba(225, 160, 34, 0.1) 100%);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
}

.tip-3-scr66-note p {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tip-3-pro-tip {
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.2) 0%, rgba(225, 160, 34, 0.2) 100%);
  border: 2px solid var(--spaceship-border);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 0 20px rgba(255, 203, 44, 0.4);
}

.pro-tip-emoji {
  font-size: 2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(255, 203, 44, 0.8));
}

.pro-tip-content {
  flex: 1;
}

.pro-tip-label {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 203, 44, 0.6);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.pro-tip-content p {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Tip #4 Section - Player Type Cards */
.tip-4-section {
  margin-top: 50px;
  padding: 50px 0;
  position: relative;
}

.tip-4-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.tip-4-title {
  font-size: 2.2rem;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 
    0 0 10px rgba(255, 203, 44, 0.5),
    0 0 20px rgba(255, 203, 44, 0.3);
}

.tip-4-layout {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border-radius: 15px;
  border: 2px solid var(--spaceship-border);
  box-shadow: 
    0 0 30px rgba(255, 203, 44, 0.3),
    inset 0 0 25px rgba(255, 203, 44, 0.05);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.tip-4-layout::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--spaceship-glow), transparent);
  animation: scanline 3s linear infinite;
}

.tip-4-insight-header {
  text-align: center;
  margin-bottom: 30px;
}

.tip-4-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.2) 0%, rgba(225, 160, 34, 0.2) 100%);
  border: 1px solid var(--spaceship-border);
  border-radius: 50px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 0 15px rgba(255, 203, 44, 0.3);
}

.tip-4-badge-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 5px rgba(255, 203, 44, 0.8));
}

.tip-4-badge-text {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
}

.tip-4-insight {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
  text-shadow: 0 0 10px rgba(255, 203, 44, 0.6);
  font-style: italic;
}

.tip-4-intro {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.9;
  margin-bottom: 35px;
  text-align: center;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tip-4-player-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 35px;
}

.player-type-card {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
  border: 2px solid rgba(255, 203, 44, 0.3);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.player-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 203, 44, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.player-type-card:hover::before {
  opacity: 1;
}

.player-type-card:hover {
  border-color: var(--spaceship-border);
  box-shadow: 
    0 10px 30px rgba(255, 203, 44, 0.4),
    inset 0 0 20px rgba(255, 203, 44, 0.1);
  transform: translateY(-8px);
}

.player-type-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(255, 203, 44, 0.6));
  transition: transform 0.3s ease;
  display: block;
}

.player-type-card:hover .player-type-icon {
  transform: scale(1.15) rotate(5deg);
}

.player-type-card h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 203, 44, 0.5);
}

.player-type-card p {
  font-size: 1rem;
  color: var(--text-primary);
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
}

.tip-4-scr66-note {
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.1) 0%, rgba(225, 160, 34, 0.1) 100%);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  text-align: center;
}

.tip-4-scr66-note p {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tip-4-pro-tip {
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.2) 0%, rgba(225, 160, 34, 0.2) 100%);
  border: 2px solid var(--spaceship-border);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 0 20px rgba(255, 203, 44, 0.4);
}

/* Tip #5 Section - Feature List Design */
.tip-5-section {
  margin-top: 50px;
  padding: 50px 0;
  position: relative;
}

.tip-5-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

.tip-5-title {
  font-size: 2.2rem;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 
    0 0 10px rgba(255, 203, 44, 0.5),
    0 0 20px rgba(255, 203, 44, 0.3);
}

.tip-5-content-grid {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border-radius: 15px;
  border: 2px solid var(--spaceship-border);
  box-shadow: 
    0 0 30px rgba(255, 203, 44, 0.3),
    inset 0 0 25px rgba(255, 203, 44, 0.05);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.tip-5-content-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--spaceship-glow), transparent);
  animation: scanline 3s linear infinite;
}

.tip-5-insight-box {
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.1) 0%, rgba(225, 160, 34, 0.1) 100%);
  border-left: 4px solid var(--spaceship-border);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}

.tip-5-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.2) 0%, rgba(225, 160, 34, 0.2) 100%);
  border: 1px solid var(--spaceship-border);
  border-radius: 50px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 0 15px rgba(255, 203, 44, 0.3);
}

.tip-5-badge-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 5px rgba(255, 203, 44, 0.8));
}

.tip-5-badge-text {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
}

.tip-5-insight {
  font-size: 1.15rem;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
  text-shadow: 0 0 10px rgba(255, 203, 44, 0.6);
  font-style: italic;
}

.tip-5-intro {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.9;
  margin-bottom: 20px;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tip-5-scr66-intro {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 25px;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tip-5-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-item {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
  border: 1px solid rgba(255, 203, 44, 0.3);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.feature-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--spaceship-glow);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.feature-item:hover::after {
  transform: scaleY(1);
}

.feature-item:hover {
  border-color: var(--spaceship-border);
  box-shadow: 0 5px 20px rgba(255, 203, 44, 0.3);
  transform: translateX(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(255, 203, 44, 0.6));
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.15) rotate(-5deg);
}

.feature-item h4 {
  font-size: 1.15rem;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 0 8px rgba(255, 203, 44, 0.3);
  line-height: 1.4;
}

.tip-5-trust-note {
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.15) 0%, rgba(225, 160, 34, 0.15) 100%);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  text-align: center;
}

.tip-5-trust-note p {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tip-5-pro-tip {
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.2) 0%, rgba(225, 160, 34, 0.2) 100%);
  border: 2px solid var(--spaceship-border);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 0 20px rgba(255, 203, 44, 0.4);
}

/* Tip #6 Section - Updates Grid */
.tip-6-section {
  margin-top: 50px;
  padding: 50px 0;
  position: relative;
}

.tip-6-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.tip-6-title {
  font-size: 2.2rem;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 
    0 0 10px rgba(255, 203, 44, 0.5),
    0 0 20px rgba(255, 203, 44, 0.3);
}

.tip-6-content {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border-radius: 15px;
  border: 2px solid var(--spaceship-border);
  box-shadow: 
    0 0 30px rgba(255, 203, 44, 0.3),
    inset 0 0 25px rgba(255, 203, 44, 0.05);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.tip-6-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--spaceship-glow), transparent);
  animation: scanline 3s linear infinite;
}

.tip-6-insight-header {
  text-align: center;
  margin-bottom: 30px;
}

.tip-6-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.2) 0%, rgba(225, 160, 34, 0.2) 100%);
  border: 1px solid var(--spaceship-border);
  border-radius: 50px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 0 15px rgba(255, 203, 44, 0.3);
}

.tip-6-badge-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 5px rgba(255, 203, 44, 0.8));
}

.tip-6-badge-text {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
}

.tip-6-insight {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
  text-shadow: 0 0 10px rgba(255, 203, 44, 0.6);
  font-style: italic;
}

.tip-6-intro {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: center;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tip-6-scr66-intro {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tip-6-updates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.update-category {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
  border: 2px solid rgba(255, 203, 44, 0.3);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.update-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--spaceship-glow);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.update-category:hover::before {
  transform: scaleX(1);
}

.update-category:hover {
  border-color: var(--spaceship-border);
  box-shadow: 
    0 8px 25px rgba(255, 203, 44, 0.4),
    inset 0 0 15px rgba(255, 203, 44, 0.1);
  transform: translateY(-5px);
}

.update-icon {
  font-size: 2.8rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 12px rgba(255, 203, 44, 0.6));
  transition: transform 0.3s ease;
  display: block;
}

.update-category:hover .update-icon {
  transform: scale(1.2) rotate(5deg);
}

.update-category h4 {
  font-size: 1.15rem;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 0 8px rgba(255, 203, 44, 0.3);
}

.tip-6-pro-tip {
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.2) 0%, rgba(225, 160, 34, 0.2) 100%);
  border: 2px solid var(--spaceship-border);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 0 20px rgba(255, 203, 44, 0.4);
}

/* Legacy bonus styles kept for compatibility */
.bonus {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}

.bonus-carousel {
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  border: 2px solid var(--spaceship-border);
  box-shadow: 0 0 25px rgba(255, 203, 44, 0.3);
}

.bonus-carousel a {
  flex-shrink: 0;
  width: 100%;
  display: block;
}

.bonus-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.bonus-carousel img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.bonus-banner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 15px;
  max-width: 600px;
  margin-top: 30px;
  height: auto;
  border: 2px solid var(--spaceship-border);
  box-shadow: 0 0 20px rgba(255, 203, 44, 0.3);
  position: relative;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.1) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.bonus-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.bonus-banner:hover img {
  transform: scale(1.05);
}

.bonus-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid var(--spaceship-border);
  box-shadow: 
    0 0 30px rgba(255, 203, 44, 0.3),
    inset 0 0 25px rgba(255, 203, 44, 0.05);
  position: relative;
  overflow: hidden;
}

.bonus-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--spaceship-glow), transparent);
  animation: scanline 2s linear infinite;
}

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

.bonus-intro h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 203, 44, 0.4);
}

.bonus-intro p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.bonus-card {
  flex: 1;
  min-width: 200px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 203, 44, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.bonus-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--spaceship-border);
  box-shadow: 
    0 10px 30px rgba(255, 203, 44, 0.4),
    inset 0 0 20px rgba(255, 203, 44, 0.1);
}

.bonus-card h4 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
}

.bonus-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.bonus-card i {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent-primary);
  text-shadow: 0 0 15px rgba(255, 203, 44, 0.6);
  transition: transform 0.3s ease;
}

.bonus-card:hover i {
  transform: scale(1.1) rotate(5deg);
}

/* Games Section - Spaceship Hologram Display */
.games {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border: 2px solid var(--spaceship-border);
  box-shadow: 
    0 0 30px rgba(255, 203, 44, 0.3),
    inset 0 0 25px rgba(255, 203, 44, 0.05);
  position: relative;
}

.games::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--spaceship-glow), transparent);
  animation: scanline 3s linear infinite;
}

.games-intro {
  text-align: center;
  margin-bottom: 10px;
}

.games-intro h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(255, 203, 44, 0.5);
}

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

.games-description {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.9;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

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

.game-card {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
  border-radius: 12px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 203, 44, 0.3);
  position: relative;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.game-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--spaceship-border);
  box-shadow: 
    0 15px 40px rgba(255, 203, 44, 0.5),
    inset 0 0 25px rgba(255, 203, 44, 0.1);
}

.game-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.5s ease;
  display: block;
}

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

.game-card h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin: 0 0 12px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 203, 44, 0.4);
}

.game-card-description {
  font-size: 0.95rem;
  color: var(--text-primary);
  opacity: 0.85;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Smart Player Assessment Section */
.smart-player-assessment {
  margin-top: 80px;
  padding: 60px 20px;
  position: relative;
}

.assessment-container {
  max-width: 900px;
  margin: 0 auto;
}

.assessment-header {
  text-align: center;
  margin-bottom: 40px;
}

.assessment-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.15) 0%, rgba(255, 203, 44, 0.05) 100%);
  border: 1px solid rgba(255, 203, 44, 0.3);
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--spaceship-glow);
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
}

.assessment-badge i {
  font-size: 1.1rem;
}

.assessment-title {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 203, 44, 0.6);
}

.assessment-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.quiz-container {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
  border: 2px solid rgba(255, 203, 44, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.quiz-question {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.question-number {
  font-size: 0.9rem;
  color: var(--spaceship-glow);
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.question-text {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 30px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  line-height: 1.4;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 203, 44, 0.2);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  font-family: 'Ubuntu', sans-serif;
  position: relative;
  overflow: hidden;
}

.quiz-option::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(255, 203, 44, 0.1);
  transition: width 0.3s ease;
}

.quiz-option:hover::before {
  width: 4px;
}

.quiz-option:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 203, 44, 0.4);
  transform: translateX(5px);
}

.quiz-option i {
  font-size: 1.2rem;
  color: var(--spaceship-glow);
  transition: transform 0.3s ease;
}

.quiz-option:hover i {
  transform: scale(1.2);
}

.quiz-option.selected {
  background: rgba(255, 203, 44, 0.15);
  border-color: var(--spaceship-border);
}

.quiz-option.correct {
  background: rgba(0, 255, 0, 0.1);
  border-color: rgba(0, 255, 0, 0.5);
}

.quiz-option.correct i::before {
  content: '\F26B';
  color: #00ff00;
}

.quiz-option.incorrect {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.5);
}

.quiz-option.incorrect i::before {
  content: '\F623';
  color: #ff0000;
}

.quiz-option:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.question-feedback {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}

.question-feedback.show {
  display: block;
  animation: slideDown 0.3s ease;
}

.question-feedback.correct {
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  color: #00ff00;
}

.question-feedback.incorrect {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  color: #ff6666;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-results {
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 0.5s ease;
}

.results-content {
  max-width: 500px;
  margin: 0 auto;
}

.results-icon {
  font-size: 4rem;
  color: var(--spaceship-glow);
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.results-title {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 25px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.results-score {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.score-number {
  font-size: 3.5rem;
  color: var(--spaceship-glow);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 203, 44, 0.6);
}

.score-label {
  font-size: 1.5rem;
  color: var(--text-secondary);
  font-family: 'Orbitron', sans-serif;
}

.results-message {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
}

.results-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-retry {
  background: transparent;
  border: 2px solid var(--spaceship-border);
  color: var(--spaceship-glow);
  padding: 12px 30px;
  border-radius: 8px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-retry:hover {
  background: rgba(255, 203, 44, 0.1);
  box-shadow: 0 0 20px rgba(255, 203, 44, 0.3);
  transform: translateY(-2px);
}

/* Responsive Assessment */
@media (max-width: 768px) {
  .smart-player-assessment {
    padding: 40px 15px;
    margin-top: 60px;
  }

  .assessment-title {
    font-size: 2rem;
  }

  .assessment-subtitle {
    font-size: 1rem;
  }

  .quiz-container {
    padding: 25px 20px;
  }

  .question-text {
    font-size: 1.1rem;
  }

  .quiz-option {
    padding: 15px;
    font-size: 0.95rem;
  }

  .results-icon {
    font-size: 3rem;
  }

  .score-number {
    font-size: 2.5rem;
  }

  .results-cta {
    flex-direction: column;
  }

  .btn-retry {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .assessment-title {
    font-size: 1.75rem;
  }

  .quiz-container {
    padding: 20px 15px;
  }

  .question-text {
    font-size: 1rem;
  }

  .quiz-option {
    padding: 12px;
    font-size: 0.9rem;
  }
}

/* FAQ Section - Minimalist Design */
.faq {
  margin-top: 60px;
  padding: 40px 20px;
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 30px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 15px rgba(255, 203, 44, 0.5);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(17, 17, 17, 0.6);
  border: 1px solid rgba(255, 203, 44, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 203, 44, 0.4);
  background: rgba(17, 17, 17, 0.8);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 203, 44, 0.05);
}

.faq-question h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  flex: 1;
}

.faq-question i {
  color: var(--spaceship-glow);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  margin-left: 15px;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-question h4 {
  color: var(--spaceship-glow);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  padding-top: 10px;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq {
    padding: 30px 15px;
    margin-top: 40px;
  }

  .faq-title {
    font-size: 1.75rem;
    margin-bottom: 25px;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-question {
    padding: 15px;
  }

  .faq-question h4 {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 15px;
  }

  .faq-item.active .faq-answer {
    padding: 0 15px 15px 15px;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}

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

  .faq-question {
    padding: 12px 15px;
  }

  .faq-question h4 {
    font-size: 0.95rem;
  }
}

/* Footer - Spaceship Base */
.footer {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%);
  padding: 50px 20px;
  margin-top: 50px;
  border-top: 2px solid var(--spaceship-border);
  box-shadow: 0 -4px 20px rgba(255, 203, 44, 0.2);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--spaceship-glow), transparent);
}

.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(255, 203, 44, 0.5));
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 6px;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--spaceship-glow);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 80%;
}

.footer-links a:hover {
  color: var(--accent-primary);
  text-shadow: 0 0 10px rgba(255, 203, 44, 0.5);
}

.footer-copy p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
    flex-wrap: wrap;
  }

  .tip-section {
    margin-top: 30px;
  }

  .tip-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .tip-banner {
    margin-bottom: 30px;
  }

  .tip-content {
    padding: 30px;
  }

  .tip-points {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }

  .tip-point {
    padding: 20px;
  }

  .tip-2-section {
    margin-top: 30px;
  }

  .tip-2-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .tip-2-content-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .tip-2-images {
    position: static;
    order: -1;
  }

  .tip-2-image-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tip-2-content {
    padding: 30px;
  }

  .tip-3-section,
  .tip-4-section,
  .tip-5-section,
  .tip-6-section {
    padding: 30px 0;
    margin-top: 30px;
  }

  .tip-3-title,
  .tip-4-title,
  .tip-5-title,
  .tip-6-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .tip-3-content,
  .tip-4-layout,
  .tip-5-content-grid,
  .tip-6-content {
    padding: 30px;
  }

  .tip-4-player-types {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tip-6-updates-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .games {
    padding: 30px;
  }

  .faq {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .breadcrumbs {
    padding: 12px 20px;
  }

  .breadcrumbs-list {
    font-size: 0.85rem;
    flex-wrap: wrap;
  }

  .navbar .auth-buttons {
    margin-top: 10px;
    width: 100%;
    gap: 20px;
    justify-content: center;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero {
    padding: 40px 30px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 1.05rem;
  }

  .hero-features {
    gap: 15px;
  }

  .feature-item {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .table-of-contents {
    margin-top: 30px;
    padding: 30px 0;
  }

  .toc-container {
    padding: 0 20px;
  }

  .toc-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .toc-nav {
    padding: 30px 25px;
  }

  .toc-list li a {
    font-size: 1rem;
  }

  .introduction {
    margin-top: 30px;
    padding: 30px 0;
  }

  .introduction-content {
    padding: 35px 30px;
  }

  .introduction-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .introduction-text p {
    font-size: 1.05rem;
  }

  .introduction-text p:first-child {
    font-size: 1.1rem;
  }

  .scr66-stands-for {
    margin-top: 30px;
    padding: 30px 0;
  }

  .scr66-stands-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .scr66-stands-intro {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .scr66-breakdown {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
  }

  .scr66-letter,
  .scr66-number {
    font-size: 3.5rem;
    padding: 25px 15px 15px;
  }

  .scr66-content {
    padding: 25px 20px;
  }

  .scr66-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .scr66-content p {
    font-size: 1rem;
  }

  .tip-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .tip-content {
    padding: 25px;
  }

  .tip-points {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .tip-point {
    padding: 20px;
  }

  .tip-badge {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .tip-insight {
    font-size: 1.1rem;
  }

  .tip-main-text {
    font-size: 1rem;
  }

  .tip-2-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .tip-2-content-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tip-2-images {
    position: static;
    order: -1;
  }

  .tip-2-image-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .tip-2-image-main {
    margin-bottom: 10px;
  }

  .tip-2-content {
    padding: 25px;
  }

  .tip-2-badge {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .tip-2-insight {
    font-size: 1.1rem;
  }

  .tip-2-main-text {
    font-size: 1rem;
  }

  .tip-2-questions {
    gap: 12px;
  }

  .tip-2-question {
    padding: 15px;
  }

  .question-text h4 {
    font-size: 1rem;
  }

  .tip-2-pro-tip {
    padding: 20px;
  }

  .tip-3-section,
  .tip-4-section,
  .tip-5-section,
  .tip-6-section {
    padding: 25px 0;
    margin-top: 30px;
  }

  .tip-3-title,
  .tip-4-title,
  .tip-5-title,
  .tip-6-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .tip-3-content,
  .tip-4-layout,
  .tip-5-content-grid,
  .tip-6-content {
    padding: 25px;
  }

  .checklist-items {
    gap: 12px;
  }

  .checklist-item {
    padding: 18px;
  }

  .tip-4-player-types {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .player-type-card {
    padding: 25px;
  }

  .tip-5-features {
    gap: 15px;
  }

  .feature-item {
    padding: 20px;
  }

  .tip-6-updates-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .update-category {
    padding: 25px;
  }

  .games-intro h3 {
    font-size: 1.5rem;
  }

  .games-description {
    font-size: 1rem;
  }

  .game-card-description {
    font-size: 0.9rem;
  }

  .faq h3 {
    font-size: 1.5rem;
  }

  .footer-container {
    gap: 20px;
  }

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

@media (max-width: 480px) {
  .navbar {
    padding: 15px;
  }

  .breadcrumbs {
    padding: 10px 15px;
  }

  .breadcrumbs-list {
    font-size: 0.8rem;
  }

  .hero {
    padding: 30px 20px;
    margin-top: 15px;
  }

  .hero-badge {
    padding: 6px 15px;
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .hero-features {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
  }

  .feature-item {
    padding: 10px 15px;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  .table-of-contents {
    margin-top: 25px;
    padding: 25px 0;
  }

  .toc-container {
    padding: 0 15px;
  }

  .toc-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .toc-nav {
    padding: 25px 20px;
  }

  .toc-list li {
    margin-bottom: 12px;
    padding-left: 30px;
  }

  .toc-list li::before {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }

  .toc-list li a {
    font-size: 0.95rem;
    padding: 6px 0;
  }

  .floating-announcement {
    bottom: 15px;
    right: 15px;
    left: 15px;
    max-width: 100%;
    width: calc(100% - 30px);
  }

  .announcement-content {
    padding: 15px 18px;
    gap: 12px;
  }

  .announcement-icon {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .announcement-text {
    font-size: 0.85rem;
  }

  .announcement-close {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .introduction {
    margin-top: 30px;
    padding: 25px 0;
  }

  .introduction-content {
    padding: 30px 20px;
  }

  .introduction-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .introduction-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  .introduction-text p:first-child {
    font-size: 1.05rem;
  }

  .scr66-stands-for {
    margin-top: 30px;
    padding: 25px 0;
  }

  .scr66-stands-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .scr66-stands-intro {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .scr66-breakdown {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .scr66-letter,
  .scr66-number {
    font-size: 3rem;
    padding: 20px 15px 15px;
  }

  .scr66-content {
    padding: 20px 18px;
  }

  .scr66-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .scr66-content p {
    font-size: 0.95rem;
  }

  .about-us-intro {
    padding: 20px;
  }

  .about-us-intro h2 {
    font-size: 1.3rem;
  }

  .bonus-details {
    padding: 25px;
  }

  .bonus-intro h3 {
    font-size: 1.2rem;
  }

  .games {
    padding: 25px;
  }

  .games-intro h3 {
    font-size: 1.3rem;
  }

  .games-description {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .game-card-description {
    font-size: 0.85rem;
  }

  .faq {
    padding: 25px;
  }

  .faq h3 {
    font-size: 1.3rem;
  }

  .footer {
    padding: 40px 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .bonus-grid {
    flex-direction: column;
  }

  .bonus-card {
    min-width: 100%;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for accessibility */
.btn:focus,
.navbar-menu li a:focus,
.footer-links a:focus,
.faq-item:focus {
  outline: 2px solid var(--spaceship-glow);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  body::before,
  .hero::before,
  .about-us-intro::after,
  .bonus-details::before,
  .games::after {
    display: none;
  }
}
