/* ========================================
   MAIN.CSS — MINEORGIN ID
   Gabungan: style.css + homepg.css + pt.css
   ======================================== */

/* ===================== style.css ===================== */
/* ==== BASE & VARIABLES ==== */
:root {
  --primary-blue: #3b82f6;
  --primary-blue-dark: #2563eb;
  --dark-bg: #0f172a;
  --dark-card: #1e293b;
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --holo-accent: #06b6d4;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: var(--primary-blue); }

section { padding: 80px 5%; }

.content-section {
  max-width: 1200px;
  margin: 0 auto;
}
.content-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--text-light);
}

/* ==== SCROLL REVEAL ANIMATION ==== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Skeleton pulse */
@keyframes skeletonPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@keyframes statusGlow {
  0%, 100% { box-shadow: 0 0 6px #10b981; }
  50% { box-shadow: 0 0 14px #10b981; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* ==== NAVBAR ==== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 5%;
  min-height: 68px;
  background-color: rgba(31, 41, 55, 0.85);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; }

.nav-links { display: flex; list-style: none; gap: 0; }

.nav-item a {
  color: var(--text-light);
  padding: 0.4rem 1rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  display: block;
  white-space: nowrap;
}
.nav-item a:hover,
.nav-item a.active { color: var(--primary-blue); }

.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-light); padding: 4px 8px; }

/* ==== FOOTER ==== */
footer {
  background-color: #020617;
  padding: 80px 5% 30px;
  border-top: 2px solid var(--primary-blue);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: rgba(59, 130, 246, 0.05);
  filter: blur(80px);
  pointer-events: none;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-brand img { height: 50px; margin-bottom: 20px; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-socials a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  color: #fff;
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(59,130,246,0.35);
}

.footer-box h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
.footer-box h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 28px; height: 2px;
  background: var(--primary-blue);
}

.footer-box ul { list-style: none; }
.footer-box ul li { margin-bottom: 12px; }
.footer-box ul li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  display: inline-block;
}
.footer-box ul li a:hover { color: var(--primary-blue); padding-left: 6px; }
.footer-box ul li i { margin-right: 8px; color: var(--primary-blue); }

.footer-bottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  position: relative;
  z-index: 2;
}
.footer-bottom p { color: #64748b; font-size: 0.82rem; }

/* ==== BUTTONS ==== */
.cta-button {
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
}
.cta-button:hover { background-color: var(--primary-blue-dark); transform: translateY(-2px); }

.section-cta { text-align: center; margin-top: 40px; }
.section-cta-button {
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-block;
}
.section-cta-button:hover {
  background-color: var(--primary-blue);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59,130,246,0.35);
}

/* ==== PAGE HEADER ==== */
.page-header {
  padding: 140px 5% 60px;
  text-align: center;
  background-color: var(--dark-card);
  border-bottom: 2px solid var(--primary-blue);
}
.page-header h1 { font-size: 3rem; color: var(--text-light); margin-bottom: 1rem; }
.page-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ==== SERVER CARDS ==== */
.grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.server-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}
.server-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: rgba(59,130,246,0.3);
}

.card-img-wrapper { position: relative; height: 200px; overflow: hidden; }
.card-img-wrapper .card-img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s ease; display: block; }
.server-card:hover .card-img { transform: scale(1.08); }

.card-tag {
  position: absolute; top: 12px; right: 12px;
  font-size: 0.72rem; font-weight: 800;
  padding: 5px 10px; border-radius: 6px;
  color: #fff; z-index: 2;
}

.card-content { padding: 22px; }
.server-name { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.server-ip {
  font-family: 'Courier New', monospace;
  background: rgba(0,0,0,0.3);
  padding: 7px 12px;
  border-radius: 6px;
  color: #60a5fa;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 12px;
  border: 1px dashed rgba(59,130,246,0.3);
  word-break: break-all;
}
.server-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.server-status {
  background: rgba(0,0,0,0.2);
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}
.status-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  flex-shrink: 0;
}
.status-dot.online { background: #10b981; box-shadow: 0 0 8px #10b981; animation: statusGlow 2s infinite; }
.status-dot.offline { background: #ef4444; }
.status-dot.loading { background: #f59e0b; animation: skeletonPulse 1.2s infinite; }

/* ==== EVENTS ==== */
.events-list { display: flex; flex-direction: column; gap: 1rem; }
.event-item {
  background: var(--dark-card);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}
.event-item:hover { background: #283548; border-color: rgba(59,130,246,0.2); }
.event-date {
  background: var(--primary-blue);
  color: #fff;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  margin-right: 1.5rem;
  min-width: 60px;
  flex-shrink: 0;
}
.event-date span { display: block; }
.event-date span:first-child { font-size: 2rem; line-height: 1; }
.event-details h3 { font-size: 1.4rem; color: var(--text-light); }
.event-details p { color: var(--text-muted); margin: 0.5rem 0; }
.event-time { color: var(--primary-blue); font-weight: 600; }
.event-item.event-past { opacity: 0.6; }
.mt-large { margin-top: 50px; border-top: 1px solid var(--dark-card); padding-top: 40px; }

/* ==== CHANGELOG ==== */
.changelog-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.changelog-item {
  background: var(--dark-card);
  border-radius: 10px;
  overflow: hidden;
  border-left: 4px solid var(--primary-blue);
}
.changelog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(17,24,39,0.7);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 8px;
}
.changelog-version { font-size: 1.2rem; font-weight: 700; }
.changelog-date { font-size: 0.88rem; color: var(--text-muted); }
.changelog-body { padding: 1.5rem; }
.changelog-body ul { list-style: none; }
.changelog-body li { margin-bottom: 0.75rem; display: flex; align-items: flex-start; line-height: 1.5; }
.changelog-body li span {
  font-weight: 700; font-size: 0.78rem;
  padding: 2px 8px; border-radius: 4px;
  margin-right: 10px; min-width: 55px;
  text-align: center; flex-shrink: 0; color: #fff;
}
.log-fix { background-color: #ef4444; }
.log-add { background-color: #10b981; }
.log-update { background-color: #f59e0b; }

/* ==== CARD GENERIC ==== */
.card {
  background: var(--dark-card);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
.card > .card-img { width: 100%; height: 240px; object-fit: cover; object-position: center; display: block; }
.card-content { padding: 1.5rem; }
.card-tag {
  background: var(--primary-blue);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-block;
}
.card h3 { margin: 0.75rem 0 0.5rem; color: #fff; }
.card p { color: var(--text-muted); font-size: 0.88rem; }
.card-date { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; }

a.card, a.card:visited { color: var(--text-light); }

/* ==== SERVER DETAIL ==== */
.server-detail-header {
  padding: 140px 5% 60px;
  position: relative;
  text-align: center;
  border-bottom: 2px solid var(--primary-blue);
  background-size: cover;
  background-position: center;
}
.server-logo {
  max-width: 130px;
  height: auto;
  background: rgba(31,41,55,0.5);
  border-radius: 14px;
  padding: 1rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.server-detail-header h1 { font-size: 3.5rem; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.server-detail-ip {
  background: var(--dark-bg);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  color: #fff;
  display: inline-block;
  border: 1px dashed var(--primary-blue);
  margin-bottom: 2rem;
  cursor: pointer;
  transition: var(--transition);
  word-break: break-all;
}
.server-detail-ip:hover { background: rgba(59,130,246,0.1); }
.server-detail-body { max-width: 1000px; margin: 0 auto; }
.server-detail-body h2 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--dark-card);
  padding-bottom: 0.5rem;
  text-align: left;
}
.features-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.features-list li {
  position: relative;
  padding: 0.9rem 1rem 0.9rem 2.5rem;
  font-size: 1rem;
  background: var(--dark-card);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}
.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%; height: 180px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--dark-card);
  transition: var(--transition);
  cursor: pointer;
  display: block;
}
.gallery-grid img:hover { transform: scale(1.04); box-shadow: 0 8px 20px rgba(59,130,246,0.3); }

/* ==== RESPONSIVE BREAKPOINTS ==== */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .grid-layout { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 30px; }
}

/* Tablet kecil / Phablet (≤900px) */
@media (max-width: 900px) {
  .footer-container { grid-template-columns: 1fr 1fr; }
  .grid-layout { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .server-detail-header h1 { font-size: 2.5rem; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 68px; left: 0;
    width: 100%;
    background: rgba(10,15,30,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1),
                opacity 0.28s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
    gap: 0;
  }
  .nav-links.active {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
    padding: 0.75rem 0 1.25rem;
    z-index: 1001;
  }
  .nav-item { margin: 0.25rem 0; width: 100%; text-align: center; }
  .nav-item a { font-size: 1rem; padding: 0.7rem 2rem; display: block; }
  .hamburger { display: block; }

  .page-header { padding: 120px 5% 50px; }
  .page-header h1 { font-size: 2rem; }
  .page-header p { font-size: 0.95rem; }

  .server-detail-header { padding: 120px 5% 50px; }
  .server-detail-header h1 { font-size: 2rem; }
  .server-detail-ip { font-size: 0.95rem; padding: 0.6rem 1rem; }

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

  .event-item { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .event-date { margin-right: 0; margin-bottom: 0; width: 100%; display: flex; align-items: center; gap: 12px; }
  .event-date span:first-child { font-size: 1.5rem; }

  .footer-container { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* Mobile kecil (≤600px) */
@media (max-width: 600px) {
  section { padding: 60px 4%; }
  .footer-container { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .footer-box h4::after { left: 50%; transform: translateX(-50%); }
  .footer-socials { justify-content: center; }
  .footer-box ul li a:hover { padding-left: 0; }
  .card-img-wrapper { height: 180px; }
  .server-detail-body h2 { font-size: 1.4rem; }
}

/* Mobile sangat kecil (≤400px) */
@media (max-width: 400px) {
  .nav-logo img { height: 36px; }
  .page-header h1 { font-size: 1.75rem; }
  .server-detail-header h1 { font-size: 1.75rem; }
}



/* ==== CSS KHUSUS HALAMAN CONFIG EDITOR ==== */
.editor-container {
  display: flex;
  gap: 30px;
  background: var(--dark-card);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  margin-top: 20px;
}

.editor-sidebar {
  width: 280px;
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 15px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.editor-sidebar h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-left: 10px;
  color: #fff;
}

.tool-menu { list-style: none; }
.tool-btn {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 12px 15px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tool-btn i { width: 20px; }
.tool-btn:hover, .tool-btn.active {
  background: var(--primary-blue);
  color: #fff;
}

.editor-workspace {
  flex: 1;
  padding: 30px;
}

.tool-content { display: none; }
.tool-content.active { display: block; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-light);
}
.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="file"],
.form-group textarea {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--holo-accent);
}

.output-box { margin-top: 25px; }
.output-box h3 { font-size: 1rem; margin-bottom: 10px; }
.output-box textarea {
  width: 100%;
  height: 180px;
  background: #090d16;
  border: 1px solid rgba(255,255,255,0.05);
  font-family: 'Courier New', monospace;
  padding: 15px;
  border-radius: 8px;
  color: #60a5fa;
  resize: vertical;
}

/* Responsive Editor */
@media (max-width: 768px) {
  .editor-container { flex-direction: column; }
  .editor-sidebar { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
}-e 

/* ===================== homepg.css ===================== */
/* =========================================
   HOMEPAGE - MINEORGIN ID (ENHANCED)
   ========================================= */

:root {
  --holo-blue: #3b82f6;
  --holo-dark: #0f172a;
  --holo-accent: #06b6d4;
  --holo-text: #f8fafc;
  --bg-pattern: radial-gradient(#1e293b 1px, transparent 1px);
}

/* === PAGE LOADER === */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--holo-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 90%;
  max-width: 360px;
}

.logo-wrapper {
  position: relative;
  width: 100px; height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 60px;
  z-index: 2;
  animation: loaderPulse 2s ease-in-out infinite;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-top-color: var(--holo-blue);
  border-bottom-color: var(--holo-accent);
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

.loader-text-img {
  height: 32px;
  width: auto;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeSlideUp 0.7s forwards 0.3s;
}

.loading-bar-container {
  width: 160px; height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
}
.loading-bar {
  width: 0%; height: 100%;
  background: linear-gradient(90deg, var(--holo-blue), var(--holo-accent));
  animation: progressFill 2.2s ease-in-out forwards;
}

.page-loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes loaderPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes fadeSlideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes progressFill { to { width: 100%; } }

/* === HERO SECTION === */
.holo-hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--holo-dark);
  background-image: var(--bg-pattern);
  background-size: 30px 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 5% 60px;
}

.holo-bg-pattern {
  position: absolute;
  inset: 0;
  background: var(--bg-pattern);
  background-size: 30px 30px;
  opacity: 0.4;
  z-index: 0;
}

.holo-shape-1 {
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(6,182,212,0.04));
  clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex: 1;
}

/* Text Side */
.hero-text { flex: 1; max-width: 580px; }

.hero-tag {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
}
.tag-box {
  background: var(--holo-blue);
  color: #fff;
  padding: 4px 10px;
  transform: skew(-8deg);
}
.tag-line { color: var(--holo-accent); }

.hero-big-title {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 18px;
  font-style: italic;
  letter-spacing: -1px;
}
.outline-text {
  -webkit-text-stroke: 2px var(--holo-accent);
  color: transparent;
}

.hero-sub {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 28px;
  max-width: 440px;
  line-height: 1.7;
}

.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-holo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.88rem;
  transform: skew(-8deg);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.btn-holo span, .btn-holo i { transform: skew(8deg); }

.btn-holo.primary {
  background: linear-gradient(135deg, var(--holo-accent), #0ea5e9);
  color: #fff;
  box-shadow: 0 4px 20px rgba(6,182,212,0.4);
}
.btn-holo.primary:hover {
  background: linear-gradient(135deg, #0ea5e9, var(--holo-accent));
  box-shadow: 0 0 32px rgba(6,182,212,0.65);
  transform: skew(-8deg) translateY(-2px);
}
.btn-holo.secondary { border: 2px solid rgba(255,255,255,0.5); color: #fff; background: rgba(255,255,255,0.06); backdrop-filter: blur(6px); }
.btn-holo.secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: skew(-8deg) translateY(-2px);
}
.btn-holo.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-holo.whatsapp:hover {
  box-shadow: 0 0 32px rgba(37,211,102,0.55);
  transform: skew(-8deg) translateY(-2px);
}

/* Visual Side */
.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 420px;
}

.hero-char-img {
  max-width: 110%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  animation: floaty 5s ease-in-out infinite;
}

.visual-circle-bg {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--holo-blue), transparent 70%);
  opacity: 0.18;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.float-card {
  position: absolute;
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.c1 { top: 22%; left: -20px; animation: floaty 4s ease-in-out infinite; }
.c2 { bottom: 18%; right: -10px; animation: floaty 5.5s ease-in-out infinite reverse; }
.float-card i { color: var(--holo-accent); }

/* Ticker */
.hero-ticker {
  position: relative;
  width: calc(100% + 10%);
  margin: 0 -5%;
  background: var(--holo-blue);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  transform: rotate(-1.5deg) scale(1.05);
  z-index: 5;
  border-top: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  margin-top: 40px;
}
.ticker-content {
  white-space: nowrap;
  display: inline-block;
  animation: tickerMove 22s linear infinite;
}
.ticker-content span { margin: 0 10px; }
@keyframes tickerMove { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* === SECTION HEADERS === */
.home-section { padding: 80px 5%; }
.sec-header-holo {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  border-bottom: 2px solid rgba(255,255,255,0.08);
  padding-bottom: 10px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.section-title-big {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
  line-height: 1;
}
.accent-dot { color: var(--holo-accent); }
.view-all-link {
  color: var(--holo-accent);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  transition: color 0.3s;
  white-space: nowrap;
}
.view-all-link:hover { color: #fff; }
.section-desc { color: #94a3b8; font-size: 0.95rem; }

/* === NEWS GRID === */
.news-holo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-item {
  background: #1e293b;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid rgba(255,255,255,0.06);
}
.news-item:hover { transform: translateY(-5px); border-color: var(--holo-blue); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.news-item.featured { grid-row: span 2; }

.news-thumb { position: relative; overflow: hidden; }
.news-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.news-item.featured .news-thumb { min-height: 280px; }
.news-item:not(.featured) .news-thumb { height: 140px; }
.news-item:hover .news-thumb img { transform: scale(1.06); }

.news-cat {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  font-weight: 800;
  font-size: 11px;
  color: #fff;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 0.5px;
}
.news-cat.system { background: #64748b; }
.news-cat.event { background: var(--holo-blue); }
.news-cat.info { background: #f59e0b; }

.news-info { padding: 18px; }
.news-date { font-size: 11px; color: var(--holo-accent); font-weight: 700; display: block; margin-bottom: 6px; }
.news-item h3 { margin: 0; font-size: 1.1rem; line-height: 1.4; color: #fff; }
.news-item p { margin-top: 8px; font-size: 0.88rem; color: #94a3b8; line-height: 1.6; }

/* === SCHEDULE === */
.bg-holo-dark { background: #0b1120; }
.schedule-list {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
}
.sched-row {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
  gap: 0;
}
.sched-row:hover { background: rgba(255,255,255,0.02); border-radius: 8px; padding-left: 10px; }

.sched-date { width: 75px; text-align: center; color: #fff; flex-shrink: 0; }
.s-day { font-size: 1.8rem; font-weight: 900; display: block; line-height: 1; }
.s-mon { font-size: 0.85rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; }

.sched-line {
  width: 4px; height: 50px;
  background: var(--holo-blue);
  margin: 0 20px;
  border-radius: 2px;
  flex-shrink: 0;
}
.sched-content { flex: 1; }
.sched-time { font-size: 0.85rem; color: var(--holo-accent); font-weight: 600; margin-bottom: 4px; }
.sched-title { font-size: 1.2rem; margin: 0; color: #fff; font-weight: 700; }
.sched-tag {
  display: inline-block;
  font-size: 10px;
  padding: 2px 8px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  margin-top: 5px;
  color: #cbd5e1;
}
.btn-sched {
  padding: 10px 22px;
  border: 1px solid var(--holo-blue);
  color: var(--holo-blue);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.85rem;
  transition: all 0.3s;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.btn-sched:hover { background: var(--holo-blue); color: #fff; }

/* === NETWORK / SERVER STATUS === */
.main-status-panel {
  background: #1e293b;
  border-radius: 14px;
  padding: 20px 24px;
  border: 1px solid #334155;
  margin-bottom: 28px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.panel-head {
  font-weight: 800;
  color: #94a3b8;
  margin-bottom: 8px;
  letter-spacing: 1px;
  font-size: 0.82rem;
  text-transform: uppercase;
}
.panel-body { min-height: 36px; }

.server-grid-holo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.srv-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.srv-card:hover { border-color: rgba(59,130,246,0.4); box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
.srv-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.srv-card:hover .srv-img { transform: scale(1.08); }
.srv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.srv-info { position: absolute; bottom: 18px; left: 20px; z-index: 2; }
.srv-info h4 { margin: 0; font-size: 1.4rem; color: #fff; font-weight: 800; }
.srv-ip { color: var(--holo-accent); font-family: monospace; font-size: 0.9rem; margin-bottom: 6px; }
.srv-stat { font-size: 0.82rem; font-weight: 600; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-container { flex-direction: column-reverse; text-align: center; gap: 20px; }
  .hero-visual { min-height: 280px; width: 100%; }
  .hero-text { margin-top: 0; max-width: 100%; }
  .hero-cta-group { justify-content: center; }
  .hero-sub { max-width: 100%; }
  .holo-shape-1 { width: 100%; height: 40%; clip-path: none; opacity: 0.5; }
  .news-holo-grid { grid-template-columns: 1fr; }
  .news-item.featured { grid-row: auto; }
  .c1, .c2 { display: none; }
  .section-title-big { font-size: 2.2rem; }
}

@media (max-width: 600px) {
  .holo-hero { padding-top: 80px; }
  .hero-big-title { font-size: 2.4rem; }
  .hero-tag { font-size: 11px; }
  .logo-wrapper { width: 80px; height: 80px; }
  .loader-logo { width: 44px; }
  .loader-text-img { height: 26px; }
  .sched-row { flex-wrap: wrap; gap: 10px; }
  .sched-date { width: 55px; }
  .sched-line { display: none; }
  .btn-sched { width: 100%; text-align: center; }
}
/* === RESPONSIVE TAMBAHAN HOMEPAGE === */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .hero-container { gap: 30px; }
  .hero-visual { min-height: 360px; }
}

/* Tablet kecil (≤900px) */
@media (max-width: 900px) {
  .holo-hero { padding: 90px 5% 60px; }
  .hero-container { flex-direction: column-reverse; text-align: center; gap: 20px; }
  .hero-visual { min-height: 260px; width: 100%; max-width: 400px; margin: 0 auto; }
  .hero-text { margin-top: 0; max-width: 100%; }
  .hero-cta-group { justify-content: center; }
  .hero-sub { max-width: 100%; }
  .holo-shape-1 { width: 100%; height: 40%; clip-path: none; opacity: 0.4; }
  .news-holo-grid { grid-template-columns: 1fr; }
  .news-item.featured { grid-row: auto; }
  .c1, .c2 { display: none; }
  .section-title-big { font-size: 2.2rem; }
  .server-grid-holo { grid-template-columns: 1fr; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .holo-hero { padding-top: 80px; }
  .hero-big-title { font-size: clamp(2rem, 8vw, 2.6rem); }
  .sched-row { flex-wrap: wrap; gap: 10px; }
  .sched-action { width: 100%; }
  .btn-sched { width: 100%; text-align: center; display: block; }
}

/* Mobile kecil (≤600px) */
@media (max-width: 600px) {
  .holo-hero { padding-top: 75px; min-height: auto; }
  .hero-big-title { font-size: clamp(1.9rem, 9vw, 2.4rem); }
  .hero-tag { font-size: 10px; flex-wrap: wrap; }
  .hero-cta-group { flex-direction: column; align-items: center; gap: 10px; }
  .btn-holo { width: 100%; max-width: 280px; justify-content: center; }
  .hero-char-img { max-width: 90%; }
  .logo-wrapper { width: 80px; height: 80px; }
  .loader-logo { width: 44px; }
  .loader-text-img { height: 26px; }
  .sched-date { width: 55px; }
  .sched-line { display: none; }
  .section-title-big { font-size: 1.9rem; }
  .sec-header-holo { flex-direction: column; align-items: flex-start; gap: 10px; }
  .news-item:not(.featured) .news-thumb { height: 120px; }
  .hero-ticker { font-size: 11px; }
  .main-status-panel { padding: 16px; }
  .srv-card { height: 180px; }
  .srv-info h4 { font-size: 1.1rem; }
}

/* Mobile sangat kecil (≤380px) */
@media (max-width: 380px) {
  .hero-big-title { font-size: 1.75rem; }
  .btn-holo { padding: 11px 20px; font-size: 0.82rem; }
}
-e 

/* ===================== pt.css ===================== */
/* =========================== */
/* MEMBERS PAGE STYLE     */
/* =========================== */

/* --------------------------- */
/* 1. VARIABLES          */
/* --------------------------- */

:root {
    --dark-bg: #0f0f0f;
    --dark-card: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #b3b3b3;
    --primary-blue: #3b82f6;
    --primary-blue-dark: #1e40af;
}

/* --------------------------- */
/* 2. GLOBAL FIX        */
/* --------------------------- */

/* --------------------------- */
/* 3. MEMBER PROFILE CARD   */
/* --------------------------- */

.partner-profile-card {
    display: flex;
    background-color: var(--dark-card);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border: 1px solid var(--dark-bg);
}

.partner-avatar-large {
    flex-basis: 350px;
    flex-shrink: 0;
    background-color: var(--dark-bg);
}

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

.partner-info {
    padding: 2.5rem;
    flex-grow: 1;
}

.partner-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.partner-info .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-blue);
}

.partner-info ul {
    list-style: none;
    padding-left: 0;
}

.partner-info ul li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
}

.partner-info ul li i {
    color: var(--primary-blue);
    margin-right: 12px;
    margin-top: 4px;
}

/* Partner Links / Buttons */
.partner-links {
    margin-top: 2rem;
    display: flex;
    flex-direction: column; /* Tombol menumpuk ke bawah */
    gap: 1rem; /* Jarak antar tombol */
}

.partner-link-button {
    display: block;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.partner-link-button i {
    margin-right: 8px;
}

/* Tombol Biru (Default) */
.partner-link-button {
    background-color: var(--primary-blue);
    color: var(--text-light);
}
.partner-link-button:hover {
    background-color: var(--primary-blue-dark);
}

/* Tombol Hitam (Custom) */
.partner-link-button.dark-button {
    background-color: #000;
    color: #fff;
    border: 1px solid #333;
}
.partner-link-button.dark-button:hover {
    background-color: #222;
}

/* --------------------------- */
/* 4. STAFF CARDS       */
/* --------------------------- */

.staff-card {
    display: flex;
    background-color: var(--dark-card);
    border-radius: 10px;
    padding: 20px;
    align-items: center;
    gap: 20px;
    border: 1px solid #222;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.staff-avatar img {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    object-fit: cover;
}

.staff-info h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.staff-role {
    display: inline-block;
    background-color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 6px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* Deskripsi staff */
.staff-desc {
    color: var(--text-muted);
    line-height: 1.5;
}

/* TAG SYSTEM (warna beda-beda) */
.staff-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tag {
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background-color: #333;
}

/* Custom Tag Colors */
.tag.multi {
    background-color: #9b59b6; /* Ungu */
}
.tag.server-kai { 
    background-color: #3498db; /* Biru */
}
.tag.server-alfian { 
    background-color: #e67e22; /* Orange */
}
.tag.event { 
    background-color: #2ecc71; /* Hijau */
}


/* --------------------------- */
/* 5. RESPONSIVE         */
/* --------------------------- */

@media (max-width: 768px) {

    /* Partner Card */
    .partner-profile-card {
        flex-direction: column;
    }

    .partner-avatar-large {
        width: 100%;
        height: 300px;
    }

    .partner-info {
        padding: 1.5rem;
    }

    .partner-info h3 {
        font-size: 1.6rem;
    }

    /* Staff Card */
    .staff-card {
        flex-direction: column;
        text-align: center;
    }

    .staff-avatar img {
        width: 160px;
        height: 160px;
    }

    .tag {
        display: inline-block;
    }
}

/* =========================== */
/* TALENTS GRID (AKA Virtual Style) */
/* =========================== */

.talents-hero {
  position: relative;
  padding: 6rem 1.5rem 2.5rem;
  text-align: center;
  overflow: hidden;
}

.talents-hero__glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 55%);
  filter: blur(20px);
  pointer-events: none;
}

.talents-hero h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 1px;
  margin: 0 0 .75rem;
}

.talents-hero p {
  color: var(--text-muted);
  max-width: 740px;
  margin: 0 auto;
}

.talents-wrap {
  padding: 1rem 1.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.talents-toolbar {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.talents-search {
  flex: 1 1 260px;
  max-width: 420px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text-light);
  padding: .85rem 1rem;
  border-radius: 999px;
  outline: none;
}

.talents-search::placeholder { color: rgba(255,255,255,0.45); }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text-light);
  padding: .6rem .9rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.chip.active {
  border-color: rgba(59,130,246,0.65);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.talents-grid {
  display: grid;
  grid-template-columns: repeat( auto-fit, minmax(220px, 1fr) );
  gap: 1rem;
}

.talent-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.talent-card__button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: inherit;
  padding: 0;
  cursor: pointer;
}

.talent-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: rgba(0,0,0,0.35);
  overflow: hidden;
}

.talent-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .25s ease, filter .25s ease;
  filter: saturate(1.05);
}

.talent-card:hover .talent-card__media img {
  transform: scale(1.08);
}

.talent-card__body {
  padding: 1rem;
}

.talent-name {
  margin: 0 0 .3rem;
  font-weight: 800;
}

.talent-sub {
  margin: 0;
  color: var(--text-muted);
  font-weight: 600;
  font-size: .95rem;
}

.talent-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: rgba(15,15,15,0.75);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-light);
  padding: .35rem .6rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.talent-badge.big {
  position: static;
  display: inline-block;
  margin-bottom: .75rem;
}

.talent-modal::backdrop {
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
}

.talent-modal {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 0;
  background: rgba(15,15,15,0.92);
  color: var(--text-light);
  width: min(900px, calc(100vw - 2rem));
}

.talent-modal__inner {
  position: relative;
  padding: 1.25rem;
}

.modal-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--text-light);
  cursor: pointer;
}

.talent-modal__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.talent-modal__media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
}

.talent-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.talent-modal__content h2 {
  margin: 0 0 .35rem;
  font-size: 2rem;
  font-weight: 900;
}

.talent-sub.big {
  font-size: 1rem;
}

.talent-bio {
  color: rgba(255,255,255,0.82);
  margin: .8rem 0 1rem;
  line-height: 1.6;
}

.talent-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: .5rem;
}

.talent-meta li {
  color: rgba(255,255,255,0.82);
}

.talent-meta i {
  margin-right: .5rem;
  color: rgba(59,130,246,0.9);
}

.talent-meta strong {
  margin-right: .35rem;
}

.talent-socials {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
}

.social-btn span { opacity: .9; }

@media (max-width: 820px) {
  .talent-modal__grid { grid-template-columns: 1fr; }
}

/* ===== ADDITIONAL RESPONSIVE FIXES ===== */
@media (max-width: 600px) {
  .partner-avatar-large { height: 220px; }
  .partner-info { padding: 1rem; }
  .partner-info h3 { font-size: 1.4rem; }
  .partner-info .quote { font-size: 0.95rem; }
  .staff-info h3 { font-size: 1.3rem; }
  .staff-avatar img { width: 120px; height: 120px; }
  .partner-link-button { padding: 0.8rem; font-size: 0.9rem; }
  .talent-modal__grid { grid-template-columns: 1fr; }
  .talent-modal__content h2 { font-size: 1.5rem; }
  .talents-toolbar { flex-direction: column; }
  .talents-search { max-width: 100%; }
}

/* ── HERO STATS ROW ── */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hs-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--holo-accent);
  line-height: 1;
  letter-spacing: -1px;
}
.hs-lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-top: 2px;
}
.hero-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* ── WHY SECTION ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,182,212,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover { border-color: rgba(6,182,212,0.3); transform: translateY(-4px); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--holo-accent);
  margin-bottom: 1rem;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}
.why-card p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ── COMMUNITY BANNER ── */
.community-banner {
  background: linear-gradient(135deg, rgba(6,182,212,0.1) 0%, rgba(14,165,233,0.06) 100%);
  border: 1px solid rgba(6,182,212,0.25);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.community-banner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--holo-accent), #0ea5e9);
  border-radius: 4px 0 0 4px;
}
.cb-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--holo-accent);
  border: 1px solid rgba(6,182,212,0.3);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}
.cb-left h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 0.3rem; }
.cb-left p { font-size: 0.87rem; color: rgba(255,255,255,0.5); }
.cb-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cb-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.cb-btn.discord { background: #5865F2; color: #fff; }
.cb-btn.discord:hover { background: #4752c4; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(88,101,242,0.4); }
.cb-btn.wa { background: #25D366; color: #fff; }
.cb-btn.wa:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

@media (max-width: 640px) {
  .hero-stats-row { gap: 1rem; }
  .community-banner { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
  .cb-btns { width: 100%; }
  .cb-btn { flex: 1; justify-content: center; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .why-grid { grid-template-columns: 1fr; }
}
