/* Social media and news section styles */
.social-container {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 20px;
}

.social-actions {
  position: sticky;
  bottom: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  gap: 10px;
  justify-content: center;
}

.social-btn {
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  white-space: nowrap;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 20px 0;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link.twitter {
  background: #000000;
}

.social-link.discord {
  background: #5865F2;
}

.social-link.medium {
  background: #000000;
}

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

.social-link.twitter img,
.social-link.medium img {
  filter: invert(1);
}

.social-link.discord img {
  filter: brightness(0) invert(1);
}

/* Section header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header h2 {
  color: #ffffff;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
}

/* Hide any logos in the social section */
.side-section .main-logo,
.side-section .logo-area {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* News items */
.news-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.news-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 15px;
  transition: all 0.2s ease;
}

.news-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.news-item h3 {
  margin: 0 0 10px 0;
  font-size: 1rem;
  color: #fff;
}

.news-item p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
