@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
  overflow: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
  color: #fff;
  padding: 0;
}

.logo {
  width: 250px;
  height: 250px;
  margin-top: -120px;
  max-width: 100%;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(180deg, rgba(130,130,130,1) 0%, rgba(255,255,255,1) 100%);
  filter: blur(10px);
}

.content {
  position: relative;
  padding: 2rem;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 2rem; 
  text-align: center;
}

.card {
  width: 90vw;
  max-width: 450px;
  height: auto;
  min-height: 500px;
  backdrop-filter: blur(7px);
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 26px;
  box-shadow: 35px 35px 68px 0px rgba(133, 133, 133, 0.2), inset -8px -8px 16px 0px rgba(151, 151, 151, 0.6), inset 0px 11px 28px 0px rgb(255, 255, 255);
  transition: all 0.3s;
  cursor: pointer;
  padding-bottom: 20px;
}
  
.card:hover {
  box-shadow: 35px 35px 68px 0px rgba(134, 134, 134, 0.5);
}
  
.card:active {
  transform: scale(0.95);
  border: 1px solid rgba(237, 237, 255, 0.26);
}

.card-avatar {
  height: 100px;
  position: relative;
  width: 100px;
  left: calc(50% - 50px);
  bottom: 50px;
}

.card-avatar img {
  border-radius: 9999px;
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 2;
  max-width: 100%;
}

@keyframes pulse {
  to {
    opacity: 0;
    transform: scale(1);
  }
}

.card-avatar::before,
.card-avatar::after {
  animation: pulse 2s linear infinite;
  border: #000000 solid 8px;
  border-radius: 9999px;
  box-sizing: border-box;
  content: ' ';
  height: 140%;
  left: -20%;
  opacity: .6;
  position: absolute;
  top: -20%;
  transform: scale(0.714);
  width: 140%;
  z-index: 1;
}

.card-avatar::after {
  animation-delay: 1s;
}

.card-avatar:hover::before,
.card-avatar:hover::after {
  animation: pulse 1s linear infinite, cycle-colors 6s linear infinite;
}

.card-avatar:hover::after {
  animation-delay: .5s;
}

.card-ascii-img {
  margin-top: 25px;
  width: 90%;
  max-width: 400px;
  height: auto;
  max-height: 170px;
  border-radius: 1.5rem;
}

.card-title {
  width: 100%;
  text-align: center;
  margin-top: -50px;
}

.card-title p {
  font-family: Inter;
  font-size: 30px;
  font-weight: bold;
  background: linear-gradient(to top left, #168bcf 0%, #FFFFFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;  
}

.description {
  width: 100%;
  text-align: center;
  margin-top: 18px;
  font-size: 15px;
  font-family: Inter;
  font-weight: 600;
  background: linear-gradient(to top left, #000000 0%, #000000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description2 {
  width: 100%;
  text-align: center;
  margin-top: 5px;
  font-size: 15px;
  font-family: Inter;
  font-weight: 600;
  background: linear-gradient(to top left, #000000 0%, #7C7C7C 100%);
  background-clip: text; 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-buttons {
  display: flex;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
  border-radius: 5em;
}

.social-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 8px;
  background-color: #fff;
  box-shadow: 0px 0px 4px #00000027;
  transition: 0.3s;
}

.social-button:hover {
  background-color: #f2f2f2;
  box-shadow: 0px 0px 6px 3px #00000027;
}

.social-buttons svg {
  transition: 0.3s;
  height: 20px;
}

/* Button Customizations */
.shop1, .shop2, .discord, .tg, .epvp {
  background-color: #ebebeb;
  border: 1px solid #fff;
}

.shop1:hover, .shop2:hover, .discord:hover, .tg:hover, .epvp:hover {
  background-color: #dbdbdb;
}

/* Shop 1 */
.shop1 svg { fill: #4CAF50; height: 24px; }
.shop1:hover svg { fill: #388E3C; }

/* Shop 2 */
.shop2 svg { fill: #FF9800; height: 24px; }
.shop2:hover svg { fill: #F57C00; }

/* Discord */
.discord svg { fill: #4e5dff; height: 24px; }
.discord:hover svg { fill: #3240dd; }

/* Telegram */
.tg svg { fill: #2a74ff; height: 40px; scale: 0.65; }
.tg:hover svg { fill: #5cd4ff; }

/* ElitePvPers */
.epvp svg { fill: #E53935; height: 24px; }
.epvp:hover svg { fill: #C62828; }

/* Media Queries */
@media (max-width: 768px) {
  .logo {
    width: 180px;
    height: 180px;
    margin-top: -90px;
  }
  .card {
    min-height: 450px;
  }
  .card-title p {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .content {
    padding: 1.5rem;
  }
  .logo {
    width: 150px;
    height: 150px;
    margin-top: -75px;
  }
  .card {
    min-height: 400px;
  }
  .card-title p {
    font-size: 24px;
  }
  .description, .description2 {
    font-size: 13px;
  }
  .social-button {
    width: 40px;
    height: 40px;
    margin: 0 4px; /* Scaled down slightly to fit all 5 */
  }
  .social-buttons svg {
    height: 18px; 
  }
  .tg svg { 
    height: 35px; 
  }
}
.epvp-img {
  height: 20px; /* Makes it smaller to fit the circle better */
  width: auto;
  object-fit: contain; /* Stops it from stretching */
  filter: brightness(0); /* THIS IS THE MAGIC! Turns the whole image pitch black */
  transition: all 0.3s ease;
}
/* --- NEW SOCIAL LABELS --- */
.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px; /* Space between button and text */
}

.social-label {
  font-size: 13px;
  color: #000000;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

/* Make the text light up when you hover over the button */
.social-item:hover .social-label {
  color: #ffffff;
}

/* Remove margins on social buttons since the wrapper handles it now */
.social-button {
  margin: 0; 
}


/* --- NEW GUIDES BUTTON --- */
.guides-button {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 14px 32px;
  
  /* Dark Glass Effect */
  background: rgba(15, 20, 30, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px; /* Pills shape */
  
  color: #000000;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.guides-button svg {
  width: 20px;
  height: 20px;
}

.guides-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.5);
  color: #00d4ff;
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 212, 255, 0.2);
}

.guides-button:active {
  transform: translateY(0);
}
/* THE SOCIAL ICONS & LAYOUT */
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Spreads them out cleanly */
  margin-top: 35px;
  width: 100%;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; 
}

.social-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  
  /* Very subtle button background */
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-button svg {
  height: 20px;
  width: 20px;
  transition: all 0.2s ease;
}

.epvp-img {
  height: 18px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.8);
  transition: all 0.2s ease;
}

/* Icon Hover Colors */
.social-item:hover .social-button {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.shop1 svg { fill: #ff0000; }
.shop2 svg { fill: #51b0fd; }
.discord svg { fill: #5865F2; }
.tg svg { fill: #0088cc; height: 24px; width: 24px; }
.social-item:hover .epvp-img { filter: brightness(1); }


/* NAME TABS (LINK LABELS) */
.social-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000000;
  
  /* Minimal Pill badge styling */
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

/* Label lights up when you hover the icon */
.social-item:hover .social-label {
  color: #62b9ff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}


/* CLEAN GUIDES BUTTON */
.guides-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  
  /* Minimal Flat Design */
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px; /* Smooth rounded square, not a full circle */
  
  color: #006eff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.guides-button svg {
  width: 18px;
  height: 18px;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.guides-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-2px);
}

.guides-button:hover svg {
  opacity: 1;
}

.guides-button:active {
  transform: translateY(0);
}
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  
  /* Link to your new image */
  background-image: url('../img/bg.jpg'); 
  
  /* Makes sure the image covers the whole screen perfectly */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  z-index: -1;
  
  /* OPTIONAL: Dims the background slightly so your card still pops and is easy to read */
  filter: brightness(0.5); 
}
.pl-icon {
  width: 18px; /* OR whatever number it is currently set to */
  height: auto;
  border-radius: 2px;
}
.epvp-img {
  height: 18px;
  width: auto;
  object-fit: contain;
  filter: brightness(0); /* Pitch Black */
  transition: all 0.2s ease;
}
/* --- CLICK TO ENTER SCREEN --- */
#enter-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #020015; /* Pitch black/dark blue */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.enter-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.hacker-text {
  font-size: 14px;
  letter-spacing: 4px;
  color: #00d4ff;
  font-weight: 700;
  opacity: 0.7;
}

#enter-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid #00d4ff;
  color: #00d4ff;
  padding: 12px 30px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

#enter-btn svg {
  width: 18px;
  height: 18px;
}

#enter-btn:hover {
  background: rgba(0, 212, 255, 0.15);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  transform: scale(1.05);
}

/* Used by JS to fade out the screen */
.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* --- FLOATING MUSIC PLAYER --- */
#music-player {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 14, 23, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: opacity 0.5s ease;
}

#music-player.hidden {
  opacity: 0;
  pointer-events: none;
}

.track-info {
  font-size: 11px;
  color: #8b9bb4;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.controls {
  display: flex;
  gap: 15px;
  align-items: center;
}

.controls button {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.controls button svg {
  width: 24px;
  height: 24px;
}

.controls button:hover {
  color: #00d4ff;
  transform: scale(1.1);
}

.hidden {
  display: none !important;
}
#enter-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid #00d4ff;
  color: #00d4ff;
  padding: 12px 30px;
  font-family: 'Inter', sans-serif; /* Changed back to Inter */
  font-size: 15px; /* Slightly smaller and cleaner */
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.hacker-text {
  font-family: monospace; /* Gives it a real hacker/terminal look */
  font-size: 14px;
  letter-spacing: 4px;
  color: #00d4ff;
  font-weight: 700;
  opacity: 0.7;
}
.track-info {
  font-family: 'Inter', sans-serif; /* Match the main site */
  font-size: 11px;
  color: #8b9bb4;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.guides-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px; 
  color: #e2e8f0;
  font-family: 'Inter', sans-serif; /* Clean font */
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
/* --- LOADING SCREEN BASE --- */
#enter-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #020015;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.enter-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.hacker-text {
  font-size: 13px;
  letter-spacing: 5px;
  color: #00d4ff;
  font-weight: 700;
  text-transform: uppercase;
}

/* --- THE NEW PROGRESS LOADER --- */
.loader {
  height: 3px;
  width: 150px;
  --c: no-repeat linear-gradient(#00d4ff 0 0);
  background: var(--c), var(--c), rgba(0, 212, 255, 0.1);
  background-size: 60% 100%;
  animation: l16 3s infinite;
}

@keyframes l16 {
  0%   {background-position:-150% 0, -150% 0}
  66%  {background-position: 250% 0, -150% 0}
  100% {background-position: 250% 0, 250% 0}
}

/* --- CLEAN ENTER BUTTON --- */
#enter-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.4);
  color: #00d4ff;
  padding: 12px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px; /* Sharp professional edges */
  transition: all 0.3s ease;
}

#enter-btn:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: #00d4ff;
  transform: translateY(-2px);
}

.hidden { display: none !important; }

/* --- LOADING SCREEN OVERLAY --- */
#enter-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #020015; /* Deep black-blue */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  transition: opacity 1s ease, visibility 1s ease;
}

.enter-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hacker-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 5px;
  color: #00d4ff;
  font-weight: 700;
  text-transform: uppercase;
}

/* --- THE PROGRESS BAR LOADER --- */
.loader {
  height: 4px;
  width: 130px;
  --c: no-repeat linear-gradient(#00d4ff 0 0); /* Cyan color */
  background: var(--c), var(--c), rgba(0, 212, 255, 0.1);
  background-size: 60% 100%;
  animation: l16 3s infinite;
}

@keyframes l16 {
  0%   { background-position: -150% 0, -150% 0; }
  66%  { background-position: 250% 0, -150% 0; }
  100% { background-position: 250% 0, 250% 0; }
}

/* --- UTILITY CLASSES --- */
.hidden {
  display: none !important;
}

.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* --- CARD FOOTER --- */
.card-footer {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(131, 131, 131, 0.753);
    width: 100%;
}

.card-footer p {
    font-size: 11px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    opacity: 0.6;
}

/* --- GUIDES BUTTON --- */
.guides-button {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px; 
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.guides-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hidden { display: none !important; }
.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    #music-player {
        left: 50% !important;
        bottom: 10px !important; /* Flat against the bottom */
        transform: translateX(-50%);
        width: fit-content; /* Only as wide as buttons */
        height: 40px; /* Very flat height */
        padding: 0 15px;
        flex-direction: row; 
        border-radius: 20px; /* Slim pill shape */
        background: rgba(10, 14, 23, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        gap: 20px;
    }

    /* Remove the text entirely */
    .track-info {
        display: none !important; 
    }

    /* Shrink the icons slightly for the flat look */
    .controls button svg {
        width: 20px;
        height: 20px;
    }

    /* Keep the buffer so you can still scroll the card footer above the player */
    .content {
        padding-bottom: 120px !important; 
    }
}