/**
 * 🕷️ ANT TEA GAMES — Collab Variant Styles
 * 
 * Pink community, collaboration platform aesthetic
 */

/* Root Variables */
:root {
  --collab-primary: #ff69b4;
  --collab-secondary: #ffb6c1;
  --collab-accent: #ffe4e1;
  --collab-text: #000000;
  --collab-bg: #ffffff;
}

/* Base Styles */
body {
  background: radial-gradient(circle, #ffe4e1 0%, #ffb6c1 100%);
  color: var(--collab-text);
  font-family: 'Georgia', serif;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  animation: communityPulse 3s infinite alternate;
}

@keyframes communityPulse {
  0% { background: radial-gradient(circle, #ffe4e1 0%, #ffb6c1 100%); }
  100% { background: radial-gradient(circle, #ffb6c1 0%, #ffe4e1 100%); }
}

/* Navigation */
.collab-nav {
  background: linear-gradient(90deg, #ffe4e1 0%, #ffb6c1 50%, #ffe4e1 100%);
  border-bottom: 3px solid var(--collab-primary);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.community-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--collab-primary);
  text-transform: uppercase;
  text-shadow: 0 0 10px var(--collab-primary);
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--collab-text);
  margin-left: 0.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-links a {
  color: var(--collab-text);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--collab-primary);
  text-shadow: 0 0 10px var(--collab-primary);
}

/* Hero Section */
.collab-hero {
  background: linear-gradient(45deg, #ffe4e1 0%, #ffb6c1 25%, #ffe4e1 50%, #ffb6c1 75%, #ffe4e1 100%);
  background-size: 30px 30px;
  padding: 4rem 2rem;
  text-align: center;
}

.community-title {
  font-size: 3rem;
  font-weight: bold;
  color: var(--collab-primary);
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  text-shadow: 0 0 10px var(--collab-primary);
  font-family: 'Georgia', serif;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--collab-text);
  margin: 0 0 2rem 0;
}

.collab-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.community-btn {
  background: var(--collab-primary);
  color: var(--collab-bg);
  border: 2px solid var(--collab-primary);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.community-btn:hover {
  background: var(--collab-bg);
  color: var(--collab-primary);
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.5);
}

/* Community Section */
.community-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.community-section h2 {
  color: var(--collab-primary);
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 2rem 0;
  text-shadow: 0 0 10px var(--collab-primary);
}

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

.collaborator-card {
  background: var(--collab-bg);
  border: 2px solid var(--collab-primary);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
  transition: all 0.3s;
}

.collaborator-card:hover {
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.5);
  transform: translateY(-5px);
}

.community-border {
  border: 2px solid var(--collab-primary);
  background: linear-gradient(45deg, #ffe4e1 0%, #ffb6c1 50%, #ffe4e1 100%);
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.avatar-text {
  font-size: 2rem;
}

.collaborator-name {
  color: var(--collab-primary);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 1rem 0 0.5rem 0;
  text-shadow: 0 0 10px var(--collab-primary);
  font-family: 'Georgia', serif;
}

.collaborator-role {
  color: var(--collab-text);
  font-size: 1rem;
  font-weight: bold;
  margin: 0.5rem 0;
}

.collaborator-status {
  color: var(--collab-text);
  font-size: 0.9rem;
  margin: 1rem 0;
  font-style: italic;
}

.connect-collaborator-btn {
  background: var(--collab-primary);
  color: var(--collab-bg);
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.connect-collaborator-btn:hover {
  background: var(--collab-bg);
  color: var(--collab-primary);
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.5);
}

/* Swarm Features Section */
.swarm-features-section {
  background: var(--collab-accent);
  padding: 4rem 2rem;
  text-align: center;
}

.swarm-features-section h2 {
  color: var(--collab-primary);
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0 0 2rem 0;
  text-shadow: 0 0 10px var(--collab-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--collab-bg);
  border: 2px solid var(--collab-primary);
  padding: 2rem;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.5);
  transform: translateY(-5px);
}

.feature-card h3 {
  color: var(--collab-primary);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  text-shadow: 0 0 10px var(--collab-primary);
  font-family: 'Georgia', serif;
}

.feature-stats {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--collab-text);
}

.active-users,
.active-projects,
.active-threads {
  color: var(--collab-primary);
  font-weight: bold;
}

/* Projects Section */
.projects-section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.projects-section h2 {
  color: var(--collab-primary);
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 2rem 0;
  text-shadow: 0 0 10px var(--collab-primary);
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.project-item {
  background: var(--collab-bg);
  border: 2px solid var(--collab-primary);
  padding: 2rem;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
  transition: all 0.3s;
}

.project-item:hover {
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.5);
  transform: translateY(-3px);
}

.project-item h3 {
  color: var(--collab-primary);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  text-shadow: 0 0 10px var(--collab-primary);
  font-family: 'Georgia', serif;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.contributors {
  color: var(--collab-primary);
  font-weight: bold;
}

.progress {
  color: var(--collab-text);
  font-style: italic;
}

.join-project-btn {
  background: var(--collab-primary);
  color: var(--collab-bg);
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.join-project-btn:hover {
  background: var(--collab-bg);
  color: var(--collab-primary);
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.5);
}

/* Join Section */
.join-section {
  background: var(--collab-accent);
  padding: 4rem 2rem;
  text-align: center;
}

.join-section h2 {
  color: var(--collab-primary);
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0 0 2rem 0;
  text-shadow: 0 0 10px var(--collab-primary);
}

.join-info {
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.join-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.join-input,
.join-textarea {
  padding: 1rem;
  border: 2px solid var(--collab-primary);
  background: var(--collab-bg);
  font-family: 'Georgia', serif;
  font-size: 1rem;
}

.join-textarea {
  min-height: 100px;
  resize: vertical;
}

.join-swarm-btn {
  background: var(--collab-primary);
  color: var(--collab-bg);
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.join-swarm-btn:hover {
  background: var(--collab-bg);
  color: var(--collab-primary);
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.5);
}

/* Footer */
.collab-footer {
  background: var(--collab-bg);
  border-top: 3px solid var(--collab-primary);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.collab-footer p {
  margin: 0.5rem 0;
  font-weight: bold;
  text-transform: uppercase;
}

.collab-footer p:first-child {
  color: var(--collab-primary);
  font-size: 1.2rem;
  text-shadow: 0 0 10px var(--collab-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .collab-nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .community-title {
    font-size: 2rem;
  }
  
  .collab-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .collaborators-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .project-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}
