* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #dcddde;
  overflow-x: hidden;
  background: #36393f;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(47, 49, 54, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid #202225;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #5865F2;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
}

.logo-sub {
  font-size: 0.5rem;
  font-weight: 600;
  color: #b0b4e7;
  text-shadow: 0 0 10px rgba(140, 148, 235, 0.5);
  letter-spacing: 2px;
  margin-left: 4px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.logo:hover .logo-sub {
  transform: scale(1.05);
  opacity: 1;
}

.nav-links {
  display: flex;
  gap: 0.1rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #dcddde;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.nav-links a:hover {
  color: #5865F2;
  background: rgba(88, 101, 242, 0.1);
  transform: translateY(-2px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #5865F2;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 80%;
}

/* לינק מיוחד לסקשן הלייב */
.nav-links a.live-link {
  color: #dcddde;
  /* צבע סגול רך */
}

.nav-links a.live-link:hover {
  color: #d66bff;
  background: rgba(214, 107, 255, 0.1);
  /* רקע עדין */
  transform: translateY(-2px);
}

.nav-links a.live-link::after {
  background: #d66bff;
}

.cta-button {
  background: #5865F2;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2f3136 0%, #202225 100%);
  color: #dcddde;
  padding: 8rem 2rem 4rem;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%235865F2" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  background: linear-gradient(45deg, #5865F2, #7289da);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite alternate;
  word-break: break-word;
  word-wrap: break-word;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
  }

  to {
    text-shadow: 0 0 30px rgba(88, 101, 242, 0.8);
  }
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1s both;
}

.btn-primary {
  background: #5865F2;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: #dcddde;
  padding: 1rem 2rem;
  border: 2px solid #5865F2;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #5865F2;
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  left: 0;
}

.btn-secondary:hover {
  color: white;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
  padding: 9rem 2rem;
  background: #2f3136;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #dcddde;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #5865F2, #7289da);
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #36393f;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid #202225;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: #5865F2;
}

.feature-icon {
  font-size: 3rem;
  color: #5865F2;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  text-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #dcddde;
}

.feature-card p {
  color: #b9bbbe;
  line-height: 1.6;
}

/* Commands Section */
.commands {
  padding: 5rem 2rem;
  background: #36393f;
}

.commands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.command-card {
  background: #2f3136;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #5865F2;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.command-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.1), transparent);
  transition: left 0.3s ease;
}

.command-card:hover::before {
  left: 100%;
}

.command-card:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.command-name {
  font-weight: bold;
  color: #5865F2;
  margin-bottom: 0.5rem;
}

.command-description {
  color: #b9bbbe;
  font-size: 0.9rem;
}

/* Stats Section */
.stats {
  padding: 4rem 2rem;
  background: #202225;
  color: #dcddde;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-item h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #5865F2;
  text-shadow: 0 0 10px rgba(88, 101, 242, 0.3);
}

.stat-item p {
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #2f3136 0%, #202225 100%);
  color: #dcddde;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::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="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%235865F2" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>');
  animation: float 15s ease-in-out infinite reverse;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* Footer */
footer {
  background: #202225;
  color: #dcddde;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid #2f3136;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: #5865F2;
}

.footer-section p,
.footer-section a {
  color: #b9bbbe;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #5865F2;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-links a {
  color: #b9bbbe;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 50%;
}

.social-links a:hover {
  color: #5865F2;
  transform: translateY(-3px);
  text-shadow: 0 0 10px rgba(88, 101, 242, 0.5);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #dcddde;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {

  .nav-links,
  .mobile-menu-toggle {
    display: none !important;
  }

  .nav-container {
    padding: 1rem 1rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    word-break: normal;
    word-wrap: break-word;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .hero h1 {
    font-size: 1.6rem;
    line-height: 1.1;
    word-break: normal;
    word-wrap: break-word;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Glowing effect for interactive elements */
.glow-on-hover {
  transition: all 0.3s ease;
}

.glow-on-hover:hover {
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
}

/* Particle effect */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #5865F2;
  border-radius: 50%;
  animation: particleFloat 6s infinite linear;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Styling untuk Kredit di Footer */
.footer-credit {
  margin-top: 1rem;
  /* Memberi jarak dari baris copyright di atasnya */
  font-size: 0.85em;
  color: #b9bbbe;
  /* Warna abu-abu yang lebih lembut */
  letter-spacing: 0.1em;
  /* Efek spasi antar huruf yang Anda inginkan */
  text-transform: uppercase;
  /* Membuat teks menjadi huruf kapital */
}

.footer-credit a {
  color: #5865F2;
  /* Menggunakan warna utama dari variabel CSS Anda */
  text-decoration: none;
  font-weight: bold;
  /* Membuat nama Anda tebal */
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  text-decoration: underline;
  /* Garis bawah saat kursor di atasnya */
}

/* לוגו מסך בית  */

.circle-logo {
  width: 150px;
  /* אפשר לשנות לגודל שאתה רוצה */
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #888;
  /* מסגרת אופציונלית */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  /* הצללה קלה */
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-top: 0px;
}

/* מייל בולט */
.highlight-email {
  color: #ffffff;
  background: #5865F2;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(88, 101, 242, 0.4);
}

.highlight-email:hover {
  background: #4752c4;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.7);
}

.live-stats {
  padding: 4rem 2rem;
  text-align: center;
}

.top-section-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.live-stats-wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.live-card {
  background-color: #2f3136;
  border-radius: 1.2rem;
  padding: 2rem;
  width: 320px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.live-card:hover {
  transform: translateY(-5px);
}

.live-card-title {
  font-size: 1.2rem;
  color: #7289da;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #444;
  padding-bottom: 0.5rem;
}

.live-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.live-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  background-color: #36393f;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.rank {
  font-weight: bold;
  font-size: 1.1rem;
  margin-right: 0.8rem;
  color: #ffcc00;
  width: 20px;
}

.user-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 0.8rem;
}

.user-info {
  text-align: left;
}

.username {
  color: #fff;
  font-weight: bold;
  font-size: 0.95rem;
}

.stat {
  font-size: 0.85rem;
  color: #b9bbbe;
}

.live-tiktok-section {
  padding: 4rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: #fff;
}

.live-stats-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.stat-column {
  width: 320px;
  background-color: #2f3136;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.column-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #7289da;
  border-bottom: 1px solid #444;
  padding-bottom: 0.5rem;
}

.profile-card {
  background-color: #36393f;
  padding: 1.2rem;
  border-radius: 0.8rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.profile-card:hover {
  transform: translateY(-4px);
}

.profile-card h3 {
  margin: 0.5rem 0;
  color: #fff;
  font-size: 1.1rem;
}

.profile-card p {
  font-size: 0.9rem;
  color: #ccc;
  margin: 0;
}

.profile-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #7289da;
}

.profile-card.top-1 {
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 221, 0, 0.2);
  /* גוון חלש כברירת מחדל */
}

.profile-card.top-1:hover {
  box-shadow:
    0 0 15px rgba(255, 221, 0, 0.6),
    0 0 30px rgba(255, 221, 0, 0.4),
    0 0 45px rgba(255, 221, 0, 0.2);
}

.profile-card.top-2:hover {
  box-shadow:
    0 0 15px rgba(0, 153, 255, 0.6),
    0 0 30px rgba(0, 153, 255, 0.4),
    0 0 45px rgba(0, 153, 255, 0.2);
}

.user-info {
  text-align: center;
  margin-bottom: 0.3rem;
}

.tiktok-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
}

.tiktok-id {
  font-size: 0.1rem;
  /* הקטנה קלה יותר */
  color: #b0b0b0;
  margin-top: 1rem;
  /* קרוב יותר לשם */
  margin-bottom: 0.2rem;
}

/* בסיס קוביה */
.profile-card {
  position: relative;
  background: #2c2f33;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: 0.3s ease;
}

/* קוביית טופ 1 */
.profile-card.top-1:hover {
  box-shadow: 0 0 20px 5px rgba(255, 165, 0, 0.5);
  /* אור כתום */
}

/* הכתר עצמו */
.crown-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.3rem;
  color: transparent;
  opacity: 0;
  transition: 0.3s ease;
}

/* הצגת הכתר כשעוברים עם העכבר */
.profile-card.top-1:hover .crown-icon {
  color: #f97316;
  /* כתום */
  opacity: 1;
}

.tiktok-info {
  margin-top: 0.4rem;
  text-align: center;
  line-height: 1.2;
}

.tiktok-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.tiktok-id {
  opacity: 0.7;
  font-style: italic;
}

.stat-highlight {
  color: #ffa600;
  font-weight: bold;
  font-size: 1.05em;
}

.stat-highlight:hover {
  text-shadow: 0 0 8px rgba(240, 137, 4, 0.6);
  transition: text-shadow 0.3s ease;
  cursor: default;
}

.column-subtext {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: -10px;
  margin-bottom: 20px;
  text-align: center;
  opacity: 0.7;
}

.membership-column {
  width: 580px;
  background-color: #2f3136;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.membership-tiers-section {
  margin-top: 0.0rem;
}

.column-subtext {
  color: #aaa;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.membership-tiers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.membership-card {
  position: relative;
  /* מוסיף! */
  display: flex;
  align-items: center;
  background-color: #2e2e2e;
  border-radius: 12px;
  padding: 0.8rem;
  width: 250px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

.membership-card.top-1 {
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
  /* גוון חלש כברירת מחדל */
}

.membership-card.top-1:hover {
  box-shadow:
    0 0 15px rgba(255, 0, 0, 0.6),
    0 0 30px rgba(240, 68, 16, 0.4),
    0 0 45px rgba(187, 65, 65, 0.2);
}

.membership-card.top-1:hover {
  box-shadow: 0 0 20px 5px rgba(163, 5, 5, 0.5);
  /* אור כתום */
}

.crown-icon2 {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 1.4rem;
  color: transparent;
  opacity: 0;
  z-index: 10;
  transition: 0.3s ease;
}

/* הצגת הכתר כשעוברים עם העכבר */
.membership-card.top-1:hover .crown-icon2 {
  color: #f97316;
  /* כתום */
  opacity: 1;
}

.membership-card:hover {
  box-shadow: 0 0 12px 2px rgba(255, 79, 111, 0.4);
}

.member-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 0.8rem;
  border: 1px solid #f5ae8d;
  object-fit: cover;
}

.member-info {
  display: flex;
  flex-direction: column;
}

.member-name {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.member-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* LVL 30 IN TIKTOK */
.tag-gift {
  background-color: #3b27f5;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid #a684ff;
  box-shadow: 0 0 4px rgba(166, 132, 255, 0.3);
}

.tag-gift:hover {
  transform: scale(1.05);
  transition: all 0.2s ease;
}

.tag-gift img {
  width: 16px;
  height: 16px;
}

/* LVL 25 IN TIKTOK */
.tag-gift2 {
  background-color: #4632f5;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid #a684ff;
  box-shadow: 0 0 4px rgba(166, 132, 255, 0.3);
}

.tag-gift2:hover {
  transform: scale(1.05);
  transition: all 0.2s ease;
}

.tag-gift2 img {
  width: 16px;
  height: 16px;
}

/* ------------------- */
/* LVL 20 IN TIKTOK */
.tag-gift3 {
  background-color: #3d6ae7;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid #6f85eb;
  box-shadow: 0 0 4px rgba(166, 132, 255, 0.3);
}

.tag-gift3:hover {
  transform: scale(1.05);
  transition: all 0.2s ease;
}

.tag-gift3 img {
  width: 19px;
  height: 19px;
}

/* ------------------- */

.tag-v {
  background-color: #e9576d;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.20rem 0.55rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid #f7c674;
  box-shadow: 0 0 4px rgba(247, 198, 116, 0.3);
}

.tag-v:hover {
  transform: scale(1.05);
  transition: all 0.2s ease;
}

.tag-iv {
  background-color: #e94d38;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.tag-iv:hover {
  transform: scale(1.05);
  transition: all 0.2s ease;
}

.tag-iii {
  background-color: #f15d49;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.tag-iii:hover {
  transform: scale(1.05);
  transition: all 0.2s ease;
}

.heart-icon {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
  transform: translateY(1px);
}

.member-level {
  font-size: 0.75rem;
  color: #ccc;
}

.tag-gift,
.tag-gift2,
.tag-gift3,
.tag-v,
.tag-iv,
.tag-iii {
  position: relative;
  cursor: help;
}

/* טול־טיפ */
.tag-gift::after,
.tag-gift2::after,
.tag-gift3::after,
.tag-v::after,
.tag-iv::after,
.tag-iii::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #222;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 10;
}

/* החץ הקטן למטה */
.tag-gift3::before,
.tag-gift2::before,
.tag-gift::before,
.tag-v::before,
.tag-iv::before,
.tag-iii::before {
  content: "";
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #222 transparent transparent transparent;
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* מופיע ב-hover */
.tag-gift3:hover::after,
.tag-gift3:hover::before,
.tag-gift2:hover::after,
.tag-gift2:hover::before,
.tag-gift:hover::after,
.tag-gift:hover::before,
.tag-v:hover::after,
.tag-v:hover::before,
.tag-iv:hover::after,
.tag-iv:hover::before,
.tag-iii:hover::after,
.tag-iii:hover::before {
  opacity: 1;
}


/* אפקט כניסה */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */

/* LAST GIFTER AND LAST LIVE */
.highlight-live-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}

.highlight-video-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.highlight-live-video {
  width: 260px;
  height: 460px;
  border-radius: 12px;
  background-color: #000;
  box-shadow: 0 0 12px rgba(255, 199, 99, 0.25);
  object-fit: cover;
}

.video-wrapper {
  width: 260px;
  height: 460px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 0 12px rgba(255, 199, 99, 0.25);
  position: relative;
}

.scaled-video {
  width: 100%;
  height: 100%;
  border: none;
  transform: scale(1.1);
  /* אפשר לשחק עם זה */
  transform-origin: center;
}

/* כרטיס פרופיל */
.highlight-gifter-card {
  display: flex;
  align-items: center;
  background-color: #1f1f1f;
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  box-shadow: 0 0 12px rgba(255, 168, 0, 0.25);
  gap: 1rem;
  width: 260px;
}

.gifter-card-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #f5ae8d;
  object-fit: cover;
}

.gifter-card-info {
  text-align: left;
}

.gifter-card-name {
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.gifter-card-id {
  color: #aaa;
  font-size: 0.8rem;
  margin: 0.2rem 0;
}

.gifter-card-score {
  color: #ffcc4d;
  font-size: 0.9rem;
  margin: 0;
}

.gifter-card-score span {
  font-weight: bold;
  color: #facc15;
}

.highlight-live-video {
  width: 260px;
  height: 460px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255, 199, 99, 0.25);
  background-color: #000;
  border: none;
}

.live-label {
  text-align: center;
  color: #b38fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: -0.2rem;
}

.live-label small {
  display: block;
  color: #aaa;
  font-size: 0.75rem;
  margin-top: 0.1rem;
}

.highlight-live-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.highlight-gifter-link {
  display: block;
  width: 100%;
  /* חשוב כדי לא להתכווץ */
  text-decoration: none;
  color: inherit;
}

.highlight-gifter-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-gifter-link:hover .highlight-gifter-card {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


/* קוביה של כל הסירטונים */
.video-stat-column {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #2f3136;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(211, 99, 99, 0.2);
}

/* ------------------------- */
.stat-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #b38fff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.highlight-podium {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.highlight-video-card {
  background-color: transparent;
  padding: 0.5rem;
  border-radius: 16px;
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-video-card.first {
  transform: translateY(-15px);
}

.highlight-video-card.second,
.highlight-video-card.third {
  transform: translateY(0);
}

.highlight-live-video {
  width: 100%;
  height: 460px;
  border-radius: 12px;
  border: none;
  background-color: #000;
  margin-bottom: 0.5rem;
}

/* צבע הכרטיס */
.highlight-gifter-card {
  background-color: #2c2f33;
  padding: 0.6rem;
  border-radius: 12px;
  display: flex;
  gap: 0.6rem;
  width: 100%;
  box-shadow: 0 0 10px rgba(255, 170, 0, 0.068);
}

/* ------------------------- */
.gifter-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f5ae8d;
}

.gifter-card-info {
  color: #eee;
  font-size: 0.85rem;
}

.gifter-card-id {
  color: #aaa;
  font-size: 0.75rem;
}

.gifter-card-score span {
  color: gold;
  font-weight: bold;
}

.live-label {
  font-size: 0.9rem;
  color: #b38fff;
  margin-bottom: 0.3rem;
  text-align: center;
}

.section-subtitle {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #aaa;
  font-size: 0.95rem;
  position: relative;
}

.section-subtitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  width: 30%;
  height: 1px;
  background-color: #444;
}

.section-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  width: 30%;
  height: 1px;
  background-color: #444;
}

/* מידע על מצב לייב או לא לייב */
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  background-color: #555;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 14px;
  position: absolute;
  top: 25px;
  left: 60px;
  /* תזיז לפי הצורך */
  z-index: 1000;
}

.live-indicator.live {
  background-color: #e63946;
  animation: pulse 1s infinite;
}

.live-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #aaa;
  transition: background-color 0.3s ease;
  /* הסר את border והצללה מכאן */
}

.live-indicator.live .live-dot {
  background-color: #ff3b30;
  animation: blink 1s infinite ease-in-out;
  border: 2px solid white;
  /* מסגרת לבנה רק בלייב */
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
  /* זוהר רק בלייב */
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.6);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(230, 57, 70, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
  }
}

/* STORE */
.product-card {
  background-color: #2f3136;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  width: 280px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.product-image-area {
  height: 130px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.product-body {
  padding: 1.5rem;
  text-align: center;
}

.product-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
}

.divider {
  width: 40px;
  height: 3px;
  background-color: #5865F2;
  margin: 0 auto 1rem;
  border-radius: 10px;
}

.product-description {
  font-size: 0.95rem;
  color: #b9bbbe;
  margin-bottom: 1rem;
}

.product-price {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 1rem;
}

.buy-button {
  background-color: #5865F2;
  color: white;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.buy-button:hover {
  background-color: #4752c4;
}

/* STORE V2 */
.store-card {
  width: 280px;
  border-radius: 15px;
  overflow: hidden;
  background: #2f3136;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid #202225;
  position: relative;
}

.store-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: #5865F2;
}

.store-image {
  height: 140px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* תוכן פנימי */
.store-content {
  padding: 1.5rem;
  text-align: center;
}

.store-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

/* פס דק ועדין */
.store-divider {
  width: 32px;
  height: 2px;
  background: linear-gradient(to right, #5865F2, #7289da);
  margin: 0 auto 1rem;
  border-radius: 5px;
}

.store-description {
  font-size: 0.95rem;
  color: #b9bbbe;
  margin-bottom: 1rem;
}

.store-price {
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

/* כפתור קטן עם אפקט אור */
.store-btn {
  display: inline-block;
  background: #5865F2;
  color: white;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

.store-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);
  transition: left 0.5s ease;
}

.store-btn:hover::before {
  left: 100%;
}

.store-btn:hover {
  background: #4752c4;
  transform: translateY(-1.5px);
  box-shadow: 0 6px 15px rgba(88, 101, 242, 0.3);
}

.store-divider-line {
  height: 2px;
  width: 60%;
  background: linear-gradient(to right, #888, #ccc, #888);
  margin: 0.5rem auto 1rem;
  border: none;
  opacity: 1;
  border-radius: 1px;
}

/* MOBILE EDIT */
@media screen and (max-width: 768px) {

  /* Responsive Behavior */
  .nav-links {
    display: none;
  }

  .hamburger {
    order: 3;
    display: flex;
  }

  .cta-button {
    order: 2;
  }


  .hero {
    padding-bottom: 10rem;
    /* מקטין את הרווח בתחתית החלק העליון */
  }

  .hero .cta-container {
    margin-bottom: 0.5rem;
    /* או אפס בכלל, אם אתה רוצה שהכותרת תהיה קרובה */
  }

  .nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    position: relative;
  }

  /* הלוגו - נעלה אותו קצת ונקטין טיפה */
  .logo {
    font-size: 1.7rem;
    margin-top: 0.4rem;
    margin-bottom: 0.3rem;
    margin-left: 0.4rem;
    line-height: 1.1;
  }

  /* הטקסט הקטן של SITE */
  .logo-sub {
    font-size: 0.55rem;
    margin-left: 2px;
  }

  /* כפתור הדיסקורד */
  .cta-button.glow-on-hover {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    margin-top: 1.2rem;
    left: -4.2rem;
    top: -2.3rem;
    font-size: 0.4rem;
  }

  /* אינדיקטור ה-Offline */
  .live-indicator {
    transform: scale(0.6);
    margin-top: 0.0rem;
    top: -1rem;
    left: -0.7rem;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 בשורה */
    gap: 1.2rem;
    padding: 0 1rem;
  }

  .feature-card {
    padding: 0.5rem;
    font-size: 0.9rem;
    border-radius: 12px;
  }

  .feature-icon {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }

  .feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  .commands-grid {
    grid-template-columns: repeat(2, 1fr);
    /* שני טורים */
    gap: 1rem;
    padding: 0 1rem;
  }

  .command-card {
    font-size: 0.85rem;
    padding: 1rem;
    border-radius: 10px;
  }

  .command-name {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.4rem;
  }

  .command-description {
    font-size: 0.8rem;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
    text-align: center;
  }

  .stats-grid::-webkit-scrollbar {
    display: none;
    /* Chrome */
  }

  .stat-item {
    flex: 0 0 auto;
    min-width: 140px;
  }

  .video-stat-column {
    width: 94%;
    max-width: 380px;
    /* מונע גודל ענק במסך צר */
    transform: scale(0.95);
  }

  /*LIVE HUB*/
  .live-stats-columns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
  }

  .membership-column,
  .stat-column {
    width: 94%;
    max-width: 330px;
    /* מונע גודל ענק במסך צר */
    transform: scale(0.95);
    /* מקטין טיפה */
  }

  .membership-card,
  .profile-card {
    transform: scale(0.95);
    margin-bottom: 1rem;
  }

  .column-title {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    text-align: center;
  }

  .column-subtext {
    font-size: 0.9rem;
    text-align: center;
    opacity: 0.75;
  }

}


/* תפריט ההמבורגר */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
  margin-right: 1rem;
  z-index: 1100;
}

.hamburger span {
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* Mobile menu */
.mobile-social-links {
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #3f51b5;
}

.mobile-social-links a {
  color: white;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.mobile-social-links a:hover {
  color: #6c63ff;
}

/* תפריט מובייל */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 65%;
  height: 100vh;
  background-color: rgba(50, 50, 50, 0.8);
  backdrop-filter: blur(6px);
  color: white;
  z-index: 9999;
  padding: 2rem 1rem;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  /* כיוון עברי */
  direction: rtl;
  text-align: right;
}
.mobile-menu.open {
  right: 0;
}

/* עיצוב הרשימה */
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  margin-bottom: 1rem;
  border-bottom: 1px solid #3f51b5;
  /* פס הפרדה כחול */
  padding-bottom: 0.6rem;
}

.mobile-menu ul li a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
}

.mobile-menu ul li a:hover {
  color: #6c63ff;
}


.close-btn {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  position: absolute;
  top: 1rem;
  left: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.close-btn:hover {
  transform: scale(1.2);
}

/* Active state */
.mobile-menu.active {
  right: 0;
}


/* דיסקורד לא נעלם במובייל */
.cta-button {
  z-index: 1001;
}

/* רספונסיביות */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* TYPEWRITER - אפקט הקלדה*/
.typewriter-wrapper {
  display: flex;
  justify-content: center;
  text-align: center;
  direction: rtl;
}

#typewriter-text {
  font-size: 1.1rem;
  color: #fff;
  white-space: pre-wrap;
  max-width: 600px;
  text-align: center;
  direction: rtl;
  position: relative;
}

/* הקו המקליד */
#typewriter-text::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1em;
  background-color: #aaa;
  margin-right: 2px;
  animation: blinkCursor 0.8s step-end infinite;
  vertical-align: text-top; /* ⬅ זה הטריק */
  position: relative;
  top: 4px;
}

@keyframes blinkCursor {
  50% {
    opacity: 0;
  }
}

/* Scrollbar - סקרול בר */
/* סרגל גלילה - Webkit Browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1e1e1e; /* צבע רקע של המסילה */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #6c63ff; /* צבע של הידית */
  border-radius: 10px;
  border: 2px solid #1e1e1e; /* מסגרת מסביב לידית */
}

::-webkit-scrollbar-thumb:hover {
  background: #837eff; /* צבע ב-hover */
}


/* XP Button */
.xp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: radial-gradient(circle, #ff6b6b, #ff3c00);
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(255, 92, 0, 0.6);
  cursor: pointer;
  z-index: 9999;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 10px rgba(255, 92, 0, 0.5); }
  50% { box-shadow: 0 0 25px rgba(255, 92, 0, 1); }
  100% { box-shadow: 0 0 10px rgba(255, 92, 0, 0.5); }
}

/* XP Popup */
.xp-popup {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background: rgba(33, 33, 33, 0.95);
  color: #fff;
  padding: 1rem;
  border-radius: 10px;
  width: 220px;
  box-shadow: 0 0 20px rgba(255, 100, 0, 0.3);
  display: none;
  z-index: 9999;
  animation: slide-up 0.3s ease-out;
}

@keyframes slide-up {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.xp-popup h4 {
  margin: 0 0 0.5rem;
  color: #ffc107;
}

.xp-bar {
  background: #333;
  border-radius: 6px;
  overflow: hidden;
  height: 8px;
  margin-top: 0.5rem;
}

.xp-fill {
  height: 8px;
  background: linear-gradient(90deg, #ff9500, #ff6a00);
  width: 0%;
  transition: width 0.3s ease-in-out;
}

.xp-button {
  width: 48px;
  height: 48px;
  background-color: #ff5722;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255, 87, 34, 0.6), 0 0 20px rgba(255, 87, 34, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.1s ease, box-shadow 0.3s ease;
  cursor: pointer;
  z-index: 9999;
}

.xp-button:active {
  transform: scale(0.92);
}

.xp-button i {
  animation: flamePulse 1.5s infinite ease-in-out;
}

@keyframes flamePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
}

/* מסך טעינה */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #444;
  border-top: 4px solid #4f57ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#loader.fade-out {
  opacity: 0;
  pointer-events: none;
}



/* #discord-widget-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #5865F2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.6);
  z-index: 9999;
  transition: transform 0.2s;
}

#discord-widget-button:hover {
  transform: scale(1.1);
}

#discord-widget-button img {
  width: 32px;
  height: 32px;
}

#discord-popup {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 25px;
  z-index: 10000;
  background: #2c2f33;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  overflow: hidden;
}

@keyframes rotateDiscord {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#discord-widget-button:hover img {
  animation: rotateDiscord 1s linear infinite;
} */