:root {
  --bg-dark: rgba(10, 10, 12, 0.92);
  --border-color: rgba(255, 255, 255, 0.08);
  --accent-green: #00bf8f;
  --accent-purple: #a855f7;
  --font-main: 'Inter', sans-serif;
  --font-title: 'Space Grotesk', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: url('/galeria/mouse.png'), auto !important; 
}

a, button, .social-icon-btn, .join-btn, #entry-screen {
  cursor: url('/galeria/mouse.png'), pointer !important; 
}
body {
  font-family: var(--font-main);
  color: #e2e8f0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  background-color: #000;
}

#entry-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #050505;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  cursor: pointer;
}

.entry-content p {
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.1);
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%),
              repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 2px);
  z-index: -1;
}

.wrapper {
  padding: 20px;
  width: 100%;
  max-width: 480px;
  perspective: 1000px;
}

.profile-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 30px 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
  text-align: center;
  transition: transform 0.1s ease-out, box-shadow 0.3s ease;
  position: relative;
}

.badges-row {
  position: absolute;
  top: 18px;
  right: 20px;
  display: flex;
  gap: 8px;
}

.badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 9px;
  border-radius: 10px;
  font-size: 0.8rem;
  color: #cbd5e1;
}

.avatar-box {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 10px auto 16px auto;
}

.avatar-box #avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
  display: block;
}

.avatar-decoration {
  position: absolute;
  top: -12%;
  left: -12%;
  width: 124%;
  height: 124%;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}

.online-indicator {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 16px;
  height: 16px;
  background-color: #22c55e;
  border: 3px solid #000;
  border-radius: 50%;
  z-index: 3;
}

.username {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.verified-icon {
  color: var(--accent-purple);
  font-size: 1.3rem;
}

.status-typewriter {
  font-size: 0.88rem;
  color: #a1a1aa;
  margin-top: 4px;
  margin-bottom: 20px;
  min-height: 20px;
}

.cursor {
  animation: blink 1s infinite;
  color: var(--accent-purple);
}

@keyframes blink { 50% { opacity: 0; } }

.social-icons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.social-icon-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
}

.social-icon-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-icon-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.servers-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.server-card {
  position: relative;
  background: rgba(15, 15, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.2s, border-color 0.2s;
}

.server-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.server-banner {
  height: 60px;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65);
}

.server-content {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  gap: 12px;
  position: relative;
}

.server-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: -24px;
  background: #000;
  z-index: 1;
}

.server-details {
  flex-grow: 1;
  overflow: hidden;
}

.server-details h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.server-details p {
  font-size: 0.72rem;
  color: #a1a1aa;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.server-sub {
  color: #71717a !important;
  font-size: 0.7rem !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dot-online {
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
}

.join-btn {
  background-color: var(--accent-green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.join-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.profile-footer {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  color: #71717a;
  display: flex;
  justify-content: center;
}

.view-counter i {
  vertical-align: middle;
  margin-right: 4px;
}

@import url('https://fonts.cdnfonts.com/css/pricedown');

.gtasa-hud {
  display: none;
}

@media (min-width: 900px) {
  .gtasa-hud {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 50;
  }

  .hud-stats {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .hud-weapon {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0);
    border: 2px solid #00000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  }

  .hud-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 140px;
  }

  .bar-container {
    height: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1.5px solid #000;
    overflow: hidden;
  }

  .bar-container.armor .bar-fill {
    background-color: #e2e8f0; 
    height: 100%;
  }

  .bar-container.health .bar-fill {
    background-color: #b91c1c;
    height: 100%;
  }

  .hud-money {
    font-family: 'Pricedown', 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    color: #2b8233; 
    text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, 2px -2px 0px #000, -2px 2px 0px #000;
    letter-spacing: 1px;
    margin-top: 2px;
  }

  .hud-radar {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #000;
    background-color: #1a232a;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.9);
    overflow: hidden;
  }

  .hud-radar .radar-map {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #2a3b4c 20%, #151d24 80%),
                repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 8px);
    opacity: 0.9;
  }

  .hud-radar .radar-north {
    position: absolute;
    top: 4px;
    left: 8px;
    font-family: Arial, sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
  }

  .hud-radar .radar-blip-player {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid #ffffff;
    filter: drop-shadow(0px 1px 2px rgba(0,0,0,0.8));
  }
}

  .hud-stats {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .hud-weapon-box {
    width: 65px;
    height: 65px;
    background: rgba(0, 0, 0, 0);
    border: 2px solid #00000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0);
    overflow: hidden;
  }

  .hud-fist-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0));
  }

  .hud-chat-box {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 380px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    pointer-events: auto; 
    z-index: 60;
  }

  .chat-messages {
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-height: 180px;
    overflow-y: hidden;
    text-shadow: 1px 1px 1px #000, -1px -1px 1px #000, 1px -1px 1px #000, -1px 1px 1px #000;
  }

  .chat-messages p {
    margin: 0;
    line-height: 1.25;
    word-break: break-word;
  }

  .msg-system { color: #ffffff; }
  .msg-radio { color: #ffffff; }
  .msg-radio .radio-tag { color: #eab308; }
  .msg-radio .user { color: #ffffff; }
  .msg-admin { color: #ef4444; } 
  .msg-admin .adm-tag { color: #f87171; font-weight: 900; }
  .msg-info { color: #38bdf8; } 

  .chat-input-container {
    display: flex;
    align-items: center;
    margin-top: 6px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 4px;
  }

  .chat-prefix {
    color: #eab308;
    font-weight: 900;
    margin-right: 6px;
  }

  #chat-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    width: 100%;
  }

  #chat-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
  }

  .msg-duda { color: #4ade80; } 
  .msg-duda .duda-tag { color: #22c55e; font-weight: 900; } 
  .msg-duda .user { color: #ffffff; }

#entry-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgb(0, 0, 0);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.entry-btn-img {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

#entry-screen:hover .entry-btn-img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 25px rgba(255, 166, 0, 0.493)); 
}

.discord-activity-card {
  width: 100%;
  background: rgba(15, 15, 20, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 15px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.activity-avatar-box {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.activity-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.activity-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #0f0f14;
}

.activity-status-dot.dnd { background-color: #f23f43; }
.activity-status-dot.online { background-color: #23a55a; } 


.activity-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  text-align: left;
}

.activity-title {
  font-size: 0.85rem;
  color: #dbdee1;
  margin: 0;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-title strong {
  color: #fff;
  font-weight: 700;
}

.activity-sub {
  font-size: 0.78rem;
  color: #949ba4;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #23a55a;
  font-weight: 600;
  margin-top: 2px;
}

.activity-large-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.activity-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  border-radius: 8px;
}

a.discord-activity-card {
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

a.discord-activity-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}


.badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.badge {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.25s ease, 
              border-color 0.25s ease;
}

.badge.owner {
  color: #fbbf24;
}
.badge.owner:hover {
  border-color: #fbbf24;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.badge.verified {
  color: #38bdf8; 
}
.badge.verified:hover {
  border-color: #38bdf8;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
}

.badge.booster {
  color: #a855f7;
}
.badge.booster:hover {
  border-color: #a855f7;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.badge.samp {
  color: #22c55e; 
}
.badge.samp:hover {
  border-color: #22c55e;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.badge:hover {
  transform: translateY(-4px) scale(1.1);
}

.badge::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: rgba(15, 15, 20, 0.95);
  color: #fff;
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 6px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.badge:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

