@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 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.15) 0%, rgba(255, 203, 44, 0.05) 100%);
  border: 2px solid var(--spaceship-border);
  border-radius: 30px;
  margin-bottom: 25px;
  font-size: 0.95rem;
  color: var(--spaceship-glow);
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(255, 203, 44, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(255, 203, 44, 0.3);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 30px rgba(255, 203, 44, 0.5);
    transform: scale(1.02);
  }
}

.badge-icon {
  font-size: 1.2rem;
  animation: iconFloat 3s ease-in-out infinite;
}

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

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

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

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 203, 44, 0.3);
  border-radius: 25px;
  transition: all 0.3s ease;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

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

.feature-item i {
  font-size: 1.3rem;
  color: var(--spaceship-glow);
}

.feature-item span {
  color: var(--text-primary);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-learn {
  background: transparent;
  color: var(--spaceship-glow);
  border: 2px solid var(--spaceship-border);
}

.btn-learn:hover {
  background: rgba(255, 203, 44, 0.1);
  color: var(--text-primary);
}

/* Bonus Introduction Section */
.bonus-introduction {
  margin-top: 60px;
  padding: 50px 20px;
  position: relative;
}

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

.bonus-introduction-content {
  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: 50px 40px;
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.5),
    inset 0 0 25px rgba(255, 203, 44, 0.03);
  position: relative;
  overflow: hidden;
}

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

.bonus-introduction-title {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 25px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 20px rgba(255, 203, 44, 0.6);
  position: relative;
  padding-bottom: 20px;
}

.bonus-introduction-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--spaceship-glow), transparent);
  box-shadow: 0 0 10px var(--spaceship-glow);
}

.bonus-introduction-text {
  max-width: 800px;
  margin: 0 auto;
}

.bonus-introduction-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
}

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

.bonus-introduction-text p:first-of-type {
  font-size: 1.15rem;
  color: var(--text-primary);
  opacity: 0.95;
  font-weight: 500;
}

/* Responsive Bonus Introduction */
@media (max-width: 768px) {
  .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;
  }

  .bonus-introduction {
    margin-top: 40px;
    padding: 30px 15px;
  }

  .bonus-introduction-content {
    padding: 35px 25px;
  }

  .bonus-introduction-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .bonus-introduction-text p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .bonus-introduction-text p:first-of-type {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .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;
  }

  .bonus-introduction {
    padding: 25px 10px;
  }

  .bonus-introduction-content {
    padding: 25px 20px;
  }

  .bonus-introduction-title {
    font-size: 1.5rem;
    padding-bottom: 12px;
  }

  .bonus-introduction-text p {
    font-size: 0.95rem;
    text-align: left;
  }

  .bonus-introduction-text p:first-of-type {
    font-size: 1rem;
  }
}

/* Bonus Differences Section */
.bonus-differences {
  margin-top: 60px;
  padding: 50px 20px;
  position: relative;
}

.bonus-differences-container {
  max-width: 1100px;
  margin: 0 auto;
}

.bonus-differences-header {
  text-align: center;
  margin-bottom: 50px;
}

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

.bonus-differences-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--spaceship-glow), transparent);
  box-shadow: 0 0 10px var(--spaceship-glow);
}

.bonus-differences-intro {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.bonus-differences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.bonus-difference-item {
  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.2);
  border-radius: 20px;
  padding: 35px 30px;
  display: flex;
  gap: 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.bonus-difference-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--spaceship-glow) 0%, rgba(255, 203, 44, 0.5) 100%);
  transition: height 0.4s ease;
}

.bonus-difference-item:hover::before {
  height: 100%;
}

.bonus-difference-item:hover {
  border-color: var(--spaceship-border);
  box-shadow: 
    0 8px 30px rgba(255, 203, 44, 0.3),
    inset 0 0 20px rgba(255, 203, 44, 0.05);
  transform: translateY(-5px);
}

.difference-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.15) 0%, rgba(0, 255, 0, 0.05) 100%);
  border: 2px solid rgba(0, 255, 0, 0.4);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.difference-icon i {
  font-size: 1.8rem;
  color: #00ff00;
  text-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
  position: relative;
  z-index: 1;
}

.bonus-difference-item:hover .difference-icon {
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.25) 0%, rgba(0, 255, 0, 0.15) 100%);
  border-color: rgba(0, 255, 0, 0.6);
  box-shadow: 0 0 25px rgba(0, 255, 0, 0.4);
  transform: scale(1.1);
}

.difference-content {
  flex: 1;
}

.difference-title {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  transition: color 0.3s ease;
}

.bonus-difference-item:hover .difference-title {
  color: var(--spaceship-glow);
  text-shadow: 0 0 10px rgba(255, 203, 44, 0.4);
}

.difference-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  transition: opacity 0.3s ease;
}

.bonus-difference-item:hover .difference-text {
  opacity: 1;
}

/* Responsive Bonus Differences */
@media (max-width: 768px) {
  .bonus-differences {
    margin-top: 40px;
    padding: 30px 15px;
  }

  .bonus-differences-title {
    font-size: 2rem;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .bonus-differences-intro {
    font-size: 1.05rem;
  }

  .bonus-differences-header {
    margin-bottom: 35px;
  }

  .bonus-differences-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bonus-difference-item {
    padding: 25px 20px;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .difference-icon {
    width: 50px;
    height: 50px;
  }

  .difference-icon i {
    font-size: 1.5rem;
  }

  .difference-title {
    font-size: 1.2rem;
  }

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

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

  .bonus-differences-intro {
    font-size: 1rem;
  }

  .bonus-difference-item {
    padding: 20px 18px;
    gap: 15px;
  }

  .difference-icon {
    width: 45px;
    height: 45px;
  }

  .difference-icon i {
    font-size: 1.3rem;
  }

  .difference-title {
    font-size: 1.1rem;
  }

  .difference-text {
    font-size: 0.95rem;
  }
}

/* Bonus Types Section */
.bonus-types {
  margin-top: 80px;
  padding: 60px 20px;
  position: relative;
}

.bonus-types-container {
  max-width: 1000px;
  margin: 0 auto;
}

.bonus-types-title {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 50px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 20px rgba(255, 203, 44, 0.6);
  position: relative;
  padding-bottom: 20px;
}

.bonus-types-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--spaceship-glow), transparent);
  box-shadow: 0 0 10px var(--spaceship-glow);
}

.bonus-type-item {
  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.2);
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 30px;
  display: flex;
  gap: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.bonus-type-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 203, 44, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.bonus-type-item:hover {
  border-color: var(--spaceship-border);
  box-shadow: 0 8px 30px rgba(255, 203, 44, 0.3);
  transform: translateY(-3px);
}

.bonus-type-number {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--spaceship-glow) 0%, rgba(255, 203, 44, 0.7) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 0 25px rgba(255, 203, 44, 0.5);
  position: relative;
  z-index: 1;
}

.bonus-type-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.bonus-type-name {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
}

.bonus-type-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.bonus-type-tips {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--spaceship-glow);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.bonus-type-tips h4 {
  font-size: 1.1rem;
  color: var(--spaceship-glow);
  margin-bottom: 12px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
}

.bonus-type-tips ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.bonus-type-tips ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bonus-type-tips ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--spaceship-glow);
}

.bonus-type-protip,
.bonus-type-smart,
.bonus-type-example {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 203, 44, 0.1);
  border-radius: 8px;
  margin-top: 15px;
}

.bonus-type-protip i,
.bonus-type-smart i {
  font-size: 1.5rem;
  color: var(--spaceship-glow);
  flex-shrink: 0;
  margin-top: 2px;
}

.bonus-type-protip span,
.bonus-type-smart span {
  color: var(--text-primary);
  line-height: 1.6;
}

.bonus-type-example {
  background: rgba(0, 255, 0, 0.1);
  border-left: 3px solid rgba(0, 255, 0, 0.5);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Bonus Claim Steps Section */
.bonus-claim-steps {
  margin-top: 80px;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
  border: 2px solid rgba(255, 203, 44, 0.2);
  border-radius: 20px;
  position: relative;
}

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

.bonus-claim-title {
  font-size: 2.3rem;
  color: var(--text-primary);
  margin-bottom: 25px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 20px rgba(255, 203, 44, 0.6);
}

.bonus-claim-intro {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 203, 44, 0.1);
  border-radius: 12px;
  margin-bottom: 40px;
  border-left: 4px solid var(--spaceship-glow);
}

.bonus-claim-intro i {
  font-size: 1.5rem;
  color: var(--spaceship-glow);
  flex-shrink: 0;
  margin-top: 2px;
}

.bonus-claim-intro p {
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 203, 44, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.step-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(180deg, var(--spaceship-glow) 0%, rgba(255, 203, 44, 0.5) 100%);
  border-radius: 15px 0 0 15px;
  transition: width 0.3s ease;
}

.step-item:hover::before {
  width: 4px;
}

.step-item:hover {
  border-color: var(--spaceship-border);
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--spaceship-glow) 0%, rgba(255, 203, 44, 0.7) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 0 20px rgba(255, 203, 44, 0.5);
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
  padding-top: 12px;
}

.step-content p {
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Wagering Requirements Section */
.wagering-requirements {
  margin-top: 80px;
  padding: 60px 20px;
  position: relative;
}

.wagering-container {
  max-width: 900px;
  margin: 0 auto;
  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.2);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

.wagering-intro {
  font-size: 1.15rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 30px;
  font-style: italic;
}

.wagering-content {
  max-width: 750px;
  margin: 0 auto;
}

.wagering-main {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
}

.wagering-example {
  background: rgba(255, 203, 44, 0.1);
  border: 2px solid rgba(255, 203, 44, 0.3);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  text-align: center;
}

.example-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.example-header i {
  font-size: 1.8rem;
  color: var(--spaceship-glow);
}

.example-header h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  margin: 0;
}

.wagering-example p {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin: 0;
  font-weight: 600;
}

.wagering-advantages {
  margin-bottom: 25px;
}

.wagering-advantages h4 {
  font-size: 1.2rem;
  color: var(--spaceship-glow);
  margin-bottom: 15px;
  font-family: 'Orbitron', sans-serif;
}

.wagering-advantages ul {
  list-style: none;
  padding-left: 0;
}

.wagering-advantages ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.wagering-advantages ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00ff00;
  font-weight: bold;
}

.wagering-takeaway {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 203, 44, 0.15);
  border-left: 4px solid var(--spaceship-glow);
  border-radius: 8px;
}

.wagering-takeaway i {
  font-size: 1.8rem;
  color: var(--spaceship-glow);
  flex-shrink: 0;
}

.wagering-takeaway p {
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0;
  font-size: 1.05rem;
}

/* Bonus Expiry Section */
.bonus-expiry {
  margin-top: 80px;
  padding: 60px 20px;
  position: relative;
}

.bonus-expiry-container {
  max-width: 1000px;
  margin: 0 auto;
}

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

.bonus-expiry-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contribution-table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
  border-radius: 15px;
  border: 2px solid rgba(255, 203, 44, 0.2);
}

.contribution-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(17, 17, 17, 0.8);
}

.contribution-table thead {
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.2) 0%, rgba(255, 203, 44, 0.1) 100%);
}

.contribution-table th {
  padding: 20px;
  text-align: left;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 203, 44, 0.3);
}

.contribution-table td {
  padding: 18px 20px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 203, 44, 0.1);
}

.contribution-table tbody tr:hover {
  background: rgba(255, 203, 44, 0.05);
}

.contribution-table tbody tr:last-child td {
  border-bottom: none;
}

.bonus-expiry-note {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(0, 255, 0, 0.1);
  border-left: 4px solid rgba(0, 255, 0, 0.5);
  border-radius: 8px;
}

.bonus-expiry-note i {
  font-size: 1.5rem;
  color: #00ff00;
  flex-shrink: 0;
  margin-top: 2px;
}

.bonus-expiry-note p {
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0;
}

/* Responsible Bonus Section */
.responsible-bonus {
  margin-top: 80px;
  padding: 60px 20px;
  position: relative;
}

.responsible-bonus-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

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

.responsible-bonus-intro {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.7;
}

.responsible-bonus-main {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.responsible-feature {
  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.2);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.responsible-feature:hover {
  border-color: var(--spaceship-border);
  box-shadow: 0 8px 30px rgba(255, 203, 44, 0.3);
  transform: translateY(-5px);
}

.responsible-feature i {
  font-size: 3rem;
  color: var(--spaceship-glow);
  text-shadow: 0 0 20px rgba(255, 203, 44, 0.5);
  transition: transform 0.3s ease;
}

.responsible-feature:hover i {
  transform: scale(1.1);
}

.feature-details h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
}

.feature-details p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
  .bonus-types,
  .bonus-claim-steps,
  .wagering-requirements,
  .bonus-expiry,
  .responsible-bonus {
    margin-top: 50px;
    padding: 40px 15px;
  }

  .bonus-types-title,
  .bonus-claim-title,
  .wagering-title,
  .bonus-expiry-title,
  .responsible-bonus-title {
    font-size: 2rem;
  }

  .bonus-type-item {
    flex-direction: column;
    gap: 20px;
    padding: 25px;
  }

  .bonus-type-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .step-item {
    padding: 20px;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .wagering-container {
    padding: 35px 25px;
  }

  .contribution-table th,
  .contribution-table td {
    padding: 12px;
    font-size: 0.9rem;
  }

  .responsible-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .bonus-types-title,
  .bonus-claim-title,
  .wagering-title,
  .bonus-expiry-title,
  .responsible-bonus-title {
    font-size: 1.75rem;
  }

  .bonus-type-item {
    padding: 20px;
  }

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

/* Games Section - Optimized Spaceship Hologram Display */
.games {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 40px;
  border-radius: 20px;
  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: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.games-intro h3 {
  font-size: 2.3rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 203, 44, 0.6);
  position: relative;
  padding-bottom: 20px;
}

.games-intro h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--spaceship-glow), transparent);
  box-shadow: 0 0 10px var(--spaceship-glow);
}

.games-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

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

.game-card {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 203, 44, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--spaceship-border);
  box-shadow: 
    0 12px 35px rgba(255, 203, 44, 0.4),
    inset 0 0 20px rgba(255, 203, 44, 0.05);
}

.game-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.game-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.game-card:hover .game-image-wrapper img {
  transform: scale(1.08);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.game-info {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.game-info h4 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  transition: color 0.3s ease;
}

.game-card:hover .game-info h4 {
  color: var(--spaceship-glow);
  text-shadow: 0 0 10px rgba(255, 203, 44, 0.4);
}

.game-card-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.btn-play {
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--spaceship-glow) 0%, rgba(255, 203, 44, 0.8) 100%);
  color: #000;
  border: none;
  border-radius: 8px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 203, 44, 0.5);
  text-decoration: none;
  display: inline-block;
}

.btn-play:hover {
  background: linear-gradient(135deg, rgba(255, 203, 44, 1) 0%, var(--spaceship-glow) 100%);
  box-shadow: 0 0 30px rgba(255, 203, 44, 0.7);
  transform: scale(1.05);
}

/* Responsive Games Section */
@media (max-width: 1024px) {
  .games {
    padding: 50px 30px;
  }

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

@media (max-width: 768px) {
  .games {
    margin-top: 50px;
    padding: 40px 20px;
    gap: 30px;
  }

  .games-intro h3 {
    font-size: 2rem;
    padding-bottom: 15px;
  }

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

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

  .game-info {
    padding: 20px;
  }

  .game-info h4 {
    font-size: 1.2rem;
  }

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

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

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

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

  .game-info h4 {
    font-size: 1.1rem;
  }
}

/* Final Thoughts Section - New Conclusion Design */
.final-thoughts {
  margin-top: 80px;
  padding: 60px 20px;
  position: relative;
}

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

.final-thoughts-content {
  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.2);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.5),
    inset 0 0 25px rgba(255, 203, 44, 0.03);
  position: relative;
  overflow: hidden;
}

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

.conclusion-header {
  text-align: center;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.conclusion-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--spaceship-glow) 0%, rgba(255, 203, 44, 0.7) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(255, 203, 44, 0.6);
  animation: iconPulse 2s ease-in-out infinite;
}

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

.conclusion-icon i {
  font-size: 2.5rem;
  color: #000;
}

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

.conclusion-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--spaceship-glow), transparent);
  box-shadow: 0 0 10px var(--spaceship-glow);
}

.conclusion-main-text {
  font-size: 1.2rem;
  color: var(--text-primary);
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.golden-rule-box {
  background: linear-gradient(135deg, rgba(255, 203, 44, 0.15) 0%, rgba(255, 203, 44, 0.05) 100%);
  border: 2px solid var(--spaceship-border);
  border-radius: 15px;
  padding: 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.golden-rule-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 203, 44, 0.1) 0%, transparent 70%);
  animation: rotateGlow 8s linear infinite;
}

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

.golden-rule-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.golden-rule-header i {
  font-size: 2rem;
  color: var(--spaceship-glow);
  text-shadow: 0 0 15px rgba(255, 203, 44, 0.6);
  animation: starTwinkle 2s ease-in-out infinite;
}

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

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

.golden-rule-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.golden-rule-steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.rule-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 203, 44, 0.3);
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
}

.rule-step:hover {
  background: rgba(255, 203, 44, 0.15);
  border-color: var(--spaceship-border);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 203, 44, 0.3);
}

.rule-step i {
  font-size: 1.3rem;
  color: #00ff00;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
}

.rule-step span {
  color: var(--text-primary);
}

.scr66-difference {
  font-size: 1.3rem;
  color: var(--spaceship-glow);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 0 15px rgba(255, 203, 44, 0.6);
  position: relative;
  z-index: 1;
}

/* Responsive Final Thoughts */
@media (max-width: 768px) {
  .final-thoughts {
    margin-top: 50px;
    padding: 40px 15px;
  }

  .final-thoughts-content {
    padding: 35px 25px;
  }

  .conclusion-title {
    font-size: 2rem;
    padding-bottom: 15px;
  }

  .conclusion-icon {
    width: 70px;
    height: 70px;
  }

  .conclusion-icon i {
    font-size: 2rem;
  }

  .conclusion-main-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .golden-rule-box {
    padding: 25px 20px;
  }

  .golden-rule-title {
    font-size: 1.5rem;
  }

  .golden-rule-steps {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .rule-step {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .scr66-difference {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .final-thoughts-content {
    padding: 25px 20px;
  }

  .conclusion-title {
    font-size: 1.75rem;
  }

  .conclusion-icon {
    width: 60px;
    height: 60px;
  }

  .conclusion-icon i {
    font-size: 1.8rem;
  }

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

  .golden-rule-box {
    padding: 20px 15px;
  }

  .golden-rule-title {
    font-size: 1.3rem;
  }

  .rule-step {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

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

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

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

.faq-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--spaceship-glow), transparent);
  box-shadow: 0 0 10px var(--spaceship-glow);
}

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

.faq-item {
  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.2);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
  border-color: rgba(255, 203, 44, 0.4);
  box-shadow: 0 6px 25px rgba(255, 203, 44, 0.2);
}

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

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(180deg, var(--spaceship-glow) 0%, rgba(255, 203, 44, 0.5) 100%);
  transition: width 0.3s ease;
}

.faq-item.active .faq-question::before,
.faq-item:hover .faq-question::before {
  width: 4px;
}

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

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

.faq-item.active .faq-question h4,
.faq-item:hover .faq-question h4 {
  color: var(--spaceship-glow);
  text-shadow: 0 0 8px rgba(255, 203, 44, 0.4);
}

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

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

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

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 25px 22px 25px;
}

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

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

  .faq-title {
    font-size: 2rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-question {
    padding: 18px 20px;
  }

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

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

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

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

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

  .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;
  }
}

/* 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;
  }

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

  .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: 2rem;
  }

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

  .hero-features {
    gap: 15px;
  }

  .feature-item {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

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

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

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

  .footer-container {
    gap: 20px;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

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

  .breadcrumbs {
    padding: 10px 15px;
  }

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

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

  .navbar .auth-buttons {
    justify-content: center;
    width: 100%;
  }

  .hero {
    padding: 30px 20px;
  }

  .hero-badge {
    padding: 8px 18px;
    font-size: 0.8rem;
    margin-bottom: 20px;
  }

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

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

  .hero-features {
    gap: 10px;
    margin-bottom: 30px;
  }

  .feature-item {
    padding: 8px 15px;
    font-size: 0.8rem;
  }

  .games {
    padding: 25px;
  }

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

  .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;
  }

}

/* 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,
.btn-play: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,
  .games::after {
    display: none;
  }
}
