/* ============================================================
   RAKHA — 100% Completely Transparent Glass Card with White Edges
   ============================================================ */

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

:root {
  --neon-color: #00f2fe;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background: #000000;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

a, button {
  cursor: none;
}

/* ── 1. CLEAN NEON DOT CURSOR ── */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  background: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px #ffffff, 0 0 20px var(--neon-color), 0 0 35px var(--neon-color);
  transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, transform 0.04s ease-out;
}

.cursor-dot.hover {
  width: 16px;
  height: 16px;
  background: var(--neon-color);
  box-shadow: 0 0 15px var(--neon-color), 0 0 30px var(--neon-color), 0 0 45px #ffffff;
}

/* ── 2. VIDEO BACKGROUND ── */
.video-bg-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
}

#bgVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: brightness(0.72) contrast(1.08);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

/* ── 3. ENTER OVERLAY ── */
.enter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(25px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}

.enter-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.enter-prompt {
  font-family: 'Plus Jakarta Sans', monospace;
  font-size: 1.4rem;
  letter-spacing: 5px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px var(--neon-color);
  animation: pulsePrompt 2s infinite alternate;
}

@keyframes pulsePrompt {
  0% { opacity: 0.6; }
  100% { opacity: 1; text-shadow: 0 0 25px #ffffff, 0 0 50px var(--neon-color); }
}

/* ── 4. MINIMAL TOP-LEFT SPEAKER ── */
.minimal-sound-btn {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 100;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.minimal-sound-btn:hover {
  color: #ffffff;
  transform: scale(1.15);
}

/* ── 5. 100% TRANSPARENT GLASS CARD WITH CRISP WHITE EDGES ── */
.main-wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.guns-card {
  width: 100%;
  max-width: 500px; /* Made a bit bigger */
  /* Completely transparent glass - only subtle blur and glowing white edges */
  background: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.35); /* Crisp white outline */
  border-radius: 30px;
  padding: 48px 36px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.08),
              inset 0 0 15px rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease-out, border-color 0.3s ease;
}

.guns-card:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.15),
              inset 0 0 20px rgba(255, 255, 255, 0.08);
}

/* Top Corner Logo Badge (like guns.lol badge in user screenshot) */
.card-top-badge {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 15;
}

.card-top-badge:hover {
  transform: scale(1.15) rotate(5deg);
  border-color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.top-badge-logo {
  width: 18px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}

/* ── 6. AVATAR ── */
.avatar-wrap {
  width: 96px;
  height: 96px;
  margin-bottom: 18px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.45);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.avatar-wrap:hover {
  transform: scale(1.06);
  border-color: #ffffff;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── 7. USER TITLES ── */
.user-name {
  font-family: 'Cairo', 'Plus Jakarta Sans', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.user-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.8px;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* ── 8. DISCORD BADGE CARD (TRANSPARENT WITH WHITE BORDER) ── */
.discord-badge-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  padding: 8px 22px 8px 10px;
  margin-bottom: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.badge-avatar-wrap {
  position: relative;
  width: 44px;
  height: 44px;
}

.badge-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.badge-status-dot {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #000;
  box-shadow: 0 0 6px #22c55e;
}

.badge-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.badge-tag {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.badge-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* ── 9. HORIZONTAL SOCIAL ICONS ROW (BIGGER EMOJIS) ── */
.social-icons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px; /* Increased spacing */
}

.social-icon-btn {
  width: 58px;  /* Much bigger icons */
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.25s ease;
}

.social-emoji-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.25s ease;
}

.social-icon-btn:hover {
  transform: translateY(-6px) scale(1.25);
}

.social-icon-btn:hover .social-emoji-img {
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.9)) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.9));
}

/* ── 10. RESPONSIVE ── */
@media (max-width: 540px) {
  .guns-card {
    max-width: 92%;
    padding: 38px 24px 34px;
    border-radius: 24px;
  }
  .social-icons-row {
    gap: 20px;
  }
  .social-icon-btn {
    width: 48px;
    height: 48px;
  }
}
