/* ===== COLORS & TYPO ===== */
:root {
  --bg: #08080f;
  --text-light: #edf2f7;
  --text-muted: #a0aec0;
  --accent: #39F68F;
  --accent-dark: #2fae71;
  --underline: #6dd5ed;
  --safe-area-top: env(safe-area-inset-top, 0px);
}

@supports (padding-top: constant(safe-area-inset-top)) {
  :root {
    --safe-area-top: constant(safe-area-inset-top);
  }
}

/* --- GLOBAL --- */
html {
  scroll-behavior: smooth;
}

* {
  font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-light);
  overflow-x: hidden;
  position: relative;
}

/* --- SITE HEADER --- */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1200;
  isolation: isolate;
  backdrop-filter: blur(12px);
  background: rgba(8, 8, 15, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: calc(-1 * var(--safe-area-top));
  height: var(--safe-area-top);
  background: rgba(8, 8, 15, 0.72);
  pointer-events: none;
  z-index: -1;
}

.site-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px clamp(16px, 4vw, 36px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 700;
}

.site-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-logo-text {
  font-size: 1.05rem;
  letter-spacing: 0.4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 500;
  padding: 2px 0;
  transition: color 0.25s ease;
}

.site-nav-link:hover {
  color: var(--accent);
}

.site-nav-link.donate-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #f9f1ff;
  background: linear-gradient(135deg, rgba(196, 120, 255, 0.3), rgba(140, 92, 255, 0.24));
  border: 1px solid rgba(196, 120, 255, 0.6);
  box-shadow: 0 0 0 rgba(196, 120, 255, 0.34);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.site-nav-link.donate-link::before {
  content: "💜";
  font-size: 0.85rem;
  line-height: 1;
  color: #d896ff;
}

.site-nav-link.donate-link:hover {
  color: #fdf8ff;
  border-color: rgba(216, 150, 255, 0.85);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(10, 20, 35, 0.35), 0 0 24px rgba(196, 120, 255, 0.3);
}

.header-socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.header-social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.header-social-link svg {
  width: 20px;
  height: 20px;
}

.header-social-link:hover {
  transform: translateY(-1px);
}

.header-social-link.telegram:hover {
  color: #0088cc;
}

.header-social-link.youtube:hover {
  color: #ff0000;
}

.header-social-link.tiktok:hover {
  color: #00f2ea;
}

.site-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: transparent;
  color: var(--text-light);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  justify-self: end;
  -webkit-tap-highlight-color: transparent;
  transform: translateZ(0);
}

.site-menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform: translateZ(0);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.mobile-menu {
  display: none;
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateZ(0);
}

.site-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(57, 246, 143, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(109, 213, 237, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(109, 213, 237, 0.1) 0%, transparent 40%);
  animation: backgroundPulse 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes backgroundPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 80px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: clamp(60px, 10vh, 100px) 0;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-content-box {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: contentFadeIn 0.9s ease-out 0.3s forwards;
}

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

.hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.hero-h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 24px 0;
  letter-spacing: -3px;
}

.hero-gradient-text {
  display: block;
  background: linear-gradient(120deg, var(--accent) 0%, #6dd5ed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 40px 0;
  max-width: 500px;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-link-primary {
  padding: 16px 32px;
  background: linear-gradient(120deg, var(--accent) 0%, #6dd5ed 100%);
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(57, 246, 143, 0.25);
}

.hero-link-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(57, 246, 143, 0.35);
}

.hero-link-primary svg {
  transition: transform 0.3s ease;
}

.hero-link-primary:hover svg {
  transform: translate(2px, -2px);
}

.hero-link-text {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.hero-link-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.hero-link-text:hover::after {
  width: 100%;
}

.hero-link-text:hover {
  color: var(--accent);
}

/* Logo Container */
.hero-logo-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: logoFadeIn 1s ease-out 0.5s forwards;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.logo-center {
  position: relative;
  z-index: 2;
  width: 70%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visible-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(57, 246, 143, 0.4));
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.logo-orbit {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0.15;
}

.orbit-1 {
  width: 85%;
  height: 85%;
  border-color: var(--accent);
  animation: orbitRotate 20s linear infinite;
}

.orbit-2 {
  width: 100%;
  height: 100%;
  border-color: #6dd5ed;
  animation: orbitRotate 15s linear infinite reverse;
}

.orbit-3 {
  width: 70%;
  height: 70%;
  border-color: var(--accent);
  animation: orbitRotate 25s linear infinite;
}

@keyframes orbitRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.orbit-1::before,
.orbit-2::before,
.orbit-3::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #6dd5ed);
  box-shadow: 0 0 20px currentColor;
}

.orbit-1::before {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: orbitGlow 2s ease-in-out infinite;
}

.orbit-2::before {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation: orbitGlow 2s ease-in-out infinite 0.5s;
}

.orbit-3::before {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: orbitGlow 2s ease-in-out infinite 1s;
}

@keyframes orbitGlow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, 0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1.3);
  }
}

/* Responsive */
@media (max-width: 968px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .hero-logo-container {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 1000px) {
  .site-header-inner {
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-logo-link {
    justify-content: flex-start;
  }

  .site-nav,
  .header-socials {
    display: none;
  }

  .site-menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1190;
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 0.3s ease, opacity 0.2s ease, transform 0.2s ease, padding 0.2s ease, border-color 0.2s ease;
    padding: 0 16px;
    background: rgba(8, 8, 15, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
  }

  .site-header.menu-open .mobile-menu {
    max-height: 340px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding: 12px 16px 16px;
    border-top-color: rgba(255, 255, 255, 0.08);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
  }

  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .mobile-menu-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 500;
  }

  .mobile-menu-link.donate-link-mobile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #f9f1ff;
    background: linear-gradient(135deg, rgba(196, 120, 255, 0.32), rgba(140, 92, 255, 0.24));
    border: 1px solid rgba(196, 120, 255, 0.62);
  }

  .mobile-menu-link.donate-link-mobile::before {
    content: "💜";
    font-size: 0.85rem;
    line-height: 1;
    color: #d896ff;
  }

  .mobile-menu-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
  }

  .mobile-social-link {
    width: 34px;
    height: 34px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-social-link svg {
    width: 20px;
    height: 20px;
  }

  .hero {
    padding: 0 20px;
  }
  
  .hero-wrapper {
    padding: 80px 0;
  }
  
  .hero-h1 {
    font-size: 2.5rem;
    letter-spacing: -2px;
  }
  
  .hero-text {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  
  .hero-actions-row {
    gap: 20px;
  }
  
  .hero-link-primary {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  
  .hero-link-text {
    font-size: 0.95rem;
  }
}

/* --- PROJECTS SECTION --- */
/* === PROJECTS === */
.projects {
  padding: clamp(80px, 12vh, 120px) clamp(20px, 5vw, 60px);
  margin-bottom: clamp(24px, 4vh, 36px);
  z-index: 1;
}

.projects-container {
  max-width: 1400px;
  margin: 0 auto;
}

.projects-header {
  text-align: center;
  margin-bottom: clamp(50px, 8vh, 70px);
}

.projects-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin: 0 0 16px 0;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--text-light) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.projects-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  margin: 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(24px, 4vw, 40px);
}

/* Project Item */
.project-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.project-item:hover {
  transform: translateY(-8px);
  border-color: rgba(57, 246, 143, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(57, 246, 143, 0.1);
}

.project-visual {
  position: relative;
  height: 240px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 2;
}

.project-item:hover .project-img {
  transform: scale(1.08);
}

.project-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 8, 15, 0.6) 100%);
  z-index: 1;
}

.project-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  z-index: 3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-badge.completed {
  background: rgba(57, 246, 143, 0.2);
  color: var(--accent);
  border: 1px solid rgba(57, 246, 143, 0.4);
}

.project-badge.in-progress {
  background: rgba(109, 213, 237, 0.2);
  color: #6dd5ed;
  border: 1px solid rgba(109, 213, 237, 0.4);
}

.project-badge.cancelled {
  background: rgba(220, 38, 38, 0.2);
  color: #ef4444;
  border: 1px solid rgba(220, 38, 38, 0.4);
}

.coming-soon-placeholder {
  color: rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.project-content {
  padding: clamp(24px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.project-name {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, var(--accent) 0%, #6dd5ed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.project-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}

.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 12px;
  background: rgba(109, 213, 237, 0.08);
  border: 1px solid rgba(109, 213, 237, 0.2);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.tag.muted {
  opacity: 0.5;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 8px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.project-link:hover {
  gap: 12px;
}

.project-link svg {
  transition: transform 0.3s ease;
}

.project-link:hover svg {
  transform: translate(2px, -2px);
}


.project-item.coming-soon:hover {
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .project-visual {
    height: 200px;
  }
}

.project-progress {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: #2a2a3b;
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: #39F68F;
  border-radius: 5px;
}

/* Coming soon card */
.project-card.coming-soon {
  opacity: 0.8;
}

.project-card.coming-soon:hover {
  transform: translateY(-8px);
}

/* --- RESPONSIVE --- */
/* --- TEAM SECTION --- */
/* === TEAM === */
.team-section {
  padding: clamp(60px, 12vh, 100px) clamp(20px, 5vw, 60px);
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin: 0 0 12px 0;
  letter-spacing: -1px;
}

.section-subheading {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #a0aec0;
  text-align: center;
  margin: 0 0 clamp(50px, 8vh, 70px) 0;
}



.team-category {
  margin-bottom: clamp(20px, 30vh, 20px);
}

.category-label {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #39F68F;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 clamp(8px, 1.5vh, 14px) 0;
  text-align: center;
}

.members-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.member-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border-left: 3px solid #39F68F;
  transition: all 0.3s ease;
}

.member-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-left-color: #6dd5ed;
  transform: translateX(4px);
}

.member-name {
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 600;
  color: #edf2f7;
}

.member-role {
  font-size: clamp(0.85rem, 1.5vw, 0.9rem);
  color: #a0aec0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .members-list {
    grid-template-columns: 1fr;
  }
}

/* --- THANKS SECTION --- */
.thanks {
  padding: clamp(0px, 12vh, 200px) clamp(0px, 5vw, 0px);
  text-align: center;
}

.thanks-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

.thanks-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #a0aec0;
  margin-bottom: clamp(20px, 8vh, 30px);
}

.thanks-scroll-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 60px;
  padding-top: 20px;
  max-width: 100%;
}

.thanks-scroll {
  display: flex;
  gap: 35px;
  animation: scrollLeft 40s linear infinite;
  width: fit-content;
}

.thanks-scroll:hover {
  animation-play-state: paused;
}

.thanks-name {
  display: inline-block;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.thanks-name:hover {
  border-color: rgba(109, 213, 237, 0.3);
  background: rgba(255, 255, 255, 0.04);
  color: #6dd5ed;
  box-shadow: 0 4px 12px rgba(109, 213, 237, 0.2);
  transform: scale(1.03);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.thanks-others-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thanks-others {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.8;
  position: relative;
  padding: 0 40px;
}

.thanks-others::before,
.thanks-others::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--text-muted), transparent);
  opacity: 0.3;
}

.thanks-others::before {
  left: 0;
}

.thanks-others::after {
  right: 0;
}

@media (max-width: 768px) {
  .thanks {
    padding: 50px 0;
  }

  .thanks-scroll {
    gap: 20px;
  }

  .thanks-name {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .thanks-others-wrapper {
    margin-top: 30px;
  }

  .thanks-others {
    font-size: 1.1rem;
    padding: 0 35px;
  }
}

@media (max-width: 480px) {
  .thanks {
    padding: 40px 0;
  }

  .thanks-scroll {
    gap: 15px;
  }

  .thanks-name {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .thanks-others-wrapper {
    margin-top: 25px;
  }

  .thanks-others {
    font-size: 1rem;
    padding: 0 30px;
  }

  .thanks-others::before,
  .thanks-others::after {
    width: 20px;
  }
}

/* === SOCIALS SECTION === */
.socials {
  padding: 0 clamp(20px, 5vw, 60px);
  text-align: center;
  position: relative;
}

.socials-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

.socials-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #a0aec0;
  margin-bottom: clamp(50px, 8vh, 70px);
  font-weight: 400;
}

.socials-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.social-link {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px 20px;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon {
  width: 48px;
  height: 48px;
  color: #6dd5ed;
  transition: all 0.3s ease;
}

.social-link span {
  font-size: 1.1rem;
  font-weight: 600;
}

.social-link.telegram:hover {
  border-color: rgba(0, 136, 204, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 136, 204, 0.1);
}

.social-link.telegram:hover .social-icon {
  color: #0088cc;
  transform: scale(1.1);
}

.social-link.youtube:hover {
  border-color: rgba(255, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 0, 0, 0.1);
}

.social-link.youtube:hover .social-icon {
  color: #ff0000;
  transform: scale(1.1);
}

.social-link.tiktok:hover {
  border-color: rgba(0, 242, 234, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 242, 234, 0.1);
}

.social-link.tiktok:hover .social-icon {
  color: #00f2ea;
  transform: scale(1.1);
}
.social-link.tiktok:hover .social-icon {
  color: #00f2ea;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .socials {
    padding: 60px 20px;
  }
  
  .socials-links {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    gap: 15px;
  }
  
  .social-link:nth-child(3) {
    grid-column: 1 / -1;
  }
  
  .social-link {
    padding: 20px 10px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
  }
  
  .social-link span {
    font-size: 0.9rem;
  }
}

/* === JOIN US SECTION === */
.join-us {
  padding: clamp(60px, 12vh, 100px) clamp(20px, 5vw, 60px);
  text-align: center;
  position: relative;
}

.join-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.join-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #a0aec0;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.join-notice {
  background: rgba(255, 193, 7, 0.08);
  border: 2px solid rgba(255, 193, 7, 0.25);
  border-radius: 16px;
  padding: 22px 32px;
  margin: 0 auto 50px;
  max-width: 750px;
  position: relative;
  z-index: 1;
}

.join-notice p {
  color: #ffd54f;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.join-notice strong {
  color: #ffeb3b;
  font-weight: 700;
}

.join-roles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.role-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 30px;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.role-icon {
  width: 80px;
  height: 80px;
  background: rgba(109, 213, 237, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.role-icon svg {
  width: 40px;
  height: 40px;
  color: #6dd5ed;
  transition: all 0.3s ease;
}

.role-card h3 {
  font-size: 1.5rem;
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.role-card p {
  font-size: 1rem;
  color: #888;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.role-cta {
  font-size: 1rem;
  font-weight: 600;
  color: #6dd5ed;
  transition: all 0.3s ease;
}

.role-card.translator:hover {
  border-color: rgba(57, 246, 143, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(57, 246, 143, 0.1);
}

.role-card.translator:hover .role-icon {
  background: rgba(57, 246, 143, 0.2);
  transform: scale(1.1);
}

.role-card.translator:hover .role-icon svg {
  color: #39F68F;
}

.role-card.translator:hover .role-cta {
  color: #39F68F;
}

.role-card.editor:hover {
  border-color: rgba(109, 213, 237, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(109, 213, 237, 0.1);
}

.role-card.editor:hover .role-icon {
  background: rgba(109, 213, 237, 0.2);
  transform: scale(1.1);
}

.role-card.editor:hover .role-icon svg {
  color: #6dd5ed;
}

.role-card.editor:hover .role-cta {
  color: #6dd5ed;
}

.role-card.designer:hover {
  border-color: rgba(213, 18, 215, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(213, 18, 215, 0.1);
}

.role-card.designer:hover .role-icon {
  background: rgba(213, 18, 215, 0.2);
  transform: scale(1.1);
}

.role-card.designer:hover .role-icon svg {
  color: #d512d7;
}

.role-card.designer:hover .role-cta {
  color: #d512d7;
}

.join-contact {
  margin-top: 60px;
  padding: 40px;
  background: rgba(109, 213, 237, 0.05);
  border: 1px solid rgba(109, 213, 237, 0.15);
  border-radius: 20px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.contact-intro {
  font-size: 1.4rem;
  font-weight: 700;
  color: #6dd5ed;
  margin-bottom: 15px;
  text-align: center;
}

.contact-text {
  font-size: 1.05rem;
  color: #a0aec0;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(109, 213, 237, 0.4);
  color: #6dd5ed;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(109, 213, 237, 0.2);
}

.contact-link svg {
  flex-shrink: 0;
}

.contact-link.programmer:hover {
  border-color: rgba(57, 246, 143, 0.4);
  color: #39F68F;
  box-shadow: 0 12px 28px rgba(57, 246, 143, 0.2);
}

@media (max-width: 768px) {
  .join-title {
    font-size: 2rem;
  }
  
  .join-notice {
    padding: 15px 20px;
  }
  
  .join-notice p {
    font-size: 0.95rem;
  }
  
  .join-roles {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
  }
  
  .role-card {
    padding: 24px 18px;
  }
  
  .contact-links {
    flex-direction: column;
    align-items: stretch;
  }
  
  .contact-link {
    justify-content: center;
  }
}

/* --- FOOTER --- */
.footer {
  padding: clamp(10px, 6vh, 10px) clamp(10px, 5vw, 10px);
  text-align: center;
  color: #a0aec0;
  font-size: 0.95rem;
}

.footer-support {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-link {
  color: #6dd5ed;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-icon {
  width: 28px;
  height: 28px;
  transition: all 0.3s ease;
}

.footer-emoji {
  font-size: 28px;
  line-height: 1;
  transition: all 0.3s ease;
}

.footer-icon-round {
  border-radius: 50%;
}

.footer-link:hover {
  color: #39F68F;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(57, 246, 143, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(57, 246, 143, 0.2);
}

.footer-link:hover .footer-icon,
.footer-link:hover .footer-emoji {
  transform: scale(1.1);
}

.footer-divider {
  color: #444;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .footer-support {
    gap: 8px;
    flex-wrap: nowrap;
  }
  
  .footer-link {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
  
  .footer-icon {
    width: 28px;
    height: 28px;
  }
  
  .footer-emoji {
    font-size: 28px;
  }
  
  .footer-divider {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-support {
    gap: 6px;
  }
  
  .footer-link {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  
  .footer-icon {
    width: 24px;
    height: 24px;
  }
  
  .footer-emoji {
    font-size: 24px;
  }
}

.footer p {
  margin: 0;
  opacity: 1;
}

.footer a {
  color: #39F68F;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #6dd5ed;
}
