* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}
body {
  background:
    linear-gradient(rgba(8, 8, 18, 0.66), rgba(8, 8, 18, 0.66)),
    url("images/background.jpg") center center / cover no-repeat fixed;
    color: white;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 20px 60px;
    position: sticky;
    z-index: 1000
}
.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.logo-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  background: radial-gradient(circle, rgba(255,46,191,0.25), transparent);
  box-shadow:
    0 0 10px rgba(255, 46, 191, 0.4),
    0 0 20px rgba(255, 106, 0, 0.2);
  transition: 0.3s;
}
.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
    color: white;
    background: linear-gradient(45deg, #ff6a00, #ff2ebf);
    box-shadow:
        0 0 10px rgba(255, 46, 191, 0.6),
        0 0 20px rgba(255, 106, 0, 0.4);
    transition: 0.3s;
}
.logo-text {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(45deg, #ff6a00, #ff2ebf, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.3s;
}
.logo-box:hover .logo-circle {
  transform: scale(1.08);
  box-shadow:
    0 0 18px rgba(255, 46, 191, 0.8),
    0 0 35px rgba(255, 106, 0, 0.4);
}
.logo-box:hover .logo-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 0 20px rgba(255, 46, 191, 0.9),
        0 0 40px rgba(255, 106, 0, 0.6),
        0 0 60px rgba(255, 46, 191, 0.4);
}
.logo-box:hover .logo-text {
    text-shadow:
        0 0 10px rgba(255, 46, 191, 0.9),
        0 0 20px rgba(255, 106, 0, 0.7),
        0 0 40px rgba(168, 85, 247, 0.6);
}
.logo-box:hover .logo-text {
  transform: translateX(2px);
}
.logo-icon {
    animation: neonPulse 2s infinite alternate;
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.logo-img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 10px rgba(255, 46, 191, 0.6));
}
@keyframes neonPulse {
    from {
        box-shadow:
            0 0 10px rgba(255, 46, 191, 0.5),
            0 0 20px rgba(255, 106, 0, 0.3);
    }
    to {
        box-shadow:
            0 0 20px rgba(255, 46, 191, 0.8),
            0 0 40px rgba(255, 106, 0, 0.6);
    }
}
nav {
    display: flex;
    align-items: center;
}
nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #aaa;
    font-size: 14px;
    transition: 0.3s;
}
nav a.active,
nav a:hover {
    color: #ff2ebf;
}
.buttons button {
    margin-left: 10px;
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
.login {
    background: linear-gradient(45deg, #ff6a00, #ff2ebf);
    color: white;
}
.discord {
    background: transparent;
    border: 1px solid #555;
    color: white;
}
.hero {
    text-align: center;
    margin-top: 100px;
}
.hero h1 {
    font-size: 80px;
    line-height: 1.1;
}
.white {
    color: white;
}
.gradient {
    background: linear-gradient(45deg, #ff6a00, #ff2ebf, #7a5cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    margin-top: 20px;
    font-size: 18px;
    color: #ccc;
}
.orange { color: orange; }
.pink { color: #ff2ebf; }
.blue { color: #00cfff; }
.hero-buttons {
    margin-top: 40px;
}
.hero-buttons button {
    margin: 10px;
    padding: 15px 25px;
    border-radius: 10px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}
.join {
    background: linear-gradient(45deg, #ff6a00, #ff2ebf);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}
.join:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 20px rgba(255, 46, 191, 0.6),
                0 0 40px rgba(255, 106, 0, 0.4);
}
.join::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}
.join:hover::before {
    left: 100%;
}
.apply {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 46, 191, 0.5);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}
.apply:hover {
    border-color: #ff2ebf;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(255, 46, 191, 0.5);
}
.apply::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,46,191,0.5), transparent);
    transition: 0.5s;
}
.apply:hover::before {
    left: 100%;
}
.hero-teaser {
  margin: 40px auto 0;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, rgba(255, 46, 191, 0.15), rgba(0, 207, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 22px rgba(255, 46, 191, 0.16);
  animation: teaserPulse 2.2s ease-in-out infinite;
}

.teaser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd666;
  box-shadow: 0 0 12px rgba(255, 214, 102, 0.8);
}

.teaser-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #eaf4ff;
}

.hero-teaser i {
  color: #b9ecff;
  font-size: 13px;
  animation: teaserArrow 1.2s ease-in-out infinite;
}

@keyframes teaserPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 22px rgba(255, 46, 191, 0.16);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(0, 207, 255, 0.18);
  }
}

@keyframes teaserArrow {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(4px);
    opacity: 1;
  }
}
.server-box {
    margin: 80px auto;
    width: 90%;
    background: linear-gradient(120deg, #0f0f0f, #111, #0d2c2c);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    border: 1px solid rgba(255,255,255,0.05);
}
.item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.item h4 {
    font-size: 13px;
    color: #aaa;
    letter-spacing: 1px;
}
.item p {
    font-size: 16px;
    font-weight: bold;
}
.dot {
    width: 12px;
    height: 12px;
    background: red;
    border-radius: 50%;
    box-shadow: 0 0 10px red;
}
.offline {
    color: red;
}
.icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.purple {
    background: rgba(170, 0, 255, 0.2);
    color: #c84dff;
}
.connect {
    text-align: right;
}
.connect span {
    font-size: 12px;
    color: #aaa;
}
.ip-box {
    margin-top: 5px;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #00cfff;
    color: #00cfff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.about {
    padding: 80px 10%;
    text-align: center;
}
.title {
    font-size: 40px;
    background: linear-gradient(45deg, #ff2ebf, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
.subtitle {
    margin: 20px auto 60px;
    max-width: 700px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}
.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.card {
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    transition: 0.3s;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.card .icon {
    width: 40px;
    height: 40px;
    background: #111;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.card h3 {
    margin-bottom: 10px;
}
.card p {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 15px;
}
.card span {
    font-size: 12px;
    color: #888;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255,255,255,0.05);
}
.red { border-color: rgba(255,0,0,0.4); }
.blue { border-color: rgba(0,150,255,0.4); }
.green { border-color: rgba(0,255,150,0.4); }
.orange { border-color: rgba(255,120,0,0.4); }
.red:hover { box-shadow: 0 0 20px rgba(255,0,0,0.3); }
.blue:hover { box-shadow: 0 0 20px rgba(0,150,255,0.3); }
.green:hover { box-shadow: 0 0 20px rgba(0,255,150,0.3); }
.orange:hover { box-shadow: 0 0 20px rgba(255,120,0,0.3); }
.login-required {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-box {
    width: 600px;
    padding: 50px;
    text-align: center;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255, 0, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 20px rgba(255, 46, 191, 0.2);
}
.login-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255,0,255,0.2), transparent);
    box-shadow:
        0 0 25px rgba(255, 46, 191, 0.6),
        0 0 50px rgba(255, 46, 191, 0.3);
}
@keyframes pulseGlow {
    from {
        box-shadow: 0 0 15px rgba(255, 46, 191, 0.4);
    }
    to {
        box-shadow: 0 0 35px rgba(255, 46, 191, 0.9);
    }
}
.login-icon img {
    width: 70px;
    height: 70px;
    border-radius: 50%; 
    object-fit: cover;
    animation: spin 4s linear infinite; 
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.login-box h2 {
    margin-top: 25px;
    font-size: 28px;
    font-weight: bold;
}
.login-box p {
    margin: 15px 0 30px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}
.discord-login {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    background: linear-gradient(45deg, #ff6a00, #ff2ebf);
    color: white;
    transition: 0.3s;
}
.discord-login:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 0 20px rgba(255, 46, 191, 0.7),
        0 0 40px rgba(255, 106, 0, 0.5);
}
.rules {
    padding: 80px 10%;
    text-align: center;
}
.rules-title {
    font-size: 40px;
    background: linear-gradient(45deg, #ff2ebf, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.rules-sub {
    margin: 20px auto 60px;
    max-width: 600px;
    color: #aaa;
    font-size: 14px;
}
.rules-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.rule-card {
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    border: 1px solid rgba(255, 46, 191, 0.3);
    transition: 0.3s;
}
.rule-card h3 {
    margin-bottom: 15px;
}
.rule-card p {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 12px;
}
.rule-card span {
    color: #ff2ebf;
    font-weight: bold;
    font-size: 12px;
}
.rule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 46, 191, 0.3);
}
.support-box {
    margin-top: 60px;
    padding: 25px;
    border-radius: 15px;
    background: rgba(0,255,200,0.05);
    border: 1px solid rgba(0,255,200,0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.support-btn {
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background: transparent;
    border: 1px solid #00ffc8;
    color: #00ffc8;
    transition: 0.3s;
}
.support-btn:hover {
    background: #00ffc8;
    color: black;
}
.status {
    padding: 100px 10%;
    text-align: center;
}
.status-title {
    font-size: 50px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6a00, #ff2ebf, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.status-sub {
    margin: 15px 0 50px;
    color: #aaa;
}
.status-box {
    margin: auto;
    max-width: 800px;
    padding: 25px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,255,200,0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
}
.input-box {
    flex: 1;
    display: flex;
    align-items: center;
    background: #111;
    padding: 12px 15px;
    border-radius: 10px;
}
.input-box i {
    color: #777;
    margin-right: 10px;
}
.input-box input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    width: 100%;
}
.status-btn {
    padding: 12px 25px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6a00, #ff2ebf);
    color: white;
    transition: 0.3s;
}
.status-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 20px rgba(255, 46, 191, 0.6),
        0 0 40px rgba(255, 106, 0, 0.4);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #050505;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #b9b9b9;
  --pink: #ff2ecf;
  --orange: #ff6a3d;
  --purple: #8f3dff;
}
body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(98, 0, 70, 0.22), transparent 30%),
    radial-gradient(circle at top right, rgba(0, 100, 120, 0.10), transparent 25%),
    linear-gradient(180deg, #070707 0%, #020202 100%);
  color: var(--text);
  min-height: 100vh;
}
.filter-btn {
  border: none;
  outline: none;
  background: transparent;
  color: #9b9b9b;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.25s ease;
}
.filter-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}
.filter-btn.active {
  color: #ffffff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #2b0030, #050505);
  color: white;
}
.shop-section {
  width: 90%;
  margin: 50px auto;
}
.shop-header {
  text-align: center;
  margin-bottom: 40px;
}
.shop-title {
  font-size: 55px;
  font-weight: bold;
  background: linear-gradient(45deg, #ff6a00, #ff2ebf, #9b4dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.shop-subtitle {
  color: #b8b8b8;
  margin-top: 10px;
  font-size: 16px;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.car-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 46, 191, 0.25);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(255, 46, 191, 0.08);
}
.car-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(255, 46, 191, 0.25);
}
.car-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.car-info {
  padding: 16px;
  background: rgba(0, 0, 0, 0.35);
}
.car-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #ffffff;
}
.car-info p {
  font-size: 17px;
  font-weight: bold;
  color: #ff7bcb;
}
@media (max-width: 1100px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .shop-title {
    font-size: 40px;
  }
}
.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 40px;
    left: 0;
    background: rgba(0,0,0,0.95);
    border: 1px solid rgba(255, 46, 191, 0.3);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 180px;
    display: none;
    z-index: 999;
}
.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}
.dropdown-menu a:hover {
    background: rgba(255, 46, 191, 0.2);
    color: #fff;
}
.dropdown-menu.show {
    display: block;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #2b0030, #050505);
  color: white;
}
.business-section {
  width: 90%;
  margin: 60px auto;
}
.business-header {
  text-align: center;
  margin-bottom: 40px;
}
.business-title {
  text-align: center;
  font-size: 50px;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #ff6a00, #ff2ebf, #9b4dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.business-subtitle {
  color: #b8b8b8;
  margin-top: 10px;
  font-size: 16px;
}
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.business-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
}

.business-card video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 240px;
  object-fit: cover;
  opacity: 0;
  transition: 0.4s;
}

.business-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
}
.business-card:hover video {
  opacity: 1;
  transform: scale(1.05);
}

.business-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.4s;
}
.business-card:hover img {
  opacity: 0;
}
.business-info {
  padding: 16px;
  background: rgba(0,0,0,0.35);
  text-align: center;
}
.business-info h3 {
  font-size: 20px;
  color: white;
}

.video-modal.show {
  opacity: 1;
  visibility: visible;
}

.video-modal.show .video-box {
  transform: scale(1);
}
.video-box video {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 46, 191, 0.35);
  box-shadow: 0 0 25px rgba(255, 46, 191, 0.25);
  background: black;
}

@media (max-width: 900px) {
  .business-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .business-grid {
    grid-template-columns: 1fr;
  }
  .business-title {
    font-size: 40px;
  }
  .video-box {
    width: 92%;
  }
}
.sound-btn {
  position: absolute;
  top: 10px;
  right: 10px;

  width: 35px;
  height: 35px;

  border: none;
  border-radius: 50%;
  cursor: pointer;

  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
  z-index: 5;
}

.sound-btn:hover {
  background: rgba(255, 46, 191, 0.8);
  transform: scale(1.1);
}
.gangapp-section {
  padding: 70px 20px;
  display: flex;
  justify-content: center;
}

.gangapp-container {
  width: 100%;
  max-width: 850px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 46, 191, 0.18);
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 0 30px rgba(255, 46, 191, 0.08);
  backdrop-filter: blur(10px);
}

.gangapp-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 12px;
  background: linear-gradient(45deg, #ff6a00, #ff2ebf, #9b4dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gangapp-subtitle {
  text-align: center;
  color: #b8b8b8;
  margin-bottom: 35px;
  font-size: 16px;
}

.gangapp-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 15px 16px;
  color: white;
  outline: none;
  transition: 0.3s;
  font-size: 15px;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff2ebf;
  box-shadow: 0 0 12px rgba(255, 46, 191, 0.18);
}

.color-picker-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

#gang-color {
  width: 58px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px;
  cursor: pointer;
}

#gang-color::-webkit-color-swatch-wrapper {
  padding: 0;
  border-radius: 8px;
}

#gang-color::-webkit-color-swatch {
  border: none;
  border-radius: 8px;
}

.gang-color-hex {
  font-family: Consolas, "Courier New", monospace;
  font-size: 14px;
  font-weight: 700;
  color: #ffe6a1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 214, 102, 0.4);
  background: rgba(255, 214, 102, 0.1);
  min-width: 90px;
  text-align: center;
}

.gangapp-btn {
  margin-top: 10px;
  padding: 15px 22px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  color: white;
  background: linear-gradient(45deg, #ff6a00, #ff2ebf);
  transition: 0.3s;
}

.gangapp-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 18px rgba(255, 46, 191, 0.35),
    0 0 30px rgba(255, 106, 0, 0.20);
}

.gangapp-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.gangapp-feedback {
  margin-top: 8px;
  min-height: 20px;
  font-size: 14px;
  color: #bdbdbd;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gangapp-feedback.show {
  opacity: 1;
}

.gangapp-feedback.success {
  color: #8dffd4;
}

.gangapp-feedback.error {
  color: #ff8fa8;
}

@media (max-width: 700px) {
  .gangapp-container {
    padding: 25px;
  }

  .gangapp-title {
    font-size: 34px;
  }
}

/* Final global site background (kept at the end to override duplicate body rules above). */
body {
  background:
    linear-gradient(rgba(8, 8, 18, 0.66), rgba(8, 8, 18, 0.66)),
    url("images/background.jpg") center center / cover no-repeat fixed;
  color: white;
}

/* Refined element design overrides */
.cards {
  gap: 24px;
}

.card {
  background: linear-gradient(160deg, rgba(9, 12, 28, 0.72), rgba(12, 10, 22, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: 34px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 45%);
  pointer-events: none;
}

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(4, 5, 12, 0.72);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.card h3 {
  font-size: 24px;
  letter-spacing: 0.2px;
}

.card p {
  font-size: 15px;
  color: rgba(234, 237, 245, 0.85);
  line-height: 1.65;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 24px 34px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.shop-grid,
.business-grid {
  gap: 28px;
}

.car-card,
.business-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(150deg, rgba(8, 10, 20, 0.72), rgba(8, 7, 18, 0.54));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

.car-card img,
.business-card img,
.business-card video {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.car-card:hover,
.business-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.4), 0 0 24px rgba(255, 46, 191, 0.12);
}

.car-info,
.business-info {
  background: linear-gradient(180deg, rgba(4, 5, 12, 0.16), rgba(4, 5, 12, 0.82));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px;
}

.car-info h3,
.business-info h3 {
  font-size: 17px;
  letter-spacing: 0.2px;
}

.car-info p,
.business-info h4 {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 800;
  color: #ffd36f;
  text-shadow: 0 0 10px rgba(255, 191, 73, 0.3);
}

.sound-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 6, 15, 0.78);
  backdrop-filter: blur(6px);
}

.mini-btn {
  margin-top: 10px;
  padding: 11px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(8, 10, 20, 0.72);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.mini-btn:hover {
  background: linear-gradient(45deg, #ff6a00, #ff2ebf);
  border-color: transparent;
}

@media (max-width: 900px) {
  .card {
    padding: 24px;
  }

  .card h3 {
    font-size: 21px;
  }

  .card p {
    font-size: 14px;
  }
}

/* Unified icon language */
.site-icon {
  font-size: 16px;
  color: #f4f7ff;
  filter: drop-shadow(0 0 10px rgba(126, 220, 255, 0.45));
}

.card .icon,
.item .icon,
.input-box .site-icon,
.status-btn .site-icon,
.sound-btn .site-icon {
  transition: transform 0.25s ease, filter 0.25s ease, color 0.25s ease;
}

.card .icon {
  position: relative;
  overflow: hidden;
}

.card .icon::after,
.item .icon::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.card.red .icon {
  background: linear-gradient(155deg, rgba(255, 74, 145, 0.34), rgba(98, 11, 54, 0.4));
}

.card.blue .icon {
  background: linear-gradient(155deg, rgba(0, 194, 255, 0.34), rgba(10, 37, 80, 0.4));
}

.card.green .icon {
  background: linear-gradient(155deg, rgba(0, 255, 184, 0.32), rgba(12, 70, 54, 0.38));
}

.card.orange .icon {
  background: linear-gradient(155deg, rgba(255, 176, 60, 0.34), rgba(72, 34, 8, 0.4));
}

.card.purple .icon {
  background: linear-gradient(155deg, rgba(176, 98, 255, 0.34), rgba(46, 12, 74, 0.4));
}

.item .icon {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(93, 82, 255, 0.34), rgba(18, 15, 66, 0.42));
  border: 1px solid rgba(132, 163, 255, 0.45);
}

.server-pill {
  margin-top: 5px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 214, 102, 0.8);
  color: #ffe6a1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(120deg, rgba(255, 214, 102, 0.18), rgba(255, 214, 102, 0.06));
}

.server-pill .site-icon {
  color: #ffd666;
  font-size: 14px;
  filter: drop-shadow(0 0 8px rgba(255, 214, 102, 0.55));
}

.input-box .site-icon,
.status-btn .site-icon {
  font-size: 15px;
  color: #9de7ff;
}

.status-btn .site-icon {
  margin-right: 7px;
}

.sound-btn .site-icon {
  font-size: 14px;
  color: #c2f2ff;
}

.card:hover .site-icon,
.item:hover .site-icon,
.status-btn:hover .site-icon,
.sound-btn:hover .site-icon {
  transform: translateY(-1px) scale(1.07);
  color: #ffffff;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.45));
}