/* Extracted from social.php style block 1 */
/* ============================================================
   SOCIAL PAGE — v3.0
   Uses existing main.css + theme.css as the foundation.
   Only page-specific overrides are defined here.
============================================================ */

/* -------------------------------------------------------
   HERO
------------------------------------------------------- */
.soc-hero {
  background: linear-gradient(-45deg, #0d1b2a, #111827, #0f2238, #152033);
  background-size: 400% 400%;
  animation: socHeroAnim 14s ease infinite;
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
@keyframes socHeroAnim {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
.soc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 15% 55%, rgba(23,110,165,0.16) 0%, transparent 70%),
    radial-gradient(ellipse 45% 50% at 85% 40%, rgba(255,107,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.soc-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.soc-hero-bg i {
  position: absolute;
  opacity: 0.04;
  color: #fff;
  animation: socFloat 9s ease-in-out infinite;
}
.soc-hero-bg i:nth-child(1) { top: 8%;  left: 4%;  font-size: 55px; animation-delay: 0s; }
.soc-hero-bg i:nth-child(2) { top: 62%; left: 8%;  font-size: 80px; animation-delay: 2s; }
.soc-hero-bg i:nth-child(3) { top: 15%; left: 88%; font-size: 65px; animation-delay: 1s; }
.soc-hero-bg i:nth-child(4) { top: 70%; left: 84%; font-size: 50px; animation-delay: 3s; }
@keyframes socFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}
.soc-hero .container { position: relative; z-index: 2; }

.soc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  border-radius: 20px;
  background: rgba(23,110,165,0.18);
  border: 1px solid rgba(23,110,165,0.4);
  color: #7ec8f0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.soc-hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 18px;
}
.soc-hero h1 span {
  background: linear-gradient(90deg, #4ab0f0, #ff8c3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.soc-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.72;
}
.soc-hero-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.soc-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.soc-hero-pill:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
  text-decoration: none;
}
.soc-hero-pill i { font-size: 15px; }

/* -------------------------------------------------------
   SHARED SECTION LABELS
------------------------------------------------------- */
.soc-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(23,110,165,0.09);
  border: 1px solid rgba(23,110,165,0.22);
  color: #176ea5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.soc-section-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: var(--text-primary, #1a1a2e);
  margin-bottom: 10px;
  line-height: 1.22;
}
.soc-section-sub {
  font-size: 15px;
  color: var(--text-secondary, #666);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.68;
}

/* -------------------------------------------------------
   PLATFORMS SECTION
------------------------------------------------------- */
.soc-platforms {
  background: var(--surface-secondary, #f6f8fb);
  padding: 72px 0;
}

/* Platform Card */
.soc-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 3px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  margin-bottom: 24px;
}
.soc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.11);
}
.soc-card-accent {
  height: 4px;
  width: 100%;
}
.soc-card-top {
  padding: 24px 24px 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.soc-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.soc-card-meta { flex: 1; min-width: 0; }
.soc-card-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary, #1a1a2e);
  margin: 0 0 2px;
  line-height: 1.2;
}
.soc-card-handle {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}
.soc-card-badge {
  display: inline-block;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 9px;
  border-radius: 10px;
  background: rgba(23,110,165,0.09);
  color: #176ea5;
  border: 1px solid rgba(23,110,165,0.2);
}
.soc-card-body {
  padding: 0 24px 18px;
  flex: 1;
}
.soc-card-desc {
  font-size: 13.5px;
  color: var(--text-secondary, #666);
  line-height: 1.66;
  margin-bottom: 16px;
}

.soc-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.soc-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: #666;
  margin-bottom: 7px;
  line-height: 1.45;
}
.soc-card-features li::before {
  content: '';
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(0,163,136,0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2300a388' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/10px;
  border: 1px solid rgba(0,163,136,0.25);
}
.soc-card-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.soc-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
  width: 100%;
  justify-content: center;
}
.soc-card-btn:hover {
  color: #fff;
  text-decoration: none;
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.soc-card-btn i:last-child { margin-left: auto; font-size: 11px; opacity: 0.7; }

/* -------------------------------------------------------
   CONTACT / SUPPORT SECTION
------------------------------------------------------- */
.soc-help {
  background: #fff;
  padding: 72px 0;
}
.soc-help .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.soc-help-card {
  background: var(--surface-secondary, #f6f8fb);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 22px 22px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.soc-help-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
}
.soc-help-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.soc-help-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary, #1a1a2e);
  margin: 0 0 5px;
}
.soc-help-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 12px;
}
.soc-help-link {
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.soc-help-link:hover { gap: 10px; text-decoration: none; }
.soc-help-link i { font-size: 11px; }

/* -------------------------------------------------------
   COMMUNITY GUIDELINES
------------------------------------------------------- */
.soc-guidelines {
  background: linear-gradient(145deg, #0d1b2a, #111827);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.soc-guidelines::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 5% 50%, rgba(23,110,165,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 95% 50%, rgba(255,107,0,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.soc-guidelines .container { position: relative; z-index: 2; }

.soc-guidelines .soc-label {
  background: rgba(23,110,165,0.22);
  border-color: rgba(23,110,165,0.4);
  color: #7ec8f0;
}
.soc-guidelines .soc-section-title { color: #fff; }
.soc-guidelines .soc-section-sub { color: rgba(255,255,255,0.55); }

.soc-rule {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  margin-bottom: 14px;
  transition: background 0.2s;
}
.soc-rule:hover { background: rgba(255,255,255,0.08); }
.soc-rule-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(23,110,165,0.25);
  border: 1px solid rgba(23,110,165,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #7ec8f0;
  flex-shrink: 0;
}
.soc-rule-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px;
}
.soc-rule-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.52);
  margin: 0;
  line-height: 1.55;
}

/* -------------------------------------------------------
   BUTTONS — self-contained, not dependent on other page CSS
------------------------------------------------------- */
.soc-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  line-height: 1;
  white-space: nowrap;
  width: auto;
  height: auto;
}
.soc-action-btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}
.soc-action-btn-primary {
  background: #176ea5;
  color: #fff;
  box-shadow: 0 4px 14px rgba(23,110,165,0.28);
}
.soc-action-btn-primary:hover {
  background: #125d8e;
  color: #fff;
  box-shadow: 0 6px 20px rgba(23,110,165,0.38);
}
.soc-action-btn-outline {
  background: transparent;
  color: #176ea5;
  border: 2px solid rgba(23,110,165,0.35);
}
.soc-action-btn-outline:hover {
  background: rgba(23,110,165,0.06);
  color: #176ea5;
  border-color: #176ea5;
}
.soc-action-btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 2px solid rgba(255,255,255,0.22);
}
.soc-action-btn-ghost-white:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}

/* -------------------------------------------------------
   ANIMATION
------------------------------------------------------- */
.soc-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.soc-fade.visible {
  opacity: 1;
  transform: none;
}

/* -------------------------------------------------------
   RESPONSIVE
------------------------------------------------------- */
@media (max-width: 767px) {
  .soc-card-btn { width: 100%; }
  .soc-help-card { flex-direction: column; gap: 12px; }
  .soc-hero h1 { font-size: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .soc-fade { opacity: 1; transform: none; transition: none; }
  .soc-hero { animation: none; }
  .soc-hero-bg i { animation: none; }
}
