/* ==============================================
   CYBERPUNK HEADER & NAVIGATION SYSTEM
   ============================================== */

/* Cyberpunk Header Base */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 22, 0.85);
  backdrop-filter: blur(2px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 4px 32px rgba(0, 255, 255, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #00ffff 25%, 
    #ff00ff 50%, 
    #00ffff 75%, 
    transparent 100%);
}


/* Navbar Container */
.navbar {
  padding: 0;
  min-height: 70px;
  position: relative;
}

.navbar-konteyner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}

/* Professional Dark Brand Logo */
.navbar-marka {
  font-family: "Orbitron", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  text-decoration: none;
  position: relative;
  padding: 0.6rem 1.2rem;
  color: #ffffff;
  background: rgba(15, 15, 25, 0.9);
  border: 2px solid transparent;
  border-radius: 6px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.navbar-marka:hover {
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(20, 20, 35, 0.95);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  text-decoration: none;
  color: #ffffff;
}

.navbar-marka::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #9969ff, #ff69a1);
  transition: width 0.3s ease;
}

.navbar-marka:hover::after {
  width: 100%;
}


/* Navigation Links - Interactive Effect */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: row;
}

.navbar-nav li {
  position: relative;
  margin: 10px;
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  border-radius: 6px;
  min-height: 50px;
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  font-style: italic;
  transition: none;
}

.nav-link::before {
  background-color: #24252c;
  background-image: repeating-linear-gradient(
    0deg,
    #181a29,
    #181a29 1px,
    #202436 1px,
    #202436 2px
  );
  border-radius: 10px;
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  transform: skew(-15deg);
  transition: none;
  width: 100%;
  z-index: -1;
}

.nav-link span {
  transition: none;
  z-index: 1;
}


.nav-link.active::before {
  box-shadow: none;
}

.nav-link.active span {
  color: #c40a35;
}

.nav-link:focus::before {
  box-shadow: none;
}

/* Navigation Buttons */
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid;
  backdrop-filter: blur(3px);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.btn-outline {
  color: #00ffff;
  border-color: rgba(0, 255, 255, 0.5);
  background: rgba(0, 255, 255, 0.1);
}

.btn-primary {
  color: #fff;
  border-color: rgba(255, 0, 255, 0.5);
  background: linear-gradient(135deg, 
    rgba(255, 0, 255, 0.8), 
    rgba(255, 0, 255, 0.6));
}

/* Mobile Menu Toggle */
.mobil-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.mobil-menu-toggle span {
  width: 25px;
  height: 3px;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.mobil-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobil-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.mobil-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Mobile Navigation */
@media (max-width: 768px) {
  .mobil-menu-toggle {
    display: flex;
  }
  
  .navbar-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 22, 0.98);
    backdrop-filter: blur(3px);
    flex-direction: column;
    padding: 1rem 0.5rem;
    gap: 0.5rem;
    transform: translateY(-100vh);
    opacity: 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    align-items: center;
  }
  
  .navbar-nav.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .navbar-nav li {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
  }
  
  .nav-link {
    text-align: center;
    padding: 0.8rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    width: 90%;
    margin: 0 auto;
    justify-content: center;
  }
  
  .nav-buttons {
    flex-direction: row;
    width: 100%;
    gap: 0.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding-top: 1rem;
    justify-content: center;
  }
  
  .nav-buttons .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .btn {
    justify-content: center;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
}

/* Scroll Effect */
.header.scrolled {
  background: rgba(13, 13, 22, 0.95);
  backdrop-filter: blur(3px);
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Main Content Spacing for Fixed Header */
.main-content {
  margin-top: 70px;
  min-height: calc(100vh - 70px);
}

/* ==============================================
   CYBERPUNK HERO SECTION
   ============================================== */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  position: relative;
  background: linear-gradient(135deg, 
    rgba(10, 10, 15, 0.9) 0%, 
    rgba(26, 26, 46, 0.8) 30%,
    rgba(22, 33, 62, 0.9) 70%,
    rgba(13, 13, 22, 0.95) 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    rgba(0, 255, 255, 0.03) 1px,
    transparent 2px,
    transparent 100px
  );
  z-index: 2;
}


.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Cyberpunk Hero Title */
.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  text-align: center;
  position: relative;
}

.gradient-text {
  background: linear-gradient(
    45deg,
    #00ffff 0%,
    #ff00ff 30%,
    #00ffff 60%,
    #ffffff 80%,
    #00ffff 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  display: block;
  margin-bottom: 0.5rem;
}


.hero-subtitle {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 0, 255, 0.6),
               0 0 40px rgba(255, 0, 255, 0.3);
  display: block;
  position: relative;
}

.hero-subtitle::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ffff, #ff00ff, #00ffff, transparent);
  transform: translateX(-50%);
}


/* Hero Description */
.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description strong {
  color: #00ffff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

/* SEO Keywords */
.seo-keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0;
}

.keyword-tag {
  background: linear-gradient(135deg, 
    rgba(0, 255, 255, 0.15),
    rgba(255, 0, 255, 0.15));
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
  backdrop-filter: blur(2px);
  position: relative;
  overflow: hidden;
}

.keyword-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent,
    rgba(0, 255, 255, 0.2),
    transparent);
}

/* 3D Telegram Links - Interactive Effect */
.telegram-links-3d {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.telegram-link-3d {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  backdrop-filter: blur(3px);
  overflow: hidden;
  border-radius: 16px;
  height: 60px;
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  font-style: italic;
  margin: 10px;
}

.telegram-link-3d::before {
  background-color: #24252c;
  background-image: repeating-linear-gradient(
    0deg,
    #181a29,
    #181a29 1px,
    #202436 1px,
    #202436 2px
  );
  border-radius: 16px;
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  transform: skew(-15deg);
  transition: box-shadow 700ms;
  width: 100%;
  z-index: -1;
}

.telegram-link-3d .tg-content {
  transition: color 350ms;
  z-index: 1;
}


.telegram-link-3d.active::before {
  box-shadow: 0 0 25px 2px #0763f7;
}

.telegram-link-3d.active .tg-content {
  color: #c40a35;
}

.telegram-link-3d:focus::before {
  box-shadow: 0 0 25px 2px #0763f7;
}

.telegram-link-3d.duyuru {
  background: linear-gradient(135deg,
    rgba(0, 150, 255, 0.1),
    rgba(0, 100, 200, 0.2));
  border: 1px solid rgba(0, 150, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 150, 255, 0.4);
}

.telegram-link-3d.duyuru:hover {
  box-shadow: 0 0 30px rgba(0, 150, 255, 0.6);
}

.telegram-link-3d.chat {
  background: linear-gradient(135deg,
    rgba(255, 100, 150, 0.1),
    rgba(255, 50, 100, 0.2));
  box-shadow: 0 0 20px rgba(255, 100, 150, 0.4);
}

.telegram-link-3d.chat:hover {
  box-shadow: 0 0 30px rgba(255, 100, 150, 0.6);
  border: 1px solid rgba(255, 100, 150, 0.3);
}

.tg-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 15px;
  background: linear-gradient(135deg, #0088cc, #00b6f0);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 136, 204, 0.5);
  transition: all 0.3s ease;
}

.telegram-link-3d:hover .tg-icon-wrapper {
  box-shadow: 0 0 25px rgba(0, 136, 204, 0.8);
  transform: scale(1.05);
}

.tg-icon-wrapper i {
  font-size: 1.8rem;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.tg-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tg-label {
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tg-username {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Courier New', monospace;
}

/* Hero CTA Button */
.hero-cta {
  margin-top: 1rem;
}

.btn-glow {
  background: linear-gradient(135deg, #ff00ff, #ff3399);
  border: 2px solid #ff00ff;
  color: #ffffff;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    padding: 1rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
    padding: 0 1rem;
  }
  
  .telegram-links-3d {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin: 1.5rem 0;
  }
  
  .telegram-link-3d {
    width: 90%;
    max-width: 280px;
    justify-content: center;
    padding: 0.8rem;
  }
  
  .seo-keywords {
    gap: 0.4rem;
    padding: 0 1rem;
    justify-content: center;
  }
  
  .keyword-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0 1rem;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Body adjustments for cyberpunk theme */
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

/* Container fixes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 768px) {
  .bonus-card {
    padding: 1.5rem;
  }
}

/* ==============================================
   MYSTICAL FORTUNE CARDS
   ============================================== */

.bonus-cards-section {
  background-color: #0d0b1a;
  background-image: radial-gradient(circle, #1a1333 0%, #0d0b1a 100%);
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  padding: 4rem 0;
}

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

.bonus-title {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #9969ff, #ff69a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(153, 105, 255, 0.3);
}

.bonus-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.card-table {
  perspective: 1000px;
  margin-bottom: 2rem;
  min-height: 400px;
  z-index: 2;
  position: relative;
}

.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 350px;
  padding: 1rem;
}

.card {
  width: 160px;
  height: 280px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s, filter 0.5s;
  cursor: pointer;
  filter: brightness(0.9);
}

.card:hover {
  filter: brightness(1.2) drop-shadow(0 0 15px rgba(153, 105, 255, 0.6));
  transform: translateY(-15px) rotateY(10deg);
}

.card-face {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.card-back {
  background: linear-gradient(45deg, #4a0e77, #650d6d);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.card-front {
  background: linear-gradient(135deg, #2b2f66, #1c1647);
  transform: rotateY(180deg);
  padding: 1rem;
  text-align: center;
  border: 3px solid rgba(153, 105, 255, 0.3);
}

.card-symbol {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.card-title {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #9969ff, #ff69a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.card-desc {
  font-size: 0.9rem;
  opacity: 0.7;
}

.card.flipped {
  transform: rotateY(180deg);
  pointer-events: none;
}

.card-back:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L60 40 L100 50 L60 60 L50 100 L40 60 L0 50 L40 40 Z' fill='rgba(255, 255, 255, 0.2)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.5;
}

.card-back:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.05) 0,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 10px
  );
  border-radius: 15px;
}

.message-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  z-index: 10;
}

.message-container.visible {
  opacity: 1;
  pointer-events: all;
}

.message-card {
  width: 90%;
  max-width: 500px;
  background: rgba(30, 25, 50, 0.95);
  backdrop-filter: blur(3px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(153, 105, 255, 0.3);
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s, opacity 0.8s;
}

.message-container.visible .message-card {
  transform: translateY(0);
  opacity: 1;
}

.message-title {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #9969ff, #ff69a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.message-text {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

#reshuffle-btn {
  background: linear-gradient(45deg, #9969ff, #ff69a1);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(153, 105, 255, 0.4);
}

#reshuffle-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(153, 105, 255, 0.6);
}

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Special Animation Elements */
.magical-sparkle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  animation: sparkle 1s forwards;
}

@keyframes sparkle {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(1.5) rotate(90deg);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .bonus-title {
    font-size: 2rem;
  }

  .card {
    width: 130px;
    height: 230px;
  }

  .card-symbol {
    font-size: 2.5rem;
  }

  .message-card {
    padding: 2rem;
  }

  .message-title {
    font-size: 1.8rem;
  }

  .message-text {
    font-size: 1.3rem;
  }
}

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

  .cards-container {
    gap: 1rem;
  }

  .card {
    width: 110px;
    height: 190px;
  }

  .card-symbol {
    font-size: 2rem;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-desc {
    font-size: 0.8rem;
  }
}

/* ==============================================
   CYBERPUNK FEATURES SECTION
   ============================================== */

.cyberpunk-features {
  padding: 6rem 0;
  background: linear-gradient(135deg, 
    rgba(10, 10, 15, 0.95) 0%, 
    rgba(26, 26, 46, 0.9) 50%, 
    rgba(16, 33, 62, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.cyberpunk-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2300ffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
  opacity: 0.3;
  z-index: 1;
}

.cyberpunk-title {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.glitch-text {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #00ffff, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: cyberpunk-glow 3s ease-in-out infinite;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
}

.glitch-text::before {
  animation: glitch-1 2s infinite;
  z-index: -1;
}

.glitch-text::after {
  animation: glitch-2 2s infinite;
  z-index: -2;
}

@keyframes cyberpunk-glow {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.7)); }
  50% { filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.9)); }
}

@keyframes glitch-1 {
  0%, 100% { transform: translate(0); opacity: 0; }
  1% { transform: translate(-2px, 1px); opacity: 1; }
  2% { transform: translate(0); opacity: 0; }
  10% { transform: translate(1px, -1px); opacity: 1; }
  11% { transform: translate(0); opacity: 0; }
}

@keyframes glitch-2 {
  0%, 100% { transform: translate(0); opacity: 0; }
  5% { transform: translate(2px, -1px); opacity: 1; }
  6% { transform: translate(0); opacity: 0; }
  15% { transform: translate(-1px, 1px); opacity: 1; }
  16% { transform: translate(0); opacity: 0; }
}

.section-subtitle {
  font-size: 1.2rem;
  color: #b8b8ff;
  margin-bottom: 3rem;
  font-weight: 300;
  position: relative;
  z-index: 10;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.feature-card {
  background: linear-gradient(135deg, 
    rgba(30, 30, 60, 0.8), 
    rgba(20, 20, 40, 0.9));
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(3px);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-glow-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, 
    rgba(0, 255, 255, 0.1), 
    transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 0, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2),
              0 0 30px rgba(255, 0, 255, 0.3);
}

.feature-card:hover .card-glow-bg {
  opacity: 1;
}

.feature-icon-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border: 2px solid rgba(0, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.1);
}

.feature-icon {
  font-size: 2rem;
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
  z-index: 2;
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, 
    rgba(0, 255, 255, 0.3), 
    transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.feature-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #b8b8ff;
  text-align: center;
  margin-bottom: 1.5rem;
}

.feature-tech {
  display: flex;
  justify-content: center;
}

.tech-badge {
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  color: #000;
  font-family: "Orbitron", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

/* ==============================================
   TRUST GUIDE & GÜVENILIR SITELER SECTION
   ============================================== */

.trust-guide-full {
  padding: 6rem 0;
  background: linear-gradient(135deg, 
    rgba(13, 11, 26, 0.95) 0%, 
    rgba(26, 19, 51, 0.9) 50%, 
    rgba(16, 33, 62, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.trust-guide-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cyber-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%2300ffff" stroke-width="0.3" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23cyber-grid)"/></svg>') repeat;
  z-index: 1;
}

.cyberpunk-section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.trust-guide-body {
  background: rgba(30, 30, 60, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(15px);
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.trust-guide-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(0, 255, 255, 0.05) 0%, 
    transparent 30%, 
    rgba(255, 0, 255, 0.05) 70%, 
    transparent 100%);
  border-radius: 20px;
  z-index: -1;
}

.trust-subsection-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #00ffff;
  margin: 2.5rem 0 1rem 0;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  position: relative;
}

.trust-subsection-title::before {
  content: "▶";
  color: #ff00ff;
  margin-right: 0.5rem;
  text-shadow: 0 0 8px rgba(255, 0, 255, 0.7);
}

.trust-guide-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0ff;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.trust-guide-body p:first-child {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  border-left: 4px solid #00ffff;
  padding-left: 1.5rem;
  background: rgba(0, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

/* ==============================================
   CYBERPUNK FOOTER
   ============================================== */

.cyberpunk-footer {
  background: linear-gradient(180deg, 
    rgba(13, 11, 26, 0.95) 0%, 
    rgba(10, 8, 20, 0.98) 50%, 
    rgba(5, 5, 15, 1) 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 4rem 0 2rem;
  margin-top: 0;
}

.footer-matrix-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="matrix-pattern" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="%2300ffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23matrix-pattern)"/></svg>') repeat;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  position: relative;
  z-index: 10;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.brand-logo i {
  color: #00ffff;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
  animation: rocket-glow 3s ease-in-out infinite;
}

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

.brand-logo span {
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #b8b8ff;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  color: #00ffff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(0, 255, 255, 0.2);
  border-color: #00ffff;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

.footer-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #b8b8ff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: "▶";
  color: #ff00ff;
  margin-right: 0.5rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-links a:hover {
  color: #00ffff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
  transform: translateX(5px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #b8b8ff;
}

.contact-item i {
  color: #00ffff;
  width: 20px;
  text-align: center;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #00ffff 25%, 
    #ff00ff 50%, 
    #00ffff 75%, 
    transparent 100%);
  margin: 2rem 0;
  animation: divider-glow 3s ease-in-out infinite;
}

@keyframes divider-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

.copyright p {
  color: #888;
  font-size: 0.9rem;
}

.footer-tech {
  display: flex;
  gap: 1rem;
}

.tech-badge {
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  color: #000;
  font-family: "Orbitron", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.matrix-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  opacity: 0.3;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-tech {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .cyberpunk-footer {
    padding: 3rem 0 1.5rem;
  }
  
  .cyberpunk-section-title {
    font-size: 2rem;
  }
  
  .trust-guide-body {
    padding: 2rem;
  }
  
  .trust-guide-body p:first-child {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  .cyberpunk-title {
    font-size: 2.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .cyberpunk-title {
    font-size: 2rem;
  }
  
  .cyberpunk-features {
    padding: 4rem 0;
  }
}

/* ==============================================
   GLOBAL CYBERPUNK BACKGROUND
   ============================================== */

.casino-guide-section,
.trusted-sites-section,
.security-resources-section,
.compact-bonus-section {
  position: relative;
  background: linear-gradient(135deg, #0d0b1a 0%, #1a1333 100%);
  overflow: hidden;
}

.casino-guide-section::before,
.trusted-sites-section::before,
.security-resources-section::before,
.compact-bonus-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.casino-guide-section::after,
.trusted-sites-section::after,
.security-resources-section::after,
.compact-bonus-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(0, 255, 255, 0.03) 49%, rgba(0, 255, 255, 0.03) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(255, 0, 255, 0.03) 49%, rgba(255, 0, 255, 0.03) 51%, transparent 52%);
  z-index: 2;
}

.casino-guide-section .container,
.trusted-sites-section .container,
.security-resources-section .container,
.compact-bonus-section .container {
  position: relative;
  z-index: 10;
}

/* ==============================================
   COMPACT BONUS GRID STYLES
   ============================================== */

.compact-bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.compact-bonus-card-new {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 200px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(2px);
}

.compact-bonus-card-new:hover {
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.15);
}

.bonus-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bonus-card-content {
  color: white;
}

.bonus-site-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.bonus-amount {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #ff00ff;
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.bonus-code-display {
  margin-bottom: 1rem;
}

.btn-copy-code-new {
  background: linear-gradient(45deg, #00ffff, #0080ff);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-copy-code-new:hover {
  background: linear-gradient(45deg, #0080ff, #00ffff);
}

.bonus-card-actions {
  display: flex;
  justify-content: center;
}

.btn-visit-site-new {
  background: linear-gradient(45deg, #ff00ff, #ff0080);
  color: white;
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: bold;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-visit-site-new:hover {
  background: linear-gradient(45deg, #ff0080, #ff00ff);
  color: white;
  text-decoration: none;
}

@media (max-width: 768px) {
  .compact-bonus-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .compact-bonus-card-new {
    min-height: 180px;
  }
  
  .bonus-card-overlay {
    padding: 1rem;
  }
  
  .bonus-site-name {
    font-size: 1.1rem;
  }
  
  .bonus-amount {
    font-size: 1.5rem;
  }
}

/* ==============================================
   FEATURES FLEX SECTION STYLES
   ============================================== */

.features-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0d0b1a 0%, #1a1333 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.features-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(0, 255, 255, 0.03) 49%, rgba(0, 255, 255, 0.03) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(255, 0, 255, 0.03) 49%, rgba(255, 0, 255, 0.03) 51%, transparent 52%);
  z-index: 2;
}

.features-section .container {
  position: relative;
  z-index: 10;
}

/* ==============================================
   CASINO GUIDE SECTION STYLES
   ============================================== */

.casino-guide-section {
  padding: 4rem 0;
}

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

.guide-intro p {
  font-size: 1.1rem;
  color: #e0e0ff;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.guide-card {
  background: linear-gradient(135deg, rgba(153, 105, 255, 0.1) 0%, rgba(255, 105, 161, 0.1) 100%);
  border: 1px solid rgba(153, 105, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.guide-card:hover {
  border-color: rgba(153, 105, 255, 0.4);
}

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

.guide-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, #9969ff, #ff69a1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-header h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
  color: #9969ff;
  margin: 0;
}

.guide-card p {
  color: #e0e0ff;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.guide-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.guide-meta span {
  background: rgba(153, 105, 255, 0.2);
  border: 1px solid rgba(153, 105, 255, 0.3);
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  color: #b8b8ff;
}

.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #9969ff, #ff69a1);
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-link:hover {
  box-shadow: 0 5px 15px rgba(153, 105, 255, 0.3);
  text-decoration: none;
  color: white;
}

.guide-tips {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(105, 180, 255, 0.1) 0%, rgba(255, 159, 105, 0.1) 100%);
  border: 1px solid rgba(105, 180, 255, 0.2);
}

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

.tip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #e0e0ff;
}

.tip-item i {
  color: #69b4ff;
  font-size: 1.2rem;
}

/* ==============================================
   TRUSTED SITES SECTION STYLES
   ============================================== */

.trusted-sites-section {
  padding: 4rem 0;
}

.trusted-sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.trusted-site-card {
  background: linear-gradient(135deg, rgba(153, 105, 255, 0.1) 0%, rgba(255, 105, 161, 0.1) 100%);
  border: 1px solid rgba(153, 105, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.trusted-site-card:hover {
  border-color: rgba(153, 105, 255, 0.4);
  box-shadow: 0 10px 30px rgba(153, 105, 255, 0.2);
}

.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #9969ff, #ff69a1);
  border-radius: 50%;
  flex-shrink: 0;
}

.site-emoji {
  font-size: 1.8rem;
}

.site-info h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.4rem;
  color: #9969ff;
  margin-bottom: 0.8rem;
}

.site-info p {
  color: #e0e0ff;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.site-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feature-tag {
  background: rgba(105, 180, 255, 0.2);
  border: 1px solid rgba(105, 180, 255, 0.3);
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  color: #b8b8ff;
  white-space: nowrap;
}

.site-actions {
  margin-top: auto;
}

.btn-visit-site {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #9969ff, #ff69a1);
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-visit-site:hover {
  box-shadow: 0 5px 15px rgba(153, 105, 255, 0.4);
  text-decoration: none;
  color: white;
  transform: translateY(-2px);
}

/* ==============================================
   SECURITY RESOURCES SECTION STYLES
   ============================================== */

.security-resources-section {
  padding: 4rem 0;
}

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

.security-resource-card {
  background: linear-gradient(135deg, rgba(255, 105, 161, 0.1) 0%, rgba(105, 180, 255, 0.1) 100%);
  border: 1px solid rgba(255, 105, 161, 0.2);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.security-resource-card:hover {
  border-color: rgba(255, 105, 161, 0.4);
  box-shadow: 0 10px 30px rgba(255, 105, 161, 0.2);
}

.resource-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff69a1, #69b4ff);
  border-radius: 50%;
  flex-shrink: 0;
}

.resource-icon i {
  font-size: 1.3rem;
  color: white;
}

.resource-content h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  color: #ff69a1;
  margin-bottom: 0.8rem;
}

.resource-content p {
  color: #e0e0ff;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ff69a1, #69b4ff);
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.resource-link:hover {
  box-shadow: 0 5px 15px rgba(255, 105, 161, 0.4);
  text-decoration: none;
  color: white;
  transform: translateY(-2px);
}

/* ==============================================
   SECURITY WARNING SECTION STYLES
   ============================================== */

.security-warning {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
  border: 2px solid rgba(255, 193, 7, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin: 3rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  backdrop-filter: blur(2px);
  position: relative;
  overflow: hidden;
}

.security-warning::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(255, 193, 7, 0.05) 50%, 
    transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.warning-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffc107, #ff9800);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.warning-icon i {
  font-size: 1.8rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.warning-content {
  position: relative;
  z-index: 2;
}

.warning-content h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.4rem;
  color: #ffc107;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.warning-content p {
  color: #e0e0ff;
  opacity: 0.95;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .security-warning {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .warning-icon {
    align-self: center;
  }
}

/* ==============================================
   VIP ELITE SECTION STYLES
   ============================================== */

.vip-elite-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0d0b1a 0%, #1a1333 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.vip-elite-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.vip-elite-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.vip-elite-header {
  text-align: center;
  margin-bottom: 4rem;
}

.vip-elite-title {
  font-family: "Orbitron", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700, #ff8c00, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.vip-elite-subtitle {
  font-size: 1.3rem;
  color: #e0e0ff;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* VIP Features Grid */
.vip-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.vip-feature-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.vip-feature-card:hover {
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.vip-exclusivity-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  letter-spacing: 1px;
}

.vip-feature-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1.5rem;
}

.vip-feature-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.vip-feature-description {
  color: #e0e0ff;
  opacity: 0.9;
  line-height: 1.6;
}

/* VIP Benefits */
.vip-benefits-section {
  margin-bottom: 4rem;
}

.vip-benefits-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 2rem;
}

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

.vip-benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.vip-benefit-item:hover {
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.1);
}

.vip-benefit-icon {
  color: #ffd700;
  font-size: 1.2rem;
}

.vip-benefit-text {
  color: #e0e0ff;
  opacity: 0.9;
}

/* VIP Membership Levels */
.vip-membership-levels {
  margin-bottom: 4rem;
}

.vip-levels-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 2rem;
}

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

.vip-level-card {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(160, 82, 45, 0.1) 100%);
  border: 2px solid rgba(139, 69, 19, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.vip-level-card.silver {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, rgba(169, 169, 169, 0.1) 100%);
  border-color: rgba(192, 192, 192, 0.3);
}

.vip-level-card.gold {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
  border-color: rgba(255, 215, 0, 0.3);
}

.vip-level-card.platinum {
  background: linear-gradient(135deg, rgba(229, 228, 226, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
  border-color: rgba(229, 228, 226, 0.3);
}

.vip-level-header {
  margin-bottom: 1.5rem;
}

.vip-level-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.vip-level-card h4 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
  color: #ffd700;
}

.vip-level-features ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.vip-level-features li {
  color: #e0e0ff;
  opacity: 0.9;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.vip-level-requirement {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000;
  font-weight: 700;
  padding: 0.8rem;
  border-radius: 25px;
  margin-top: 1rem;
}

/* VIP Application */
.vip-application-section {
  margin-bottom: 4rem;
}

.vip-application-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 2rem;
}

.vip-application-content p {
  text-align: center;
  color: #e0e0ff;
  opacity: 0.9;
  margin-bottom: 2rem;
}

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

.vip-option-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.vip-option-card:hover {
  border-color: rgba(255, 215, 0, 0.6);
}

.vip-option-icon {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.vip-option-card h4 {
  font-family: "Orbitron", sans-serif;
  color: #ffd700;
  margin-bottom: 1rem;
}

.vip-option-card p {
  color: #e0e0ff;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

/* VIP CTA */
.vip-cta-section {
  text-align: center;
}

.vip-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000;
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  text-decoration: none;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.vip-cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.6);
  text-decoration: none;
  color: #000;
}

/* Breadcrumbs */
.breadcrumbs-section {
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem 0;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.breadcrumb-item {
  color: #b8b8ff;
}

.breadcrumb-item:not(:last-child)::after {
  content: ' > ';
  margin-left: 0.5rem;
  color: #666;
}

.breadcrumb-link {
  color: #9969ff;
  text-decoration: none;
}

.breadcrumb-link:hover {
  color: #ff69a1;
  text-decoration: none;
}

/* ==============================================
   BLOG PAGE STYLES
   ============================================== */

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0d0b1a 0%, #1a1333 100%);
  min-height: 100vh;
  position: relative;
}

.blog-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(105, 180, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 105, 161, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(105, 180, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.blog-container > * {
  position: relative;
  z-index: 10;
}

.page-title {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #69b4ff, #ff69a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(105, 180, 255, 0.5);
}

.page-subtitle {
  font-size: 1.2rem;
  color: #e0e0ff;
  opacity: 0.9;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Blog Navigation Grid */
.blog-navigation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-nav-card {
  background: linear-gradient(135deg, rgba(105, 180, 255, 0.1) 0%, rgba(255, 105, 161, 0.1) 100%);
  border: 1px solid rgba(105, 180, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
  position: relative;
  overflow: hidden;
}

.blog-nav-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(105, 180, 255, 0.03) 50%, 
    transparent 70%);
  pointer-events: none;
}

.blog-nav-card:hover {
  border-color: rgba(105, 180, 255, 0.4);
  box-shadow: 0 10px 30px rgba(105, 180, 255, 0.2);
}

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

.blog-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #69b4ff, #ff69a1);
  border-radius: 50%;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.blog-nav-header h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
  color: #69b4ff;
  margin: 0;
}

.blog-nav-card p {
  color: #e0e0ff;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-nav-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.blog-nav-meta span {
  background: rgba(105, 180, 255, 0.2);
  border: 1px solid rgba(105, 180, 255, 0.3);
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  color: #b8b8ff;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #69b4ff, #ff69a1);
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-nav-link:hover {
  box-shadow: 0 5px 15px rgba(105, 180, 255, 0.4);
  text-decoration: none;
  color: white;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .page-title {
    font-size: 2.2rem;
  }
  
  .blog-navigation-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-nav-card {
    padding: 1.5rem;
  }
  
  .blog-nav-header {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .blog-nav-meta {
    justify-content: center;
  }
}

.features-flex-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}

.feature-flex-card {
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  background: linear-gradient(135deg, 
    rgba(30, 30, 60, 0.8), 
    rgba(20, 20, 40, 0.9));
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(2px);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.feature-flex-card:hover {
  border-color: rgba(255, 0, 255, 0.6);
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.1);
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.feature-flex-card:hover .feature-icon {
  color: #ff00ff;
}

.feature-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.feature-flex-card:hover .feature-title {
  color: #ff00ff;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #b8b8ff;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.feature-description strong {
  color: #ffffff;
  font-weight: 600;
}

/* Features Responsive */
@media (max-width: 1024px) {
  .features-flex-grid {
    gap: 1.5rem;
  }
  
  .feature-flex-card {
    min-width: 250px;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 3rem 0;
  }
  
  .features-flex-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .feature-flex-card {
    min-width: 100%;
    max-width: 100%;
    padding: 1.5rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .feature-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .features-section {
    padding: 2rem 0;
  }
  
  .feature-flex-card {
    padding: 1.25rem;
  }
  
  .feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .feature-title {
    font-size: 1.1rem;
  }
  
  .feature-description {
    font-size: 0.9rem;
  }
}

/* ==============================================
   LOGO MARQUEE SECTION STYLES  
   ============================================== */

.logo-marquee-section {
  padding: 2rem 0;
  background: linear-gradient(135deg, #0d0b1a 0%, #1a1333 100%);
  overflow: hidden;
}

.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  animation: marqueeMove 15s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-shrink: 0;
}

.logo-item {
  display: block;
  flex-shrink: 0;
}

.logo-item img {
  width: 150px;
  height: 100px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  padding: 5px;
}

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

/* Mobile Marquee Speed Optimization */
@media (max-width: 768px) {
  .marquee-track {
    animation: marqueeMove 8s linear infinite;
  }
  
  .marquee-container .marquee-content .marquee-text {
    animation: marqueeMove 8s linear infinite;
  }
  
  .logo-item img {
    width: 120px;
    height: 80px;
  }
  
  .marquee-content {
    gap: 2rem;
  }
}

/* Marquee Bottom Text */
.marquee-container .marquee-content .marquee-text {
  color: #b8b8ff;
  font-size: 1rem;
  animation: marqueeMove 15s linear infinite;
  white-space: nowrap;
  display: inline-block;
}

/* ==============================================
   MYSTICAL FORTUNE CARDS STYLES
   ============================================== */

/* Mystical Cards Section */
.bonus-cards-section {
  position: relative;
  background: linear-gradient(135deg, #0d0b1a 0%, #1a1333 100%);
  padding: 4rem 0;
  overflow: hidden;
}

.bonus-cards-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.bonus-cards-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(0, 255, 255, 0.03) 49%, rgba(0, 255, 255, 0.03) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(255, 0, 255, 0.03) 49%, rgba(255, 0, 255, 0.03) 51%, transparent 52%);
  z-index: 2;
}

.bonus-cards-section .container {
  position: relative;
  z-index: 10;
}

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

.bonus-title {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #9969ff, #ff69a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(153, 105, 255, 0.3);
}

.bonus-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  color: #b8b8ff;
}

/* Fortune Statistics Grid */
.fortune-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 3rem 0;
  padding: 0 1rem;
}

.fortune-stat-card {
  background: linear-gradient(135deg, rgba(153, 105, 255, 0.1) 0%, rgba(255, 105, 161, 0.1) 100%);
  border: 1px solid rgba(153, 105, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(2px);
  transition: transform 0.3s ease;
}

.fortune-stat-card:hover {
  border-color: rgba(153, 105, 255, 0.4);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #9969ff;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.7;
  color: #b8b8ff;
}

/* Popular Fortune Messages */
.popular-fortunes {
  margin: 3rem 0;
  padding: 0 1rem;
}

.popular-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #9969ff;
}

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

.fortune-message-item {
  background: linear-gradient(135deg, rgba(255, 105, 161, 0.1) 0%, rgba(105, 180, 255, 0.1) 100%);
  border: 1px solid rgba(255, 105, 161, 0.2);
  border-radius: 10px;
  padding: 1rem;
  backdrop-filter: blur(2px);
  transition: transform 0.3s ease;
}

.fortune-message-item:hover {
  border-color: rgba(255, 105, 161, 0.4);
}

.fortune-user {
  font-weight: bold;
  color: #ff69a1;
  margin-bottom: 0.5rem;
}

.fortune-preview {
  font-style: italic;
  margin-bottom: 0.5rem;
  color: #e0e0ff;
  opacity: 0.9;
}

.fortune-time {
  font-size: 0.8rem;
  opacity: 0.6;
  color: #b8b8ff;
}

/* Fortune Tips */
.fortune-tips {
  margin: 3rem 0;
  padding: 0 1rem;
}

.tips-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #69b4ff;
}

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

.tip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(105, 180, 255, 0.1) 0%, rgba(255, 159, 105, 0.1) 100%);
  border: 1px solid rgba(105, 180, 255, 0.2);
  border-radius: 10px;
  padding: 1rem;
  backdrop-filter: blur(2px);
  transition: transform 0.3s ease;
}

.tip-item:hover {
  border-color: rgba(105, 180, 255, 0.4);
}

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

.tip-text {
  font-size: 0.9rem;
  color: #e0e0ff;
  opacity: 0.9;
}

.card-table {
  perspective: 1000px;
  margin-bottom: 2rem;
  min-height: 400px;
  z-index: 2;
  position: relative;
}

.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 350px;
  padding: 1rem;
}

.card {
  width: 160px;
  height: 280px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s, filter 0.5s;
  cursor: pointer;
  filter: brightness(0.9);
}

.card:hover {
  filter: brightness(1.2) drop-shadow(0 0 15px rgba(153, 105, 255, 0.6));
  transform: translateY(-15px) rotateY(10deg);
}

.card-face {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.card-back {
  background: linear-gradient(45deg, #4a0e77, #650d6d);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.card-front {
  background: linear-gradient(135deg, #2b2f66, #1c1647);
  transform: rotateY(180deg);
  padding: 1rem;
  text-align: center;
  border: 3px solid rgba(153, 105, 255, 0.3);
}

.card-symbol {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.card-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #9969ff, #ff69a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-desc {
  font-size: 0.9rem;
  opacity: 0.7;
  color: #b8b8ff;
}

.card.flipped {
  transform: rotateY(180deg);
  pointer-events: none;
}

.card-back:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L60 40 L100 50 L60 60 L50 100 L40 60 L0 50 L40 40 Z' fill='rgba(255, 255, 255, 0.2)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.5;
}

.card-back:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.05) 0,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 10px
  );
  border-radius: 15px;
}

.message-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  z-index: 10000;
}

.message-container.visible {
  opacity: 1;
  pointer-events: all;
}

.message-card {
  width: 90%;
  max-width: 500px;
  background: rgba(30, 25, 50, 0.95);
  backdrop-filter: blur(2px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(153, 105, 255, 0.3);
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s, opacity 0.8s;
}

.message-container.visible .message-card {
  transform: translateY(0);
  opacity: 1;
}

.message-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #9969ff, #ff69a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.message-text {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ffffff;
}

#reshuffle-btn {
  background: linear-gradient(45deg, #9969ff, #ff69a1);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(153, 105, 255, 0.4);
}

#reshuffle-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(153, 105, 255, 0.6);
}

#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Special Animation Elements */
.magical-sparkle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  animation: sparkle 1s forwards;
}

@keyframes sparkle {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(1.5) rotate(90deg);
    opacity: 0;
  }
}

/* Mystical Cards Responsive */
@media (max-width: 768px) {
  .bonus-title {
    font-size: 2rem;
  }

  .card {
    width: 130px;
    height: 230px;
  }

  .card-symbol {
    font-size: 2.5rem;
  }

  .message-card {
    padding: 2rem;
  }

  .message-title {
    font-size: 1.8rem;
  }

  .message-text {
    font-size: 1.3rem;
  }
}

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

  .cards-container {
    gap: 1rem;
  }

  .card {
    width: 110px;
    height: 190px;
  }

  .card-symbol {
    font-size: 2rem;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-desc {
    font-size: 0.8rem;
  }
}
