:root {
  --primary: #6a11cb;
  --secondary: #2575fc;
  --accent: #ffd700;
  --dark: #121212;
  --light: #f8f9fa;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
}

.navbar {
  background-color: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--light);
}

.nav-link {
  color: var(--light);
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.hero {
  background: linear-gradient(
      135deg,
      rgba(106, 17, 203, 0.9),
      rgba(37, 117, 252, 0.9)
    ),
    url("https://images.unsplash.com/photo-1534996858221-380b92700493?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1931&q=80");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyIiBoZWlnaHQ9IjIiIHg9IjAiIHk9IjAiIGZpbGw9IiNmZmZmZmYiIG9wYWNpdHk9IjAuMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==");
  opacity: 0.5;
}

.orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.8) 0%,
    rgba(106, 17, 203, 0.8) 50%,
    rgba(37, 117, 252, 0.8) 100%
  );
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.5), 0 0 100px rgba(106, 17, 203, 0.5),
    0 0 150px rgba(37, 117, 252, 0.5);
  filter: blur(5px);
  animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(20px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5),
      0 0 100px rgba(106, 17, 203, 0.5), 0 0 150px rgba(37, 117, 252, 0.5);
  }
  50% {
    box-shadow: 0 0 70px rgba(255, 215, 0, 0.7),
      0 0 120px rgba(106, 17, 203, 0.7), 0 0 170px rgba(37, 117, 252, 0.7);
  }
  100% {
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5),
      0 0 100px rgba(106, 17, 203, 0.5), 0 0 150px rgba(37, 117, 252, 0.5);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.about-card {
  background: rgba(18, 18, 18, 0.8);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(106, 17, 203, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(106, 17, 203, 0.2);
  border: 1px solid rgba(106, 17, 203, 0.5);
}

.about-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.tweet-card {
  background: rgba(18, 18, 18, 0.8);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(106, 17, 203, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.tweet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(106, 17, 203, 0.2);
  border: 1px solid rgba(106, 17, 203, 0.5);
}

.tweet-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.tweet-content {
  font-size: 1rem;
  margin-bottom: 15px;
}

.tweet-hashtags {
  font-size: 0.8rem;
  color: var(--secondary);
}

.cta {
  background: linear-gradient(
      135deg,
      rgba(106, 17, 203, 0.9),
      rgba(37, 117, 252, 0.9)
    ),
    url("https://images.unsplash.com/photo-1639762681057-408e52192e55?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1932&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyIiBoZWlnaHQ9IjIiIHg9IjAiIHk9IjAiIGZpbGw9IiNmZmZmZmYiIG9wYWNpdHk9IjAuMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==");
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.footer {
  background-color: rgba(12, 12, 12, 1);
  padding: 50px 0;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-text {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.copyright {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .orb {
    width: 200px;
    height: 200px;
  }
}

/* Poll styling */
.poll-container {
  background: rgba(18, 18, 18, 0.8);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(106, 17, 203, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}

.poll-question {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.poll-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.poll-option {
  background: rgba(37, 117, 252, 0.1);
  border: 1px solid rgba(37, 117, 252, 0.3);
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.poll-option:hover {
  background: rgba(37, 117, 252, 0.2);
  transform: translateX(5px);
}

.poll-option.selected {
  background: rgba(106, 17, 203, 0.3);
  border: 1px solid rgba(106, 17, 203, 0.5);
}

.poll-option-radio {
  margin-right: 15px;
  accent-color: var(--accent);
  width: 20px;
  height: 20px;
}

.poll-submit {
  width: 100%;
  margin-top: 10px;
}

.poll-results {
  margin-top: 20px;
  display: none;
}

.poll-result {
  margin-bottom: 15px;
}

.poll-bar {
  height: 10px;
  background: rgba(37, 117, 252, 0.2);
  border-radius: 5px;
  margin-top: 5px;
  overflow: hidden;
}

.poll-bar-fill {
  height: 100%;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 5px;
  width: 0%;
  transition: width 1s ease;
}

.poll-percentage {
  font-size: 0.9rem;
  color: var(--accent);
  margin-top: 5px;
  text-align: right;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid var(--primary);
}

.img-1 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 1px;
  line-height: 1;
}

.join-now {
  background-color: var(--accent);
  color: var(--dark);
}

.join-now:hover {
  background-color: var(--dark);
  color: var(--accent);
}

@media (max-width: 768px) {
  .logo-img {
    width: 36px;
    height: 36px;
  }
  .logo-text {
    font-size: 1.2rem;
  }
}