/* MK11 Gaming Channel Styles */
* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  background: radial-gradient(circle at 50% 20%, #201712 0%, #121212 70%);
  color: #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

.mk11-nav {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 24px;
  display: flex;
  justify-content: flex-start;
}

.nav-link {
  color: #ff8a65;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover {
  color: #ffab91;
  transform: translateX(-3px);
}

.mk11-container {
  width: 100%;
  max-width: 540px;
  padding: 40px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.channel-card {
  width: 100%;
  background: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 112, 67, 0.2);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(255, 87, 34, 0.08);
}

.avatar-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
}

.channel-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff7043;
  box-shadow: 0 0 25px rgba(255, 112, 67, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: block;
}

.channel-avatar:hover {
  transform: scale(1.04);
  box-shadow: 0 0 35px rgba(255, 112, 67, 0.6);
}

.gaming-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 87, 34, 0.15);
  color: #ff7043;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 87, 34, 0.3);
  margin-bottom: 12px;
}

.channel-title {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 40%, #ff8a65 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.channel-bio {
  color: #bbb;
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 24px;
}

.primary-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(255, 0, 0, 0.35);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.primary-cta:hover {
  background: linear-gradient(135deg, #ff1a1a 0%, #e60000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 0, 0, 0.5);
}

.primary-cta svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-links-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.social-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
  color: #eee;
}

.social-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.social-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-icon svg {
  width: 22px;
  height: 22px;
}

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

.platform-name {
  font-size: 15px;
  font-weight: 600;
  display: block;
}

.platform-handle {
  font-size: 12px;
  color: #888;
  display: block;
}

.external-icon {
  color: #666;
  transition: all 0.25s ease;
}

.social-card:hover .external-icon {
  color: #fff;
  transform: translate(2px, -2px);
}

/* Specific Social Brand Colors */
.card-youtube:hover {
  border-color: rgba(255, 0, 0, 0.4);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.15);
}
.card-youtube .social-icon {
  background: rgba(255, 0, 0, 0.12);
  color: #ff3333;
}

.card-tiktok:hover {
  border-color: rgba(254, 44, 85, 0.4);
  box-shadow: 0 4px 15px rgba(254, 44, 85, 0.15);
}
.card-tiktok .social-icon {
  background: rgba(37, 244, 238, 0.1);
  color: #25f4ee;
}

.card-facebook:hover {
  border-color: rgba(24, 119, 242, 0.4);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.15);
}
.card-facebook .social-icon {
  background: rgba(24, 119, 242, 0.12);
  color: #1877f2;
}

.card-instagram:hover {
  border-color: rgba(225, 48, 108, 0.4);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.15);
}
.card-instagram .social-icon {
  background: rgba(225, 48, 108, 0.12);
  color: #e1306c;
}

.card-threads:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}
.card-threads .social-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.mk11-footer {
  margin-top: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.mk11-footer a {
  color: #888;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mk11-footer a:hover {
  color: #ff8a65;
  text-decoration: underline;
}

.copyright {
  font-size: 12px;
  color: #555;
  margin-top: 4px;
}
