/**
 * ============================================================
 *  social.css — About Us / Social Page Styles
 * ============================================================
 *
 *  Scope:
 *    Used exclusively by pages inside /about_us/:
 *      team.html, geschichte.html, social.html
 *
 *  Sections:
 *    1. CSS Variables (about-us colour tokens)
 *    2. Light theme overrides
 *    3. Shared header / title / subtitle
 *    4. Animation classes
 *    5. Geschichte (History) timeline
 *    6. Team page (member cards)
 *    7. Organisation cards
 *    8. Social media page (Discord, Twitch, YouTube, X, IG)
 *    9. Responsive breakpoints
 * ============================================================
 */

/* ==========================================================
   1. CSS VARIABLES — About-Us colour tokens
   ========================================================== */

/* About Us Farben basierend auf dem Website-Schema */
:root {
  --aboutus-primary: #34c759;
  --aboutus-secondary: var(--muted);
  --aboutus-accent: #28b24d;
  --aboutus-bg: var(--bg);
  --aboutus-card: var(--card);
  --aboutus-text: var(--text);
  --aboutus-muted: var(--muted);
  --aboutus-border: var(--border);
  --aboutus-danger: var(--danger);
  --aboutus-highlight: #3fa36c;

  /* Timeline palette (dark mode) */
  --timeline-2014: #8B0000; /* 2014 */
  --timeline-2015: #990011; /* 2015 */
  --timeline-2016: #A30D15; /* 2016 */
  --timeline-2018: #AD1A19; /* 2018 */
  --timeline-2021: #B7261D; /* 2021 */
  --timeline-2023: #C13221; /* 2023 */
  --timeline-2024: #CB3F25; /* 2024 */
  --timeline-2025: #D54B29; /* 2025 */
  --timeline-2026: #DF572D; /* 2026 */
  --timeline-tba: #E86331;  /* TBA */

  /* Zukünftige Farben für Erweiterung */
  --timeline-future-1: #F06F35;
  --timeline-future-2: #F47A3A;
  --timeline-future-3: #F8853E;
  --timeline-future-4: #FB9042;
  --timeline-future-5: #FF3B3B;
  --timeline-future-6: #FF4F33; /* helles Rot-Orange */
  --timeline-future-7: #FF5E28;
  --timeline-future-8: #FF6D1D;
  --timeline-future-9: #FF7C12;
  --timeline-future-10: #FF8B08;
  --timeline-future-11: #FF9811;
  --timeline-future-12: #FFA51B;
  --timeline-future-13: #FFB225;
  --timeline-future-14: #FFBF2F;
  --timeline-future-15: #FFCC39;
  --timeline-future-16: #FFD344;
  --timeline-future-17: #FFDA50;
  --timeline-future-18: #FFE15C;
  --timeline-future-19: #FFE768;
  --timeline-future-20: #FFED74;
}

/* ==========================================================
   2. LIGHT THEME OVERRIDES
   ========================================================== */
/* Light theme optimizations für About Us */
[data-theme="light"] {
  --aboutus-highlight: #2a7c4f;

  /* Timeline palette (light mode) */
  --timeline-2014: #E8C41F; /* 2014 - bright gold */
  --timeline-2015: #E6B812; /* 2015 - bright gold-orange */
  --timeline-2016: #E4A800; /* 2016 - bright orange */
  --timeline-2018: #E29500; /* 2018 - bright orange */
  --timeline-2021: #D48500; /* 2021 - bright burnt orange */
  --timeline-2023: #C46F00; /* 2023 - burnt orange */
  --timeline-2024: #B84C2F; /* 2024 - coral red */
  --timeline-2025: #AA3A28; /* 2025 - red */
  --timeline-2026: #9C2820; /* 2026 - dark red */
  --timeline-tba: #882015;  /* TBA - dark maroon */

  --timeline-future-1: #F5B052;
  --timeline-future-2: #F5BD63;
  --timeline-future-3: #F6C974;
  --timeline-future-4: #F6D585;
  --timeline-future-5: #F7DA92;
  --timeline-future-6: #F7E1A1;
  --timeline-future-7: #F8E7B0;
  --timeline-future-8: #F8EDBE;
  --timeline-future-9: #F9F2CC;
  --timeline-future-10: #FAF6D8;
  --timeline-future-11: #FAF8E0;
  --timeline-future-12: #FBFAE7;
  --timeline-future-13: #FBFCEB;
  --timeline-future-14: #FCFDED;
  --timeline-future-15: #FCFEEF;
  --timeline-future-16: #FDFEF2;
  --timeline-future-17: #FDFEF4;
  --timeline-future-18: #FEFEF6;
  --timeline-future-19: #FEFFF8;
  --timeline-future-20: #FFFFFA;
}

/* Light mode: stronger title styling */
[data-theme="light"] .events-title {
  color: #042811;
  font-weight: 900;
  text-shadow: none;
  letter-spacing: 0.8px;
  font-size: 3.2rem;
}

/* Light mode: improve article text contrast */
[data-theme="light"] .geschichte-milestone-content h3 {
  color: #0b1b14;
  font-weight: 700;
}

[data-theme="light"] .geschichte-milestone-content p {
  color: #2e4f41;
}

/* ==========================================================
   3. SHARED HEADER / TITLE / SUBTITLE
   ========================================================== */
/* Shared About Us Header/Title (used by all about_us pages) */
.events-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.events-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(52, 199, 89, 0.3);
}

[data-theme="light"] .events-title {
  color: #0d6e3a;
  font-weight: 800;
  text-shadow: none;
}

.events-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center !important;
  width: 100%;
}

/* ==========================================================
   4. ANIMATION CLASSES
   ========================================================== */
/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glow {
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(52, 199, 89, 0.3);
  }
  to {
    text-shadow: 0 0 30px rgba(52, 199, 89, 0.6);
  }
}

/* ==========================================================
   5. GESCHICHTE (HISTORY) TIMELINE
   ========================================================== */
/* Geschichte (History) Timeline Styles */
.geschichte-timeline {
  width: 100%;
  max-width: 1100px;
  margin: 48px auto;
  padding: 0 20px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  border-left: 8px solid;
  border-image: linear-gradient(to bottom, var(--timeline-2014), var(--timeline-2015), var(--timeline-2016), var(--timeline-2021), var(--timeline-2023), var(--timeline-2024), var(--timeline-2025), var(--timeline-2026), var(--timeline-tba)) 0 0 1 0;
}

.geschichte-milestone {
  width: 100%;
  box-sizing: border-box;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  background: var(--card);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 24px;
  position: relative;
}

.geschichte-separator {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.geschichte-intro {
  font-size: 1.2em;
  color: var(--muted);
  margin-bottom: 32px;
}

.geschichte-figcaption {
  color: var(--muted);
  font-size: 0.98em;
  margin-top: 4px;
  text-align: center;
}

.geschichte-img {
  background: var(--bg);
  box-shadow: var(--shadow);
}

.timeline-year-dot {
  background: var(--card);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.26em;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 4px solid var(--timeline-color);
  color: var(--timeline-color);
}

/* Dark mode: ensure background is visible */
:root .timeline-year-dot {
  background: var(--card);
  border: 5px solid var(--timeline-color);
}

/* Light mode: white text with dark shadow for readability */
[data-theme="light"] .timeline-year-dot {
  color: var(--timeline-color);
}

.timeline-year-dot--tba {
  font-size: 1.05em;
}

.timeline-gradient {
  background: linear-gradient(90deg,
    var(--timeline-2014) 0%,
    var(--timeline-2015) 11.11%,
    var(--timeline-2016) 22.22%,
    var(--timeline-2021) 33.33%,
    var(--timeline-2023) 44.44%,
    var(--timeline-2024) 55.55%,
    var(--timeline-2025) 66.66%,
    var(--timeline-2026) 77.77%,
    var(--timeline-tba) 100%
  );
}

.timeline-year-circle {
  border: 3px solid var(--timeline-color);
  color: #eeeeee;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Light mode: dark text for readability on bright backgrounds */
[data-theme="light"] .timeline-year-circle {
  color: #162921;
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

.timeline-year-circle--tba {
  font-size: 0.95em;
}

.timeline-separator-line {
  height: 2px;
  border-radius: 2px;
  background: var(--timeline-color);
}

.timeline-separator-label {
  margin: 0 12px;
  font-weight: 700;
  font-size: 1.5em;
  color: var(--timeline-color);
  white-space: nowrap;
}

.timeline-border {
  border: 2px solid var(--timeline-color);
}

.timeline-color-2014 { --timeline-color: var(--timeline-2014); }
.timeline-color-2015 { --timeline-color: var(--timeline-2015); }
.timeline-color-2016 { --timeline-color: var(--timeline-2016); }
.timeline-color-2021 { --timeline-color: var(--timeline-2021); }
.timeline-color-2023 { --timeline-color: var(--timeline-2023); }
.timeline-color-2024 { --timeline-color: var(--timeline-2024); }
.timeline-color-2025 { --timeline-color: var(--timeline-2025); }
.timeline-color-2026 { --timeline-color: var(--timeline-2026); }
.timeline-color-tba { --timeline-color: var(--timeline-tba); }

/* ==========================================================
   6. TEAM PAGE — Member cards grid
   ========================================================== */
/* Team Page Styling */
.team-container {
  max-width: 1000px;
  margin: 2rem auto 0;
}

.team-section {
  margin-bottom: 3rem;
}

.team-section h2 {
  color: var(--accent-soft);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-soft);
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.team-member {
  background: var(--card);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}

.team-member:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(182, 208, 195, 0.2);
}

.team-member.featured {
  border: 2px solid var(--accent-soft);
  background: linear-gradient(135deg, var(--card) 0%, rgba(182, 208, 195, 0.05) 100%);
}

.member-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.member-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent-soft-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  overflow: hidden;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.member-info h3 {
  margin: 0 0 0.25rem 0;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 700;
}

.member-role {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.member-role.founder {
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent-soft-2) 100%);
  color: #1a1a1a;
}

.member-role.co-founder {
  background: linear-gradient(135deg, var(--accent-soft-3) 0%, var(--accent-soft-4) 100%);
  color: #1a1a1a;
}

.member-role.tech-lead,
.member-role.community-lead {
  background: rgba(182, 208, 195, 0.3);
  color: var(--accent-soft);
  border: 1px solid var(--accent-soft);
}

.member-role.tech,
.member-role.mod {
  background: rgba(182, 208, 195, 0.15);
  color: var(--text);
  border: 1px solid var(--border);
}

.member-discord {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.member-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================
   7. ORGANISATION CARDS
   ========================================================== */
/* Organization Cards */
.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.org-card {
  background: var(--card);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.org-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(182, 208, 195, 0.2);
}

.org-card.hiring {
  border: 2px dashed var(--accent-soft);
  background: linear-gradient(135deg, var(--card) 0%, rgba(182, 208, 195, 0.05) 100%);
}

.org-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.org-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent-soft-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.org-header h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
}

.org-card p {
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.org-members {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.org-member {
  background: rgba(182, 208, 195, 0.2);
  color: var(--text);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

.org-member.hiring {
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent-soft-2) 100%);
  color: #1a1a1a;
  font-weight: 600;
}

.hiring-note {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(182, 208, 195, 0.1);
  border-radius: 10px;
  border-left: 4px solid var(--accent-soft);
}

.hiring-note span {
  color: var(--accent-soft);
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .org-grid {
    grid-template-columns: 1fr;
  }
  
  .member-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .team-section h2 {
    font-size: 1.5rem;
  }

  .events-title {
    font-size: 2rem;
  }
}

/* ==========================================================
   8. SOCIAL MEDIA PAGE
      Discord & Twitch (featured) · YouTube, X, Instagram (small)
   ========================================================== */
/* Social Media Color Palette */
/* Social Media Page Styles */

.social-section-title {
  color: var(--text);
  margin: 48px 0 24px 0;
  font-size: 1.3rem;
}

:root {
  --youtube-red: #ff0000;
  --twitter-blue: #1da1f2;
  --x-black: #000000;
  --twitch-purple: #9146ff;
  --instagram-gradient: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  --discord-blurple: #5865f2;
  
  /* Social Card Colors - Dark Mode */
  --social-card-bg: #0f231a;
  --social-card-border: #2d5a47;
  --social-card-hover: #1a3d2e;
  --social-text: #ffffff;
  --social-text-muted: #b6d0c3;
}

/* Light theme optimizations für Social Media */
[data-theme="light"] {
  /* Social Card Colors - Light Mode */
  --social-card-bg: var(--card);
  --social-card-border: var(--border);
  --social-card-hover: #f0f7f3;
  --social-text: var(--text);
  --social-text-muted: var(--muted);
}

/* Light Mode spezifische Anpassungen */
[data-theme="light"] .social-card-featured {
  box-shadow: var(--shadow);
}

[data-theme="light"] .social-card-featured:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

[data-theme="light"] .social-card-small {
  box-shadow: var(--shadow);
}

[data-theme="light"] .social-card-small:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

[data-theme="light"] .social-info-featured h3 {
  color: var(--social-text);
}

[data-theme="light"] .social-info-featured .platform {
  color: var(--social-text-muted);
}

[data-theme="light"] .social-info-small h4 {
  color: var(--social-text);
}

[data-theme="light"] .social-info-small .platform {
  color: var(--social-text-muted);
}

[data-theme="light"] .social-content-featured p {
  color: var(--social-text-muted);
}

[data-theme="light"] .stat-number-featured {
  color: var(--social-text);
}

[data-theme="light"] .stat-label-featured {
  color: var(--social-text-muted);
}

[data-theme="light"] .social-stats-featured {
  background: rgba(52, 199, 89, 0.08);
}

[data-theme="light"] .twitch .social-stats-featured {
  background: rgba(145, 70, 255, 0.08);
  border: 1px solid rgba(145, 70, 255, 0.2);
}

[data-theme="light"] .social-link-small {
  color: var(--social-text-muted);
  border-color: var(--social-card-border);
}

[data-theme="light"] .social-link-small:hover {
  color: var(--social-text);
}

/* Main Social Media Layout */
.social-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 32px 0 48px 0;
}

.social-secondary {
  display: flex;
  gap: 16px;
  margin: 32px 0;
  flex-wrap: wrap;
}

/* Featured Social Cards (Discord & Twitch) */
.social-card-featured {
  background: var(--social-card-bg);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  border: 2px solid var(--social-card-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 350px;
}

.social-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--card-accent, #b6d0c3);
  transition: all 0.3s ease;
  z-index: 3;
}

.social-card-featured:hover {
  background: var(--social-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}

/* Small Social Cards (YouTube, X, Instagram) */
.social-card-small {
  background: var(--social-card-bg);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  border: 1px solid var(--social-card-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.social-card-small::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent, #b6d0c3);
}

.social-card-small:hover {
  background: var(--social-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

/* Platform-specific accent colors */
.discord::before { background: var(--discord-blurple); }
.twitch::before { background: var(--twitch-purple); }
.youtube::before { background: var(--youtube-red); }
.twitter::before { background: var(--x-black); }
.x::before { background: var(--x-black); }
.instagram::before { background: var(--instagram-gradient); }

/* Featured Card Headers */
.social-header-featured {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.social-icon-featured {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  flex-shrink: 0;
}

.social-icon-featured.discord { background: var(--discord-blurple); }
.social-icon-featured.twitch { background: var(--twitch-purple); }

.social-info-featured h3 {
  margin: 0 0 8px 0;
  color: var(--social-text);
  font-size: 1.5rem;
  font-weight: 700;
}

.social-info-featured .platform {
  color: var(--social-text-muted);
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}

/* Small Card Elements */
.social-icon-small {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.social-icon-small.youtube { background: var(--youtube-red); }
.social-icon-small.twitter { background: var(--x-black); }
.social-icon-small.x { background: var(--x-black); }
.social-icon-small.instagram { background: var(--instagram-gradient); }

.social-info-small {
  flex: 1;
}

.social-info-small h4 {
  margin: 0 0 4px 0;
  color: var(--social-text);
  font-size: 1rem;
  font-weight: 600;
}

.social-info-small .platform {
  color: var(--social-text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.social-link-small {
  color: var(--social-text-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--social-card-border);
  font-size: 0.85rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.social-link-small:hover {
  background: var(--card-accent, #b6d0c3);
  color: #0f231a;
  border-color: var(--card-accent, #b6d0c3);
}

/* Featured Card Content */
.social-content-featured {
  margin-bottom: 24px;
}

.social-content-featured p {
  color: var(--social-text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 1.1rem;
}

.social-stats-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(45, 90, 71, 0.3);
  border-radius: 12px;
}

/* Discord Widget Container */
.discord-widget-container {
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
  background: #2f3136;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.discord-widget-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

/* Twitch specific stats styling */
.twitch .social-stats-featured {
  background: rgba(145, 70, 255, 0.2);
  border: 1px solid rgba(145, 70, 255, 0.3);
  grid-template-columns: 1fr;
  padding: 16px;
  margin-bottom: 16px;
}

.stat-featured {
  text-align: center;
}

.stat-number-featured {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--social-text);
  margin-bottom: 4px;
}

.stat-label-featured {
  font-size: 0.9rem;
  color: var(--social-text-muted);
}

/* Featured Card Actions */
.social-actions-featured {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-btn-featured {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  flex: 1;
  justify-content: center;
  min-width: 140px;
}

.social-btn-featured.primary {
  background: var(--btn-bg, #b6d0c3);
  color: #0f231a;
}

.social-btn-featured.secondary {
  background: transparent;
  color: var(--btn-bg, #b6d0c3);
  border: 2px solid var(--btn-bg, #b6d0c3);
}

.social-btn-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Platform-specific button colors */
.discord .social-btn-featured { --btn-bg: var(--discord-blurple); }
.twitch .social-btn-featured { --btn-bg: var(--twitch-purple); }

.youtube .social-link-small { --card-accent: var(--youtube-red); }
.twitter .social-link-small { --card-accent: var(--x-black); }
.x .social-link-small { --card-accent: var(--x-black); }
.instagram .social-link-small { --card-accent: #e1306c; }

/* Twitch Embed */
.twitch-embed {
  position: relative;
  z-index: 2;
  margin: 20px 24px 24px 24px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.twitch-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.twitch-offline {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: #18181b;
  color: #adadb8;
  border-radius: 12px;
  margin-top: 16px;
}

/* Live Indicator */
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--youtube-red);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.live {
  background: var(--youtube-red);
  color: white;
}

.status-badge.offline {
  background: #666;
  color: white;
}

.status-badge.active {
  background: #22c55e;
  color: white;
}

/* Discord Banner Styling */
.discord-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 204px;
  background: url('../images/abt_us/some/ChatGPT Image 31. Okt. 2025, 10_02_32.png') center/cover;
  background-size: cover;
  background-position: center top;
  border-radius: 20px 20px 0 0;
  z-index: 1;
  opacity: 0.4;
}

/* Twitch Banner Styling */
.twitch-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 204px;
  background: linear-gradient(135deg, #9146ff 0%, #6441a4 50%, #4b367c 100%);
  border-radius: 20px 20px 0 0;
  z-index: 1;
  opacity: 0.8;
}

.twitch-banner-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="twitch-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23twitch-pattern)"/></svg>');
  border-radius: 20px 20px 0 0;
}

.social-card-featured.discord {
  position: relative;
  overflow: hidden;
}

.social-card-featured.twitch {
  position: relative;
  overflow: hidden;
}

.social-card-featured.discord .social-header-featured {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 24px 24px 0 24px;
}

.social-card-featured.twitch .social-header-featured {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 24px 24px 0 24px;
}

.social-card-featured.discord .social-content-featured,
.social-card-featured.discord .social-actions-featured {
  position: relative;
  z-index: 2;
  margin-top: 180px;
  padding: 0 24px;
}

.social-card-featured.discord .social-actions-featured {
  padding: 0 24px 24px 24px;
}

.social-card-featured.twitch .social-content-featured,
.social-card-featured.twitch .social-actions-featured {
  position: relative;
  z-index: 2;
  margin-top: 180px;
  padding: 0 24px;
}

.social-card-featured.twitch .social-actions-featured {
  padding: 0 24px 24px 24px;
}

.discord-join-btn {
  background: linear-gradient(135deg, var(--discord-blurple) 0%, #4752c4 100%) !important;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 32px;
  width: 100%;
  justify-content: center;
}

.discord-join-btn:hover {
  background: linear-gradient(135deg, #4752c4 0%, var(--discord-blurple) 100%) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
}

/* ==========================================================
   9. RESPONSIVE BREAKPOINTS
   ========================================================== */
/* Responsive Design */
@media (max-width: 1024px) {
  .social-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .social-main {
    gap: 20px;
  }
  
  .social-secondary {
    flex-direction: column;
    gap: 12px;
  }
  
  .social-card-small {
    min-width: unset;
  }
  
  .social-header-featured {
    gap: 16px;
  }
  
  .social-icon-featured {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
  
  .social-actions-featured {
    flex-direction: column;
  }
  
  .social-btn-featured {
    flex: unset;
  }
  
  .social-stats-featured {
    grid-template-columns: repeat(2, 1fr);
  }
}