@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

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

*:focus-visible {
  outline: 2px solid #0ff !important;
  outline-offset: 3px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #fff;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

.bg {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: url('media/background/aesthetic-background.jpg') center / cover no-repeat fixed;
  position: relative;
}

.bg::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.card {
  position: relative;
  z-index: 2;
  max-width: 960px;
  width: 100%;
  background: rgba(12, 5, 20, 0.94);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 2.8rem 3.5rem;
  border: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 60px rgba(0, 255, 255, 0.08), inset 0 0 60px rgba(0, 255, 255, 0.02);
  margin: 2rem auto;
  animation: cardEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cardEntry {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 2rem;
  animation: headerSlide 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes headerSlide {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.header-text {
  flex: 1;
  text-align: left;
}

.card h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
  background: linear-gradient(90deg, #0ff, #f0f, #ff0, #0ff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: neonShift 4s linear infinite;
  filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.35));
}

@keyframes neonShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.title {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.highlight {
  color: #ff0;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.5), 0 0 30px rgba(255, 255, 0, 0.2);
}

.header-img {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(0, 255, 255, 0.25);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.15);
  line-height: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s, box-shadow 0.3s;
}

.header-img:hover {
  transform: scale(1.05) rotate(2deg);
  border-color: rgba(255, 0, 255, 0.6);
  box-shadow: 0 0 35px rgba(255, 0, 255, 0.25);
}

.header-img img {
  display: block;
  max-width: 200px;
  height: auto;
}

.tab-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.tab-btn {
  flex: 1;
  min-width: 130px;
  padding: 0.85rem 0.6rem;
  border: 1px solid rgba(0, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  opacity: 0;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.08), rgba(192, 132, 252, 0.08));
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-btn:hover {
  color: #fff;
  border-color: rgba(0, 255, 255, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.06);
}

.tab-btn:hover::before {
  opacity: 1;
}

.tab-btn.active {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(160, 80, 255, 0.12));
  color: #0ff;
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.1), inset 0 0 20px rgba(0, 255, 255, 0.03);
  font-weight: 700;
}

.tab-content {
  display: none;
  margin-bottom: 2rem;
  text-align: left;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tab-content.active .content-block {
  animation: blockIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.tab-content.active .content-block:last-child {
  animation-delay: 0.2s;
}

@keyframes blockIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-content.active .features {
  animation: blockIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.tab-content.active .role-tabs {
  animation: blockIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.tab-content.active .role-panel {
  animation: blockIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.tab-content.active .review {
  animation: blockIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.tab-content.active .review:nth-child(1) { animation-delay: 0.08s; }
.tab-content.active .review:nth-child(2) { animation-delay: 0.16s; }
.tab-content.active .review:nth-child(3) { animation-delay: 0.24s; }

.tab-content.active .info-block {
  animation: blockIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.tab-content.active .info-block:nth-child(1) { animation-delay: 0.08s; }
.tab-content.active .info-block:nth-child(2) { animation-delay: 0.16s; }
.tab-content.active .info-block:nth-child(3) { animation-delay: 0.24s; }

.content-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-row .content-block {
  flex: 1;
  margin-bottom: 0;
}

.content-block {
  margin-bottom: 1.5rem;
}

.content-block h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0ff;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.content-block p {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.platforms {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
  justify-content: center;
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.platform {
  width: 64px;
  height: 64px;
  object-fit: contain;
  padding: 0.5rem;
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(0, 255, 255, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.platform:hover {
  background: rgba(0, 255, 255, 0.12);
  border-color: #0ff;
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.15);
}

.platform-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Exo 2', sans-serif;
}

.gif-heroes {
  display: block;
  width: 100%;
  max-width: 360px;
  margin-top: 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 255, 0.04);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.6rem 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-item:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.1);
}

.feature-icon {
  font-size: 1.1rem;
}

.role-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.role-tab {
  flex: 1;
  min-width: 120px;
  padding: 0.7rem 0.5rem;
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(0, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.role-tab:hover {
  color: #fff;
  border-color: rgba(0, 255, 255, 0.25);
  background: rgba(0, 255, 255, 0.05);
}

.role-tab.active {
  color: #0ff;
  border-color: rgba(0, 255, 255, 0.4);
  background: rgba(0, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.08);
}

.role-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.prof-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 255, 0.2);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.char-item:hover .hero-icon {
  border-color: #0ff;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.25);
  transform: scale(1.05);
}

.special-char .hero-icon {
  border-color: rgba(255, 42, 42, 0.4);
}

.special-char:hover .hero-icon {
  border-color: #ff2a2a;
  box-shadow: 0 0 12px rgba(255, 42, 42, 0.3);
}


.role-panel {
  display: none;
}

.role-panel.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

.character-list {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  max-width: 550px;
  margin: 0 auto;
}

.char-item {
  display: flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  gap: 0.5rem;
  border-left: 2px solid transparent;
}

.char-item:hover {
  background: rgba(0, 255, 255, 0.05);
  border-left-color: #0ff;
  transform: translateX(6px);
}

.special-char {
  background: rgba(255, 42, 42, 0.05) !important;
  border-left-color: #ff2a2a !important;
}

.special-char .char-name {
  color: #ff4d4d;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 77, 77, 0.2);
}

.special-char .char-name::before {
  content: '★ ';
  color: #ff0;
  margin-right: 0.3rem;
  text-shadow: 0 0 8px rgba(255, 255, 0, 0.6);
}

.special-char .char-price {
  color: #ff0 !important;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

.special-char:hover {
  background: rgba(255, 42, 42, 0.12) !important;
  border-left-color: #ff0 !important;
  box-shadow: 0 0 15px rgba(255, 42, 42, 0.15);
}

.special-badge {
  font-size: 0.65rem;
  background: #ff2a2a;
  color: #fff;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  margin-left: 0.5rem;
  letter-spacing: 0.05em;
  box-shadow: 0 0 8px rgba(255, 42, 42, 0.4);
  vertical-align: middle;
}

.deadpool-icon {
  display: inline-block;
  margin-right: 0.2rem;
  animation: deadpoolPulse 1.5s infinite ease-in-out;
}

@keyframes deadpoolPulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(255, 42, 42, 0.5)); }
  50% { transform: scale(1.2) rotate(10deg); filter: drop-shadow(0 0 8px rgba(255, 42, 42, 0.8)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(255, 42, 42, 0.5)); }
}

.char-name {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.char-header {
  display: flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-bottom: 1px solid rgba(0, 255, 255, 0.08);
  margin-bottom: 0.3rem;
  gap: 0.5rem;
}

.char-header-prices {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0, 255, 255, 0.5);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  width: 130px;
}

.char-price {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  width: 130px;
  text-align: right;
}

.char-sep {
  color: rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
}

.char-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 100%;
}

.pack-banner {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.08), rgba(255, 0, 255, 0.03));
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.03);
}

.pack-banner-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: #ff0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.25);
  display: inline-flex;
  align-items: center;
}

.pack-banner-desc {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.5;
}

.notice-banner {
  margin-top: 0.6rem;
  background: rgba(255, 200, 0, 0.04);
  border: 1px solid rgba(255, 200, 0, 0.12);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.notice-banner span {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.notice-banner p {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.5;
}

.rank-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.15));
}

.char-item:hover .rank-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.35));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-item {
  background: rgba(0, 255, 255, 0.02);
  border: 1px solid rgba(0, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.25s;
}

.pricing-item:hover {
  border-color: rgba(0, 255, 255, 0.2);
  background: rgba(0, 255, 255, 0.04);
}

.pricing-item.featured {
  border-color: rgba(0, 255, 255, 0.25);
  background: rgba(0, 255, 255, 0.06);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.06);
}

.pricing-item h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0ff;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.price {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.3rem;
}

.desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.resenas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.resena-img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 255, 0.1);
  transition: all 0.3s;
  cursor: zoom-in;
}

.resena-img:hover {
  border-color: #0ff;
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: fadeIn 0.25s ease;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: color 0.25s;
  line-height: 1;
}

.lightbox-close:hover {
  color: #fff;
}

.info-section {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-block {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.03), rgba(255, 0, 255, 0.02));
  border: 1px solid rgba(0, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.info-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.info-block:hover {
  border-color: rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.04);
  transform: translateY(-1px);
}

.info-block:hover::before {
  opacity: 1;
}

.info-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  color: #0ff;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 255, 255, 0.2), transparent);
}

.info-body {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

.info-body p {
  margin-bottom: 0.7rem;
}

.info-body p:last-child {
  margin-bottom: 0;
}

.info-body strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.info-warn {
  padding: 0.7rem 1rem;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.05), transparent);
  border: 1px solid rgba(255, 0, 255, 0.12);
  border-left: 3px solid rgba(255, 0, 255, 0.5);
  border-radius: 8px;
  font-size: 0.8rem;
  margin-top: 0.2rem;
  transition: border-color 0.3s, background 0.3s;
}

.info-warn:hover {
  border-color: rgba(255, 0, 255, 0.25);
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.08), transparent);
}

.info-body ul {
  margin-top: 0.4rem;
  padding-left: 1.2rem;
}

.info-body li {
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.info-body li:last-child {
  margin-bottom: 0;
}

.info-highlight {
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 0, 0.05), transparent);
  border: 1px solid rgba(255, 255, 0, 0.1);
  border-left: 3px solid rgba(255, 255, 0, 0.5);
  border-radius: 8px;
  font-size: 0.78rem;
  text-align: center;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.2rem;
  text-transform: uppercase;
  transition: border-color 0.3s, background 0.3s;
}

.info-highlight:hover {
  border-color: rgba(255, 255, 0, 0.25);
  background: linear-gradient(135deg, rgba(255, 255, 0, 0.08), transparent);
}

.social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  border-top: 1px solid rgba(0, 255, 255, 0.06);
  padding-top: 1.5rem;
}

.social a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.social a:hover {
  color: #f0f;
}

/* Discord Card Styling */
.discord-card-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.discord-profile-card {
  width: 100%;
  max-width: 540px;
  background: #111214;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 255, 0.03);
  font-family: 'Inter', sans-serif;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
}

.discord-profile-card:hover {
  border-color: rgba(0, 255, 255, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 255, 255, 0.08);
  transform: translateY(-2px);
}

.discord-left-panel {
  flex: 1.2;
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.discord-profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.discord-avatar-wrapper {
  position: relative;
  width: 76px;
  height: 76px;
  flex-shrink: 0;
}

.discord-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #111214;
  border: 4px solid #111214;
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.discord-avatar:hover {
  transform: scale(1.05);
}

.discord-status-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #23a55a;
  border: 2.5px solid #111214;
}

.discord-names {
  display: flex;
  flex-direction: column;
}

.discord-display-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.discord-username {
  font-size: 0.75rem;
  color: #b5bac1;
  font-weight: 500;
}

.discord-right-panel {
  flex: 1;
  background: #18191c;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
}

.discord-hours-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  width: 100%;
}

.discord-hours-title {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #b5bac1;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.discord-hours-status {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0ff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.15);
}

.discord-hours-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.discord-copy-id-btn {
  background: #5865F2;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.discord-copy-id-btn:hover {
  background: #4752c4;
}


@media (max-width: 1024px) {
  .card {
    padding: 2.2rem 2.5rem;
  }

  .card h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .bg {
    padding: 1rem;
    align-items: center;
  }

  .card {
    padding: 2rem 1.5rem;
    margin: 1rem auto;
  }

  .card-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .header-text {
    text-align: left;
  }

  .card h1 {
    font-size: 2.2rem;
  }

  .title {
    font-size: 0.85rem;
  }

  .header-img img {
    max-width: 120px;
  }

  .tab-btn {
    font-size: 0.75rem;
    min-width: 100px;
    padding: 0.65rem 0.4rem;
  }

.role-icon {
  width: 16px;
  height: 16px;
}

.prof-icon {
  width: 24px;
  height: 24px;
}

.char-header-prices, .char-price {
  width: 85px;
}

.char-header-prices {
  font-size: 0.68rem;
}

.content-row {
  flex-direction: column;
  gap: 1.5rem;
}

.role-tab {
    font-size: 0.72rem;
    min-width: 90px;
    padding: 0.55rem 0.3rem;
  }

  .char-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pack-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1rem;
  }

  .resenas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-width: 460px;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .discord-profile-card {
    flex-direction: column;
    max-width: 320px;
    margin: 0 auto;
  }

  .discord-left-panel {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    min-height: auto;
    padding-bottom: 20px;
    flex: none;
  }

  .discord-right-panel {
    align-items: center;
    text-align: center;
    flex: none;
    gap: 12px;
  }

  .discord-hours-section {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .card {
    padding: 1.5rem 1rem;
  }

  .card h1 {
    font-size: 1.6rem;
  }

  .title {
    font-size: 0.75rem;
  }

  .header-img img {
    max-width: 90px;
  }

  .tab-btn {
    font-size: 0.65rem;
    min-width: 70px;
    padding: 0.5rem 0.2rem;
  }

  .content-block p {
    font-size: 0.88rem;
  }

  .pricing-item {
    padding: 1rem 0.8rem;
  }

  .price {
    font-size: 1.4rem;
  }

  .features {
    gap: 0.5rem;
  }

  .feature-item {
    font-size: 0.75rem;
    padding: 0.45rem 0.8rem;
  }

  .resenas-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 320px;
    margin: 0 auto;
  }

  .char-header-prices, .char-price {
    width: 78px;
  }

  .char-header-prices {
    font-size: 0.65rem;
  }
}
