/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: white;
  color: #333;
  position: relative;
  overflow-x: hidden;
}

/* Subtle background pattern */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 25px 25px, rgba(0, 0, 0, 0.02) 2%, transparent 0%),
    radial-gradient(circle at 75px 75px, rgba(0, 0, 0, 0.01) 2%, transparent 0%);
  background-size: 100px 100px;
  z-index: -1;
  position: fixed;
}

/* Main hero container */
.hero-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #2b4db2, #4169e1);
}


h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 1.8rem;
  display: inline-block;
  color: white;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h1::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
}

h1 span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  color: #333;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Navigation */
.nav-container {
  position: fixed;
  top: 1rem;
  left: 2rem;
  right: 2rem;
  z-index: 101;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

nav.menu {
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
}

nav .menuItems {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav .menuItems li a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  opacity: 0.85;
  padding: 0.25rem 0;
  position: relative;
}

/* Added underline effect to navigation links */
nav .menuItems li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #333;
  transition: width 0.3s ease;
}

nav .menuItems li a:hover {
  opacity: 1;
}

nav .menuItems li a:hover::after {
  width: 100%;
}

/* Header Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.header-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.header-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.header-logo-text {
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: none;
  transition: all 0.3s ease;
}

/* Dark text variants for light backgrounds */
.nav-container.header-dark .header-logo-text {
  color: #333 !important;
  text-shadow: none !important;
}

.nav-container.header-dark .header-logo-link .header-logo-text {
  color: #333 !important;
  text-shadow: none !important;
}

.nav-container.header-dark .menuItems a {
  color: #333 !important;
}

.nav-container.header-dark .hamburger span {
  background-color: #333 !important;
}


/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: #333;
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Dropdown */
.mobile-menu {
  position: fixed;
  top: 5.5rem;
  left: 2rem;
  right: 2rem;
  width: auto;
  background: white;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  display: none;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Remove box styling from header logo on larger screens where hamburger is not visible */
@media (min-width: 769px) {
  .header-logo {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 0;
  }
}

.mobile-menu.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  margin: 0;
}

.mobile-menu a {
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 2rem;
  display: block;
  transition: all 0.2s ease;
  text-shadow: none;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.mobile-menu li:last-child a {
  border-bottom: none;
}

/* Responsive mobile menu positioning */
@media (max-width: 480px) {
  .mobile-menu {
    top: 5rem;
    left: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
  }
  .nav-container {
    top: 0.5rem;
    left: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
  }
}

/* Extra Small Mobile Styles */
@media (max-width: 400px) {
  .news-container {
    padding: 0 !important;
    margin: 0 auto;
  }
  
  .news-main-section {
    padding: 2rem 0;
  }
  
  .article-content {
    padding: 1.5rem;
  }
  
  .featured-article {
    border-radius: 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

/* Small Mobile Styles for very tight screens */
@media (max-width: 480px) {
  .news-container {
    padding: 0 !important;
    margin: 0 auto;
  }
  
  .news-main-section {
    padding: 2rem 0;
  }
  
  .article-content {
    padding: 1.5rem;
  }
  
  .featured-article {
    border-radius: 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  
  .featured-article h2 {
    font-size: 1.5rem;
  }
  
  .featured-article p {
    font-size: 1rem;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .mobile-menu {
    top: 5.5rem;
  }
}


/* Content container */
.content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 4rem);
  color: white;
}

/* Hero Text */
.hero-text {
  text-align: center;
  margin: 2rem 0;
  max-width: 700px;
}

.hero-text h1 {
  margin-bottom: 2rem;
  color: white;
  font-size: 2.5rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-text h2 {
  margin-bottom: 1rem;
  color: white;
}

.hero-text p {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.9;
  color: white;
}

/* Logo styling */
.logo-container {
  margin-bottom: 2rem;
  text-align: center;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.app-logo {
  max-width: 200px;
  height: auto;
  transition: transform 0.5s ease;
}

.logo-container:hover .app-logo {
  transform: translateY(-5px);
}

/* CTA Button styling */
.cta-container {
  margin-top: 2rem;
  text-align: center;
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: white;
  color: #2b4db2;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(43, 77, 178, 0.1), transparent);
  transform: translateX(-100%);
  z-index: 1;
}

.cta-button span {
  position: relative;
  z-index: 2;
  font-size: 1rem;
}

.cta-button svg {
  position: relative;
  z-index: 2;
  stroke: #2b4db2;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  background-color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover::before {
  animation: shine 1.5s;
}

.cta-button:hover svg {
  transform: translateX(3px);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-link {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  margin: 1rem 0;
}

.cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
  color: white;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: fadeInUp 2s ease infinite;
  color: white;
}

.scroll-indicator span {
  display: block;
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
  margin: 0 auto;
}

@keyframes fadeInUp {
  0%, 100% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Section styling */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
}

section {
  position: relative;
  background: white;
}

section:nth-child(even) {
  background: #f8f9fa;
}

/* Features section */
.features-section {
  text-align: center;
}

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

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(65, 105, 225, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  stroke: #4169e1;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Feature Card Links */
.feature-card-link {
  text-decoration: none !important;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
}

.feature-card-link:hover {
  text-decoration: none !important;
  color: inherit;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.1);
}

.feature-card-link:visited {
  color: inherit;
  text-decoration: none !important;
}

.feature-card-link:active {
  transform: translateY(-2px);
  text-decoration: none !important;
}

.feature-card-link:focus {
  text-decoration: none !important;
  outline: none;
}

/* Ensure no text decoration on any child elements */
.feature-card-link h3,
.feature-card-link p,
.feature-card-link .feature-highlight {
  text-decoration: none !important;
}

/* About section */
.about-section {
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #555;
}

.about-text ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.about-text li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #555;
}

.mockup-container {
  display: flex;
  justify-content: center;
}

.app-mockup {
  width: 100%;
  max-width: 300px;
  height: 600px;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  border: 1px solid #e9ecef;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.mockup-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  color: #888;
}

.mockup-placeholder span {
  font-size: 1.25rem;
  font-weight: 500;
}

/* Testimonials section */
.testimonials-section {
  text-align: center;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease;
  border: 1px solid #e9ecef;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.6;
  color: #555;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-name {
  font-weight: 600;
  color: #333;
}

.rating {
  color: #dc3545; /* Red color for stars */
}

/* Download section */
.download-section {
  text-align: center;
  background: linear-gradient(135deg, #2b4db2, #4169e1);
  position: relative;
  z-index: 1;
  color: white;
}

.download-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 25px 25px, rgba(255, 255, 255, 0.1) 2%, transparent 0%),
    radial-gradient(circle at 75px 75px, rgba(255, 255, 255, 0.05) 2%, transparent 0%);
  background-size: 100px 100px;
  z-index: -1;
}

.download-section h2 {
  color: white;
}

.download-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.download-cta {
  margin-top: 2rem;
}
.app-store-button {
  display: inline-flex;
  align-items: center;
  background: black;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
}

.apple-logo {
  margin-right: 10px;
  height: 22px;
  width: auto;
}

.app-store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.app-store-text span {
  font-size: 0.75rem;
  margin-bottom: 2px;
  opacity: 0.8;
}

.app-store-text strong {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.app-store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
/* Footer */
.site-footer {
  background: #1a1a2e;
  padding: 4rem 0 2rem;
  color: #cbd5e0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  background: white;
  padding: 1rem;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo-img {
  max-width: 80px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: block;
}

.footer-logo a {
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.footer-logo a:hover {
  transform: scale(1.05);
}

.footer-description {
  color: #a0aec0;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.footer-column h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: #667eea;
}

.footer-bottom {
  border-top: 1px solid #2d3748;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: #718096;
  font-size: 0.875rem;
  margin: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #718096;
  font-size: 0.875rem;
}

.footer-social a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.footer-social a:hover {
  color: #5a67d8;
}

/* Animations */
@keyframes shine {
  100% {
    transform: translateX(100%);
  }
}

/* Fix for navigation buttons being blocked */
nav.menu {
  position: relative;
  z-index: 1000;
}

nav .menuItems li a {
  z-index: 1001;
  position: relative;
}


/* Responsive adjustments */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .mockup-container {
    order: -1;
  }
  
  .about-text {
    text-align: center;
  }
  
  .about-text ul {
    display: inline-block;
    text-align: left;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .nav-container {
    top: 0.75rem;
    left: 1rem;
    right: 1rem;
  }
  
  /* Remove backgrounds on smaller screens */
  .header-logo {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 0;
  }
  
  nav.menu {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  
  .app-logo {
    max-width: 80%;
  }
  
  .content-container {
    padding: 1.5rem;
    margin-top: 5rem;
  }
  
  .hero-text p {
    font-size: 1.1rem;
  }
  
  .section-container {
    padding: 4rem 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .testimonials-container {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-brand {
    text-align: center;
    max-width: none;
  }
  
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-container {
    position: fixed;
    top: 0.5rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
  }
  
  .mobile-menu {
    top: 5rem;
    left: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
  }
  
  .header-logo-text {
    font-size: 1rem;
  }
  
  .header-logo-img {
    width: 40px;
    height: 40px;
  }
  
  .hamburger {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 0.75rem;
  }
  
  h1 {
    font-size: 1.2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  
  .content-container {
    margin-top: 4rem;
  }
  
  .cta-button {
    padding: 0.875rem 1.5rem;
  }
  
  .cta-button span {
    font-size: 0.875rem;
  }
  
  .section-container {
    padding: 3rem 1rem;
  }
  
  .feature-card, .testimonial-card {
    padding: 1.5rem;
  }
  
}
.mockup-image {
    width: 100%;
    height: 100%;
    border-radius: 20px; /* To match the app-mockup border radius */
    object-fit: cover; /* This ensures the image covers the entire container */
}


/* New SEO Content Sections */
.content-section {
  background: #fafbfc;
  padding: 8rem 0;
}

.content-section-alt {
  background: white;
  padding: 8rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-block {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

.content-section-alt .content-block {
  background: #fafbfc;
}

.content-section h2 {
  text-align: center;
  color: #1a1a1a;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

.content-block h3 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.content-block p {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.content-block p:last-child {
  margin-bottom: 0;
}

/* Responsive for content sections */
@media (max-width: 768px) {
  .content-section,
  .content-section-alt {
    padding: 4rem 0;
  }
  
  .content-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }
  
  .content-block {
    padding: 2rem;
    border-radius: 15px;
  }
  
  .content-block h3 {
    font-size: 1.25rem;
  }
  
  .content-block p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .content-section,
  .content-section-alt {
    padding: 3rem 0;
  }
  
  .content-section h2 {
    font-size: 1.75rem;
  }
  
  .content-grid {
    padding: 0 1rem;
  }
  
  .content-block {
    padding: 1.5rem;
  }
}

/* Revolutionary Hero Section */
.hero-section-dark {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 118, 117, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.hero-section-dark h2 {
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: #a0aec0;
  font-size: 1.3rem;
  margin-bottom: 3rem;
  font-weight: 400;
}

.revolution-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  min-width: 120px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b6b;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 500;
}

.revolution-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.revolution-text {
  color: white;
}

.revolution-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
  font-weight: 600;
  color: white;
}

.revolution-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cbd5e0;
  margin-bottom: 2rem;
}

/* Trending Topics Section */
.trending-section {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding: 6rem 0;
  position: relative;
}

.trending-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.trending-badge {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.trending-section h2 {
  color: #1a202c;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0;
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.trending-topic {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 25px;
  padding: 2.5rem;
  border: 1px solid #2d3748;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trending-topic:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.trending-topic.hot {
  border: 2px solid #ff6b6b;
  box-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
}

.topic-fire {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.trending-topic h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.trending-topic p {
  color: #a0aec0;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.topic-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.topic-stats span {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Power Section */
.power-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 8rem 0;
  position: relative;
}

.power-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: center;
}

.power-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.power-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.power-icon {
  font-size: 4rem;
}

.power-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.power-waves {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.2); opacity: 0; }
}

.power-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.power-section h2 {
  color: white;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.power-features {
  display: grid;
  gap: 2rem;
}

.power-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* News Section */
.news-section {
  background: #f8fafc;
  padding: 6rem 0;
}

.news-header {
  text-align: center;
  margin-bottom: 4rem;
}

.news-header h2 {
  color: #1a1a1a;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.news-subtitle {
  color: #666;
  font-size: 1.2rem;
  font-weight: 400;
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.news-card {
  background: white;
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  position: relative;
}

.breaking-badge {
  background: linear-gradient(135deg, #ff6b6b, #ff5252);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  position: absolute;
  top: -10px;
  left: 20px;
}

.news-card h3 {
  color: #1a1a1a;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2rem 0 1.5rem;
  line-height: 1.3;
}

.news-card p {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.news-engagement {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.news-engagement span {
  background: #f0f4f8;
  color: #2d3748;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

.news-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news-quick {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #667eea;
  position: relative;
}

.quick-badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  position: absolute;
  top: -8px;
  right: 15px;
}

.news-quick h4 {
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1rem 0 0.8rem;
  line-height: 1.3;
}

.news-quick p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
}

.news-categories {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.category-tag {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Tech Section */
.tech-section {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 50%, #e2e8f0 100%);
  padding: 8rem 0;
  position: relative;
}

.tech-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tech-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tech-badge {
  background: linear-gradient(135deg, #00d4aa, #00a8ff);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.tech-section h2 {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4aa, #00a8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tech-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.tech-feature {
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 168, 255, 0.1));
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 25px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.1), transparent);
  transition: all 0.6s ease;
}

.tech-feature:hover::before {
  left: 100%;
}

.tech-feature:hover {
  transform: translateY(-5px);
  border-color: #00d4aa;
  box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
}

.tech-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00d4aa, #00a8ff);
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.tech-feature h3 {
  color: #1a202c;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.tech-feature p {
  color: #a0aec0;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.tech-specs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.tech-specs span {
  background: rgba(0, 212, 170, 0.2);
  color: #00d4aa;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section-dark {
    padding: 4rem 0;
  }
  
  .hero-section-dark h2 {
    font-size: 2.5rem;
  }
  
  .revolution-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .stat-card {
    min-width: 200px;
  }
  
  .trending-grid {
    grid-template-columns: 1fr;
  }
  
  .power-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-features {
    grid-template-columns: 1fr;
  }
  
  .power-feature {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-section-dark h2 {
    font-size: 2rem;
  }
  
  .trending-topic,
  .news-card,
  .tech-feature {
    padding: 1.5rem;
  }
  
  .news-categories {
    gap: 0.5rem;
  }
  
  .category-tag {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

/* News Page Styles */
.news-hero-container {
  background: white;
  padding: 8rem 0 4rem 0;
  position: relative;
}

.news-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  text-align: center;
  position: relative;
}

.hero-text-content {
  max-width: 500px;
}

.breaking-badge {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  animation: pulse 2s infinite;
}

.news-hero-content h1 {
  color: #1a1a1a;
  font-size: 3rem;
  font-weight: 700;
  font-family: "Ubuntu", -apple-system, BlinkMacSystemFont, sans-serif;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: none;
}

.news-tagline {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.hero-divider {
  width: 50px;
  height: 2px;
  background: #333;
  margin: 0 auto;
  opacity: 0.3;
}

.news-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.news-stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 500;
}

.stat-icon {
  font-size: 1.2rem;
}

/* Breaking News Label */
.breaking-label-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 0.5rem 2rem;
}

.breaking-label-container .ticker-label {
  font-weight: 700;
  background: #333;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
}

/* Breaking News Ticker */
.breaking-ticker {
  background: #f8f9fa;
  color: #333;
  padding: 1rem 0;
  overflow: hidden;
  border-bottom: 1px solid #e0e0e0;
}

.ticker-container {
  max-width: 100%;
  margin: 0;
  position: relative;
}

.ticker-label-inline {
  font-weight: 700;
  background: #333;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.ticker-content {
  display: flex;
  animation: scroll 60s linear infinite;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.ticker-content span {
  background: white;
  padding: 0.75rem 1.25rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  font-weight: 500;
}

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

/* Main News Section */
.news-main-section {
  background: white;
  padding: 4rem 0;
}

.news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Featured Article */
.featured-article {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.article-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.article-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  display: block;
  margin-bottom: 2rem;
  line-height: 0;
  font-size: 0;
}

/* This is for the news page featured article image */
.featured-article .article-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Make individual article image behave exactly like featured article */
.article-header .article-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Remove div styling on mobile */
@media (max-width: 768px) {
  .article-header .article-image {
    border: none;
    border-radius: 12px;
    box-shadow: none;
    background: none;
    padding: 0;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    line-height: 0;
  }
  
  .article-featured-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 12px;
  }
}

.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.article-content {
  padding: 2rem;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.article-category {
  background: #f0f4f8;
  color: #2d3748;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-weight: 500;
}

.featured-article h2 {
  color: #1a1a1a;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.featured-article p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.article-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tag {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.read-more-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* News Sidebar */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-section {
  background: #f8fafc;
  border-radius: 20px;
  padding: 2rem;
}

.sidebar-section h3 {
  color: #1a1a1a;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trending-articles {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trending-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.trending-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.trending-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.trending-category {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  font-weight: 500;
}

.trending-time {
  color: #666;
}

.trending-item h4 {
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.trending-item p {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Political Pulse */
.pulse-indicators {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pulse-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pulse-topic {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.9rem;
}

.pulse-meter {
  background: #e2e8f0;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.pulse-bar {
  height: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.pulse-level {
  font-size: 0.8rem;
  color: #666;
}

/* Latest News Section */
.latest-news-section {
  background: #f8fafc;
  padding: 4rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-header h2 {
  color: #1a1a1a;
  font-size: 2.5rem;
  font-weight: 700;
}

.news-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 1px solid #e2e8f0;
  color: #4a5568;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* News Cards */
.news-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.card-content {
  padding: 1.5rem;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: #666;
}

.read-time {
  color: #667eea;
  font-weight: 500;
}

.news-card h3 {
  color: #1a1a1a;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.news-card p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.load-more-section {
  text-align: center;
}

.load-more-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 4rem 0;
  position: relative;
}

.newsletter-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.newsletter-content h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.newsletter-content p {
  color: #a0aec0;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto 2rem;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  outline: none;
}

.newsletter-btn {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.newsletter-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  color: #a0aec0;
  font-size: 0.9rem;
}

/* Article Page Styles */
.article-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 2rem 0;
  text-align: center;
  color: #1a1a1a;
}

.article-breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.article-breadcrumb a {
  color: #4a5568;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.article-breadcrumb a:hover {
  opacity: 1;
}

.article-hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  color: #666;
  flex-wrap: wrap;
}

.article-category {
  background: #f0f4f8;
  color: #2d3748;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
}

.article-date, .article-read-time {
  color: #666;
}

.article-content-section {
  background: white;
  min-height: 100vh;
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.article-header {
  margin-bottom: 3rem;
}

.featured-banner {
  text-align: center;
  margin-bottom: 1rem;
}

.featured-badge {
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.article-byline {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #667eea;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.author-name {
  font-weight: 600;
  color: #2d3748;
  font-size: 1.1rem;
}

.publish-date {
  color: #718096;
  font-size: 0.9rem;
}

.article-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

.article-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.article-tags .tag {
  background: linear-gradient(135deg, #f1f3f4, #e8eaed);
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.article-tags .tag:hover {
  background: linear-gradient(135deg, #e8eaed, #dadce0);
  transform: translateY(-1px);
}

.article-body {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

.article-lead {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.7;
  color: #2d3748;
  margin-bottom: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  border-radius: 12px;
  border-left: 4px solid #667eea;
}

.article-lead:first-letter {
  float: left;
  font-size: 4rem;
  line-height: 3rem;
  font-weight: 700;
  color: #667eea;
  margin: 0.5rem 0.5rem 0 0;
  font-family: Georgia, serif;
}

.article-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.article-text h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3748;
  margin: 2rem 0 1rem;
}

.article-text p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.pull-quote {
  margin: 3rem auto;
  max-width: 600px;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 15px;
  color: white;
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.pull-quote blockquote {
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
}

.pull-quote blockquote:before {
  content: """;
  font-size: 4rem;
  position: absolute;
  top: -1rem;
  left: -2rem;
  opacity: 0.3;
}

.pull-quote cite {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

.article-footer {
  margin-top: 4rem;
  padding: 3rem 0;
  border-top: 2px solid #e2e8f0;
}

.share-section {
  margin-bottom: 3rem;
  text-align: center;
}

.share-section h4 {
  color: #2d3748;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.newsletter-signup {
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 3rem;
  border: 1px solid #e2e8f0;
}

.newsletter-signup h4 {
  color: #2d3748;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.newsletter-signup p {
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 1rem;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 25px;
  font-size: 1rem;
  min-width: 250px;
}

.newsletter-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.newsletter-btn {
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.newsletter-disclaimer {
  color: #718096;
  font-size: 0.9rem;
  margin: 0;
}

.article-metadata {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-bottom: 2rem;
}

.article-metadata h4 {
  color: #2d3748;
  margin-bottom: 1.5rem;
}

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

.metadata-item {
  color: #4a5568;
  font-size: 0.9rem;
}

.metadata-item strong {
  color: #2d3748;
}

.article-navigation {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.back-to-news, .back-to-home {
  background: linear-gradient(135deg, #4a5568, #2d3748);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.back-to-news:hover, .back-to-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 85, 104, 0.3);
}

/* Support Page Styles */
.support-search-section {
  background: white;
  padding: 3rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.support-search-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.support-search-content {
  text-align: center;
}

.support-search-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #111827;
}

.support-search-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #6b7280;
}

.support-search-box {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 0.5rem;
}

.search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: #111827;
}

.search-input:focus {
  outline: none;
}

.search-input::placeholder {
  color: #9ca3af;
}

.search-btn {
  background: #2563eb;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.search-btn:hover {
  background: #1d4ed8;
}

.quick-actions-section {
  padding: 3rem 0;
  background: #f9fafb;
}

.support-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.quick-action-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
}

.quick-action-card:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.action-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.quick-action-card h3 {
  color: #111827;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.quick-action-card p {
  color: #6b7280;
  line-height: 1.5;
  font-size: 0.95rem;
}

.faq-section {
  padding: 3rem 0;
  background: white;
}

.faq-grid {
  display: grid;
  gap: 2rem;
}

.faq-category {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
}

.faq-category h2 {
  color: #111827;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: background 0.2s;
  font-weight: 500;
  color: #111827;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-toggle {
  font-size: 1.25rem;
  color: #6b7280;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
  color: #4b5563;
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-answer.show {
  display: block;
}

.faq-answer ol, .faq-answer ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.contact-support-section {
  padding: 3rem 0;
  background: #f9fafb;
}

.contact-support-content {
  max-width: 700px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-header h2 {
  color: #111827;
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  font-weight: 600;
}

.contact-header p {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.response-time {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #dbeafe;
  color: #1d4ed8;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
}

.contact-form-container {
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 2rem;
}

.support-form {
  display: grid;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
  font-family: inherit;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

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

.form-group small {
  color: #6b7280;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.submit-btn {
  background: #2563eb;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: #1d4ed8;
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-loading {
  display: none;
}

.form-privacy-notice {
  margin-top: 1rem;
  text-align: center;
}

.form-privacy-notice p {
  color: #6b7280;
  font-size: 0.85rem;
}

.form-success {
  text-align: center;
  padding: 2rem;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin: 2rem 0;
}

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

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #10b981;
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.form-success h3 {
  color: #111827;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.form-success p {
  color: #6b7280;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  font-size: 0.95rem;
}

.reset-btn {
  background: #2563eb;
  color: white;
  border: 1px solid #2563eb;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  margin-top: 1rem;
  transition: all 0.2s ease;
}

.reset-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.resources-section {
  padding: 3rem 0;
  background: white;
  border-top: 1px solid #e5e7eb;
}

.resources-section h2 {
  text-align: center;
  color: #111827;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
}

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

.resource-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
}

.resource-card:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.resource-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.resource-card h3 {
  color: #111827;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.resource-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-size: 0.95rem;
}

.resource-link {
  background: #2563eb;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
  display: inline-block;
  font-size: 0.9rem;
}

.resource-link:hover {
  background: #1d4ed8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .support-search-content h2 {
    font-size: 2rem;
  }
  
  .support-search-box {
    flex-direction: column;
  }
  
  .search-input {
    margin-bottom: 0.5rem;
  }
  
  .quick-actions-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  
  .faq-category {
    padding: 1.5rem;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

.article-lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 3rem;
  line-height: 1.6;
  border-left: 4px solid #4169e1;
  padding-left: 2rem;
  font-style: italic;
  background: linear-gradient(90deg, rgba(65, 105, 225, 0.05), transparent);
  padding: 1.5rem 2rem;
  border-radius: 0 8px 8px 0;
}

.article-text h2 {
  font-size: 1.8rem;
  margin: 3rem 0 1.5rem 0;
  color: #2c3e50;
  position: relative;
  font-weight: 600;
}

.article-text h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4169e1, #2b4db2);
  border-radius: 2px;
}

.article-text h3 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem 0;
  color: #34495e;
  font-weight: 600;
}

.article-text p {
  margin-bottom: 1.8rem;
  line-height: 1.8;
  text-align: justify;
}

.article-text ul, .article-text ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-text li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.article-text li strong {
  color: #2c3e50;
}

.article-footer {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #f1f3f4;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.share-article {
  margin-bottom: 2rem;
}

.share-article h4 {
  margin-bottom: 1rem;
  color: #555;
  font-size: 1.1rem;
  font-weight: 600;
}

.share-buttons {
  display: flex;
  gap: 1rem;
}

.share-btn {
  background: linear-gradient(135deg, #4169e1, #2b4db2);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3);
}

.share-btn:hover {
  background: linear-gradient(135deg, #2b4db2, #1e3a8a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(65, 105, 225, 0.4);
}

.back-to-news {
  color: #4169e1;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 2px solid #4169e1;
}

.back-to-news:hover {
  color: white;
  background: #4169e1;
  transform: translateX(-5px);
}

/* Responsive Design for News Page */
@media (max-width: 768px) {
  .news-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .news-hero-container {
    padding: 6rem 0 3rem 0;
  }
  
  .news-tagline {
    font-size: 1.1rem;
  }
  
  .news-stats {
    gap: 1rem;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-btn {
    font-size: 1.1rem;
    padding: 1.2rem 2rem;
  }
  
  .newsletter-features {
    flex-direction: column;
    gap: 1rem;
  }

  /* Article Page Mobile */
  .article-hero-content {
    padding: 6rem 1rem 3rem;
  }
  
  .article-hero-content h1 {
    font-size: 2rem;
  }
  
  .article-container {
    padding: 3rem 1rem;
  }
  
  .article-featured-img {
    height: 250px;
  }
  
  .article-lead {
    font-size: 1.1rem;
    padding-left: 1rem;
    padding: 1rem;
  }
  
  .article-text h2 {
    font-size: 1.5rem;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .share-buttons {
    flex-direction: column;
  }
  
  .article-footer {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .news-hero-content h1 {
    font-size: 1.8rem;
  }
  
  .news-hero-container {
    padding: 5rem 0 2.5rem 0;
  }
  
  .news-tagline {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .breaking-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  .ticker-container {
    padding: 0 1rem;
  }
  
  .news-container {
    padding: 0 !important;
    margin: 0 auto;
  }
  
  .news-main-section {
    padding: 2rem 0;
  }
  
  .featured-article {
    border-radius: 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  
  .article-content {
    padding: 2rem 2rem;
  }
  
  .sidebar-section {
    padding: 1.5rem;
    border-radius: 15px;
  }
  
  .newsletter-content h2 {
    font-size: 2rem;
  }
}

/* About page styles */
.about-main {
    margin-top: 120px;
    min-height: 100vh;
}

.about-hero {
    color: white;
    padding: 100px 0;
    text-align: center;
}


.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Ubuntu', sans-serif;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: white;
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-section {
    padding: 80px 0;
}

.about-section.alt-section {
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.section-grid.reverse .section-content {
    order: 2;
}

.section-grid.reverse .section-image {
    order: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3748;
    font-family: 'Ubuntu', sans-serif;
}

.centered-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3748;
    font-family: 'Ubuntu', sans-serif;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-highlight h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.feature-highlight p {
    color: #718096;
    line-height: 1.6;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.value-description {
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.join-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.join-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
    font-family: 'Ubuntu', sans-serif;
}

.join-description {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}

.download-btn {
    text-decoration: none;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
}

.store-badge {
    height: 60px;
}

.web-btn {
    background: #667eea;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
}

.web-btn:hover {
    background: #5a6fd8;
}

/* Responsive design for about page */
@media (max-width: 768px) {
    .about-main {
        margin-top: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-grid.reverse .section-content,
    .section-grid.reverse .section-image {
        order: unset;
    }
    
    .section-title,
    .centered-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .web-btn {
        width: 100%;
        max-width: 250px;
    }
}


/* Terms page styles - matching Privacy page structure */
.terms-hero {
    min-height: 100vh;
}

.terms-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.terms-intro h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 2.5rem;
}

.terms-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.terms-updated {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
    color: white;
    font-weight: 300;
}

/* Terms content section */
.terms-content-section {
    background: #fafbfc;
    padding: 6rem 0;
}

.terms-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 2rem;
}

.terms-section {
    margin-bottom: 4rem;
}

.terms-section h2 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.terms-section h3 {
    color: #333;
    margin-bottom: 1.25rem;
    margin-top: 2.5rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.terms-section p {
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.terms-section strong {
    color: #2d3748;
    font-weight: 600;
}

.terms-section em {
    color: #718096;
    font-style: italic;
}

.terms-section ul {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.terms-section ul li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: #4a5568;
    line-height: 1.75;
}

.terms-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #a0aec0;
    font-size: 1.2rem;
}

.terms-section ol {
    margin: 2rem 0;
    padding-left: 1.5rem;
    counter-reset: item;
}

.terms-section ol li {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.75;
}

.terms-section a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.terms-section a:hover {
    color: #5a6fd8;
    border-bottom-color: #667eea;
}

/* Terms table of contents */
.terms-navigation {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.terms-navigation h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.terms-navigation .nav-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-navigation .nav-list li {
    margin: 0;
}

.terms-navigation .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: #4a5568;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.terms-navigation .nav-list a:hover,
.terms-navigation .nav-list a.active {
    color: #667eea;
    background: #f7fafc;
    border-color: #e2e8f0;
    transform: translateY(-1px);
}

.terms-document {
    margin-top: 2rem;
}

/* Terms sections with rounded backgrounds like Privacy */
.terms-section:first-of-type,
.terms-section[id="acceptance"],
.terms-section[id="service-description"],
.terms-section[id="user-accounts"],
.terms-section[id="community-guidelines"],
.terms-section[id="content-policy"],
.terms-section[id="privacy"],
.terms-section[id="prohibited-conduct"],
.terms-section[id="intellectual-property"],
.terms-section[id="disclaimers"],
.terms-section[id="termination"],
.terms-section[id="changes"],
.terms-section[id="governing-law"],
.terms-section[id="contact"] {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    margin-bottom: 4rem;
}

.section-heading {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.contact-list li {
    margin-bottom: 0.75rem;
    padding-left: 0;
}

.contact-list li::before {
    display: none;
}

.terms-footer {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid #667eea;
    margin-top: 3rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

/* Blog page styles - matching Privacy/Terms structure */
.blog-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-intro h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 2.5rem;
}

.blog-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.blog-content-section {
    background: #fafbfc;
    padding: 6rem 0;
}

.blog-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Blog Layout */
.blog-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.blog-header h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-header p {
    color: #4a5568;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-header h2 {
        font-size: 2rem;
    }
    
    .blog-header p {
        font-size: 1rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .newsletter-section {
        padding: 2rem;
    }
    
    .newsletter-section h2 {
        font-size: 1.75rem;
    }
}

.blog-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: fit-content;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-category {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.blog-date,
.blog-read-time {
    color: #718096;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-content h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.blog-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #667eea;
}

.blog-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.read-more {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.read-more:hover {
    color: #764ba2;
    transform: translateX(2px);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.newsletter-section h2 {
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.newsletter-section p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-section a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

.newsletter-section a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Legacy blog section styles (for backward compatibility) */
.blog-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    margin-bottom: 4rem;
}

.blog-section h2 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.blog-section h3 {
    color: #333;
    margin-bottom: 1.25rem;
    margin-top: 2.5rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.blog-section p {
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.blog-section ul {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.blog-section ul li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: #4a5568;
    line-height: 1.75;
}

.blog-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #a0aec0;
    font-size: 1.2rem;
}

/* Politics Page Styles */
.politics-hero-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: white;
    position: relative;
    overflow: hidden;
}

.politics-hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff08" points="0,1000 1000,800 1000,1000"/></svg>');
    pointer-events: none;
}

.politics-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.politics-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.politics-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 400;
}

.politics-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.politics-hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discussion-bubbles {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
}

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    color: #2d3748;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    animation: float 6s ease-in-out infinite;
}

.bubble.left {
    top: 50px;
    left: 0;
    animation-delay: 0s;
}

.bubble.right {
    top: 150px;
    right: 0;
    animation-delay: 2s;
}

.bubble.center {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.politics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.politics-features-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card.featured {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: scale(1.05);
}
.feature-card.featured p {
    color: white;
}
.feature-card.featured h3 {
    color: white;
}

.feature-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: inherit;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: inherit;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.feature-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.topics-section {
    padding: 6rem 0;
    background: white;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.topic-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.topic-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.topic-card.hot {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
}

.topic-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.topic-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: inherit;
}

.topic-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: inherit;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.topic-stats {
    font-size: 0.85rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
}

.topics-cta {
    text-align: center;
    margin-top: 3rem;
}

.topics-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.topics-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.3);
}

.guidelines-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e2e8f0);
}

.guidelines-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.guidelines-intro {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.principles-list {
    space-y: 1.5rem;
}

.principle {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.principle-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.principle-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.principle-content p {
    color: #4a5568;
    line-height: 1.5;
}

.community-stats {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat {
    margin-bottom: 2rem;
}

.stat:last-child {
    margin-bottom: 0;
}

.community-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.community-stats .stat-label {
    font-size: 0.95rem;
    color: #4a5568;
    margin-top: 0.5rem;
    font-weight: 500;
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-bottom: 3rem;
}

.cta-primary.large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
}

.cta-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 400;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.9;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.feature-check {
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .politics-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 4rem 1rem;
    }
    
    .politics-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .politics-cta-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .guidelines-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Community page styles - matching Privacy/Terms structure */
.community-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.community-intro h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 2.5rem;
}

.community-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.community-content-section {
    background: #fafbfc;
    padding: 6rem 0;
}

.community-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Community sections with rounded backgrounds */
.community-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    margin-bottom: 4rem;
}

.community-section h2 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.community-section h3 {
    color: #333;
    margin-bottom: 1.25rem;
    margin-top: 2.5rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.community-section p {
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.community-section ul {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.community-section ul li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: #4a5568;
    line-height: 1.75;
}

.community-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #a0aec0;
    font-size: 1.2rem;
}

/* Partnership page styles - matching Privacy/Terms structure */
.partnership-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partnership-intro h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 2.5rem;
}

.partnership-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.partnership-content-section {
    background: #fafbfc;
    padding: 6rem 0;
}

.partnership-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Partnership sections with rounded backgrounds */
.partnership-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    margin-bottom: 4rem;
}

.partnership-section h2 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.partnership-section h3 {
    color: #333;
    margin-bottom: 1.25rem;
    margin-top: 2.5rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.partnership-section p {
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.partnership-section ul {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.partnership-section ul li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: #4a5568;
    line-height: 1.75;
}

.partnership-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #a0aec0;
    font-size: 1.2rem;
}

/* Politics Social Media Hero Design */
.politics-social-hero {
    position: relative;
    min-height: 100vh;
    background: #0a0a0a;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.neon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.neon-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: neonFloat 8s ease-in-out infinite;
}

.neon-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.neon-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #06ffa5, #00d4ff);
    bottom: -150px;
    right: -150px;
    animation-delay: 2s;
}

.neon-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #ffbe0b, #fb5607);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 110, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 255, 165, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 90%, rgba(255, 190, 11, 0.3) 0%, transparent 50%);
}

@keyframes neonFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.social-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.social-interface {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stories-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stories-header h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.story-count {
    color: #06ffa5;
    font-size: 0.9rem;
    font-weight: 600;
}

.stories-grid {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
}

.story-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff006e, #8338ec, #06ffa5);
    padding: 3px;
    position: relative;
    animation: storyPulse 2s ease-in-out infinite;
}

.story-item.active .story-ring {
    animation: activeStory 1.5s ease-in-out infinite;
}

.story-avatar {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.5rem;
}

.story-item span {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.story-popup {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.story-item:hover .story-popup {
    opacity: 1;
}

@keyframes storyPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 110, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(255, 0, 110, 0); }
}

@keyframes activeStory {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.live-chat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 400px;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff006e;
    font-weight: 700;
    font-size: 0.9rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff006e;
    border-radius: 50%;
    animation: livePulse 1s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.viewers {
    color: #06ffa5;
    font-size: 0.9rem;
    font-weight: 600;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
    max-height: 250px;
    overflow-y: auto;
}

.message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.message.right {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, #8338ec, #ff006e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-content {
    flex: 1;
}

.message-bubble {
    padding: 0.75rem 1rem;
    border-radius: 18px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 300px;
    word-wrap: break-word;
}

.message-bubble.dem {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
}

.message-bubble.rep {
    background: linear-gradient(135deg, #dc2626, #f87171);
    color: white;
}

.message-bubble.ind {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
}

.message.right .message-bubble {
    margin-left: auto;
}

.message-reactions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.reaction {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.reaction:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.chat-typing {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.typing-dots {
    display: flex;
    gap: 2px;
}

.typing-dots span {
    width: 4px;
    height: 4px;
    background: #06ffa5;
    border-radius: 50%;
    animation: typingDots 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.6s; }
.typing-dots span:nth-child(3) { animation-delay: 0.9s; }

@keyframes typingDots {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

.hero-text-modern {
    color: white;
    position: relative;
}

.floating-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.live-badge {
    background: rgba(255, 0, 110, 0.2);
    color: #ff006e;
    animation: liveBadgeGlow 2s ease-in-out infinite;
}

.trending-badge {
    background: rgba(255, 190, 11, 0.2);
    color: #ffbe0b;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ff006e;
    border-radius: 50%;
    animation: livePulse 1s ease-in-out infinite;
}

@keyframes liveBadgeGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 0, 110, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 0, 110, 0.8); }
}

.modern-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, sans-serif;
}

.neon-text {
    color: #ff006e;
    text-shadow: 0 0 10px #ff006e, 0 0 20px #ff006e, 0 0 30px #ff006e;
}

.gradient-text {
    background: linear-gradient(45deg, #06ffa5, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cta-modern {
    margin-bottom: 3rem;
}

.neon-button {
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
}

.neon-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.6);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: buttonShine 3s ease-in-out infinite;
}

@keyframes buttonShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.button-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.button-emoji {
    font-size: 1.5rem;
}

.button-sub {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

.social-proof-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-avatars {
    flex-shrink: 0;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: -8px;
    border: 2px solid #0a0a0a;
    animation: avatarPop 2s ease-in-out infinite;
    animation-delay: var(--delay);
}

.user-count {
    background: #06ffa5;
    color: #0a0a0a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 2px solid #0a0a0a;
}

@keyframes avatarPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.proof-text {
    font-size: 1rem;
    line-height: 1.4;
}

.rating {
    color: #ffbe0b;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.live-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    display: block;
}

.neon-glow {
    background: linear-gradient(45deg, #ff006e, #06ffa5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .social-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .social-interface {
        order: -1;
    }
    
    .modern-title {
        font-size: 3rem;
    }
    
    .live-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .politics-social-hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .social-hero-content {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .modern-title {
        font-size: 2.5rem;
    }
    
    .modern-subtitle {
        font-size: 1.1rem;
    }
    
    .stories-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .chat-messages {
        max-height: 200px;
    }
    
    .floating-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-proof-modern {
        flex-direction: column;
        text-align: center;
    }
}

/* Tech Company Enhancement Styles for Politics Hero */

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.badge-icon {
    font-size: 1rem;
}

.badge-text {
    letter-spacing: 0.02em;
}

/* Hero Text Enhancement */
.hero-text h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}

.stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: block;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Enhanced CTA Button */
.cta-button.enhanced {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.button-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100%);
    transition: left 0.5s ease;
    z-index: 1;
}

.cta-button.enhanced:hover .button-bg {
    left: 0;
}

.button-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.button-arrow {
    transition: transform 0.3s ease;
}

.cta-button.enhanced:hover .button-arrow {
    transform: translateX(4px);
}

/* Simple CTA Button */
.cta-button-simple {
    background: rgba(255, 255, 255, 0.95);
    color: #2b4db2;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-button-simple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: white;
}

/* Conversation Bubbles */
.conversation-bubbles {
    margin: 2rem 0;
}

.bubble-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.conversation-bubble {
    opacity: 0;
    transform: translateY(20px);
}

.conversation-bubble.bubble-2 {
    align-self: flex-end;
}

.conversation-bubble.bubble-3 {
}

.bubble-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 18px;
    color: #1a1a1a;
    font-size: 0.9rem;
    max-width: 280px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.conversation-bubble.bubble-2 .bubble-content {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    margin-left: auto;
}

.conversation-bubble.bubble-3 .bubble-content {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(102, 126, 234, 0.3);
    max-width: 280px;
    width: fit-content;
}

.bubble-text {
    display: none;
    line-height: 1.4;
}

.typing-indicator {
    display: none;
    gap: 4px;
    padding: 8px 0;
    width: fit-content;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    animation: typingDots 1.4s ease-in-out infinite;
}

.conversation-bubble.bubble-2 .typing-indicator span {
    background: rgba(255, 255, 255, 0.6);
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.6s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes bubbleSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typingDots {
    0%, 60%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    30% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Shine effect for CTA button */
@keyframes shine {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.cta-button-simple.shine {
    background: linear-gradient(135deg, #667eea 25%, rgba(255,255,255,0.3) 50%, #764ba2 75%);
    background-size: 200% 100%;
    animation: shine 1.5s ease-in-out;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-icon {
    font-size: 1rem;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-logo {
    position: absolute;
    opacity: 0.8;
    animation: floatSpin 8s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.floating-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
}

.floating-logo.logo-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-logo.logo-2 {
    top: 25%;
    right: 12%;
    animation-delay: 2s;
}

.floating-logo.logo-3 {
    bottom: 35%;
    left: 12%;
    animation-delay: 4s;
}

.floating-logo.logo-4 {
    bottom: 20%;
    right: 18%;
    animation-delay: 1s;
}

.floating-logo.logo-5 {
    top: 40%;
    left: 85%;
    animation-delay: 3s;
}

/* Background Effects */
.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.pulse-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.pulse-circle.pulse-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -50px;
    animation-delay: 0s;
}

.pulse-circle.pulse-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: -30px;
    animation-delay: 2s;
}

.pulse-circle.pulse-3 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    left: 20%;
    animation-delay: 1s;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    filter: blur(40px);
    animation: orbFloat 6s ease-in-out infinite;
}

.gradient-orb.orb-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.gradient-orb.orb-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -80px;
    animation-delay: 3s;
}

/* Particle Streams */
.particle-stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(102, 126, 234, 0.6), transparent);
    animation: particleStream 3s linear infinite;
}

.particle-stream.stream-1 {
    top: -50px;
    left: 20%;
    animation-delay: 0s;
}

.particle-stream.stream-2 {
    top: -50px;
    right: 30%;
    animation-delay: 1s;
    height: 80px;
}

.particle-stream.stream-3 {
    top: -50px;
    left: 70%;
    animation-delay: 2s;
    height: 60px;
}

/* Glow Rings */
.glow-ring {
    position: absolute;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: glowRing 4s ease-in-out infinite;
}

.glow-ring.ring-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.glow-ring.ring-2 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 25%;
    animation-delay: 2s;
}

/* Wave Ripples */
.wave-ripple {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: waveRipple 5s ease-out infinite;
}

.wave-ripple.ripple-1 {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 5%;
    animation-delay: 0s;
}

.wave-ripple.ripple-2 {
    width: 40px;
    height: 40px;
    bottom: 40%;
    right: 8%;
    animation-delay: 2.5s;
}

/* Animations */
@keyframes floatSpin {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(5px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translateY(-10px) rotate(270deg) scale(1.05);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(-30px) translateX(20px);
    }
    66% {
        transform: translateY(15px) translateX(-15px);
    }
}

@keyframes particleStream {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes glowRing {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3) rotate(180deg);
        opacity: 0.7;
    }
}

@keyframes waveRipple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(10px) rotate(-3deg);
    }
}

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

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

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

/* Animation Classes */
.animate-fadeIn {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slideUp {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-slideUp.delay-1 {
    animation-delay: 0.2s;
}

.animate-slideUp.delay-2 {
    animation-delay: 0.4s;
}

.animate-slideUp.delay-3 {
    animation-delay: 0.6s;
}

.hero-stats .stat-number {
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-logo, .background-effects {
        display: none;
    }
    
    .conversation-bubbles {
        margin: 1.5rem 0;
    }
    
    .bubble-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .bubble-content {
        max-width: 250px;
        font-size: 0.85rem;
    }
    
    .conversation-bubble {
        opacity: 0;
        transform: translateY(20px);
    }
    
    .typing-indicator {
        display: none;
        gap: 4px;
        padding: 8px 0;
        width: fit-content;
    }
    
    .conversation-bubble.bubble-3 .bubble-content {
        max-width: 250px;
        width: fit-content;
    }
}

/* Compact CTA Section */
.cta-section-compact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: white;
    text-align: center;
}

.cta-content-compact {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content-compact h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.cta-content-compact p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-button-clean {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    color: #2b4db2;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.cta-button-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.cta-button-clean:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.cta-button-clean:hover::before {
    left: 100%;
}

.cta-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 0.5rem;
    color: #667eea;
}

.cta-features-simple {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    opacity: 0.9;
    font-size: 0.9rem;
    align-items: center;
}

.cta-features-simple span {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cta-content-compact h2 {
        font-size: 1.8rem;
    }
    
    .cta-features-simple {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* CUTTING-EDGE TECH COMPANY BACKGROUND ANIMATIONS */

/* Network Grid System */
.network-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    opacity: 0.4;
}

.network-node {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.8);
}

.network-node.node-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.network-node.node-2 {
    top: 30%;
    right: 25%;
    animation-delay: 0.8s;
}

.network-node.node-3 {
    bottom: 40%;
    left: 35%;
    animation-delay: 1.6s;
}

.network-node.node-4 {
    bottom: 25%;
    right: 15%;
    animation-delay: 2.4s;
}

.connecting-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    opacity: 0.6;
    animation: dataFlow 4s ease-in-out infinite;
}

.connecting-line.line-1 {
    top: 25%;
    left: 15%;
    width: 200px;
    transform: rotate(25deg);
    animation-delay: 0s;
}

.connecting-line.line-2 {
    top: 35%;
    right: 20%;
    width: 150px;
    transform: rotate(-45deg);
    animation-delay: 1.5s;
}

.connecting-line.line-3 {
    bottom: 30%;
    left: 30%;
    width: 180px;
    transform: rotate(15deg);
    animation-delay: 3s;
}

/* Data Flow Streams */
.data-stream {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #667eea, transparent);
    opacity: 0.7;
}

.data-stream.stream-1 {
    top: 10%;
    left: 20%;
    animation: streamFlow 6s ease-in-out infinite;
}

.data-stream.stream-2 {
    top: 15%;
    right: 30%;
    animation: streamFlow 6s ease-in-out infinite reverse;
    animation-delay: 3s;
}

.data-packet {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #667eea;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(102, 126, 234, 1);
    animation: packetMove 4s linear infinite;
}

.data-packet.packet-1 { animation-delay: 0s; }
.data-packet.packet-2 { animation-delay: 1.3s; }
.data-packet.packet-3 { animation-delay: 2.6s; }
.data-packet.packet-4 { animation-delay: 0.5s; }
.data-packet.packet-5 { animation-delay: 2s; }

/* Tech Hexagons */
.tech-hexagon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(102, 126, 234, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.4);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hexRotate 8s linear infinite;
}

.tech-hexagon.hex-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.tech-hexagon.hex-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2.5s;
}

.tech-hexagon.hex-3 {
    bottom: 20%;
    left: 60%;
    animation-delay: 5s;
}

/* Digital Pulse Indicators */
.digital-pulse {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid #667eea;
    border-radius: 50%;
    animation: digitalPulse 2s ease-in-out infinite;
}

.digital-pulse.pulse-1 {
    top: 35%;
    left: 5%;
    animation-delay: 0s;
}

.digital-pulse.pulse-2 {
    bottom: 45%;
    right: 10%;
    animation-delay: 1s;
}

/* Matrix Code Effect */
.code-matrix {
    position: absolute;
    top: 10%;
    right: 5%;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: rgba(102, 126, 234, 0.6);
    opacity: 0.7;
}

.code-line {
    animation: codeScroll 8s linear infinite;
    margin: 5px 0;
}

.code-line.line-1 { animation-delay: 0s; }
.code-line.line-2 { animation-delay: 2s; }
.code-line.line-3 { animation-delay: 4s; }

/* ADVANCED KEYFRAME ANIMATIONS */
@keyframes networkPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(102, 126, 234, 0.8);
    }
    50% {
        transform: scale(1.5);
        box-shadow: 0 0 20px rgba(102, 126, 234, 1);
    }
}

@keyframes dataFlow {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    25% {
        opacity: 0.8;
        transform: scaleX(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
    75% {
        opacity: 0.6;
        transform: scaleX(0.8);
    }
    100% {
        opacity: 0;
        transform: scaleX(0);
    }
}

@keyframes streamFlow {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(0);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-20px);
    }
}

@keyframes packetMove {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(200px);
        opacity: 0;
    }
}

@keyframes hexRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.6;
    }
}

@keyframes digitalPulse {
    0%, 100% {
        transform: scale(1);
        border-color: rgba(102, 126, 234, 0.6);
    }
    50% {
        transform: scale(1.3);
        border-color: rgba(102, 126, 234, 1);
        box-shadow: 0 0 15px rgba(102, 126, 234, 0.8);
    }
}

@keyframes codeScroll {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* Mobile Optimization - Simplify animations on small screens for performance */
@media (max-width: 768px) {
    .network-grid {
        opacity: 0.3;
    }
    
    .connecting-line {
        width: 100px !important;
        animation-duration: 6s !important;
    }
    
    .data-stream {
        opacity: 0.5;
        height: 100px;
    }
    
    .tech-hexagon {
        width: 25px;
        height: 25px;
        animation-duration: 12s !important;
    }
    
    .code-matrix {
        font-size: 8px;
        opacity: 0.4;
    }
    
    .digital-pulse {
        width: 8px;
        height: 8px;
        animation-duration: 3s !important;
    }
}

/* SEO DISCOVERY SECTIONS STYLING */

/* Countries Section */
.countries-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.country-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.country-card:hover::before {
    opacity: 1;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.country-card.featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.country-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.country-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.country-topics {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.country-topics span {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Discovery Section */
.discovery-section {
    padding: 4rem 0;
    background: white;
}

.discovery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.discovery-category {
    background: #f8f9ff;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.discovery-category h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topic-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.topic-link {
    color: #667eea;
    text-decoration: none;
    padding: 0.8rem 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.topic-link:hover {
    background: #667eea;
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

/* Viewpoints Section - Matching Countries Section Theme */
.viewpoints-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.viewpoints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.viewpoint-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.viewpoint-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.viewpoint-card:hover::before {
    opacity: 1;
}

.viewpoint-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.viewpoint-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.viewpoint-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.viewpoint-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.viewpoint-topics {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.viewpoint-topics span {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Political Spectrum Complete Redesign */
.political-spectrum {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 25px;
    border: 2px solid #e2e8f0;
}

.spectrum-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.spectrum-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 8px;
    background: linear-gradient(90deg, #1e40af 0%, #fbbf24 50%, #dc2626 100%);
    border-radius: 4px;
    transform: translateY(-50%);
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.spectrum-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.spectrum-position {
    text-align: center;
    position: relative;
}

.spectrum-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    width: 280px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}


.spectrum-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: #374151;
}

.spectrum-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.spectrum-card p {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.spectrum-tags {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spectrum-tags span {
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.spectrum-label {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #374151;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.spectrum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.spectrum-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.spectrum-link:hover {
    text-decoration: none;
    color: inherit;
}

/* FAQ Section Styles */
.faq-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-item h3 {
    background: #667eea;
    color: white;
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.faq-item h3:hover {
    background: #5a67d8;
}

.faq-answer {
    padding: 1.5rem;
    display: block;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #4a5568;
}

/* Principles Section Styles */
.principles-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.principles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.principle {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.principle-icon {
    font-size: 2.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.principle-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.principle-content p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Enhanced CTA Section */
.cta-section-compact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cta-feature span:last-child {
    font-size: 1rem;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: white;
    color: #667eea;
}

.cta-button.primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.button-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .spectrum-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .spectrum-line {
        display: none;
    }
    
    .spectrum-card {
        width: 100%;
        max-width: 350px;
    }
    
    .spectrum-label {
        position: static;
        display: inline-block;
        margin-top: 1rem;
        transform: none;
    }
    
    .political-spectrum {
        padding: 2rem 1rem;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .countries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .discovery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .viewpoints-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .country-card, .discovery-category, .viewpoint-card {
        padding: 1.5rem;
    }
    
    .country-flag {
        font-size: 2rem;
    }
    
    .viewpoint-icon {
        font-size: 2rem;
    }
}

/* Community Page Styles */
.community-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.community-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
        transform: scale(1.02);
    }
}

.community-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
    animation: slideInUp 1s ease-out;
}

.community-hero h1::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.2s both;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    animation: slideInUp 1s ease-out 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, #e5e7eb, transparent);
}

/* Community Features Section */
.community-features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #334155;
}
.community-features-section .section-header h2,
.community-features-section h2,
.community-features-section h3 {
    color: #1e293b;
}
.community-features-section .section-header p,
.community-features-section p {
    color: #475569;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.feature-card.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* Community Types Section */
.community-types-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    color: #334155;
}
.community-types-section .section-header h2,
.community-types-section h2,
.community-types-section h3 {
    color: #1e293b;
}
.community-types-section .section-header p,
.community-types-section p {
    color: #475569;
}

.community-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.community-type-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.community-type-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.1);
}

.type-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.type-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.type-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
}

.type-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.type-content li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.type-content li:before {
    content: "▪";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.type-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.type-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    text-decoration: none;
    color: white;
}

/* Local Political Engagement Section */
.local-engagement-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #334155;
}
.local-engagement-section h2,
.local-engagement-section h3,
.local-engagement-section h4 {
    color: #1e293b;
}
.local-engagement-section p {
    color: #475569;
}

.engagement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.engagement-text {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 3.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.engagement-badge {
    background: rgba(102, 126, 234, 0.2);
    color: #93c5fd;
    border: 1px solid rgba(102, 126, 234, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.engagement-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.engagement-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.engagement-benefits {
    space-y: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.benefit-text p {
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* Community Network Visualization */
.community-network {
    position: relative;
    width: 500px;
    height: 450px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.network-node {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #e2e8f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.network-node:hover {
    transform: scale(1.1) !important;
    border-color: #667eea;
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
}

.network-node.central {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
    z-index: 3;
    animation: centralPulse 4s ease-in-out infinite;
}

.network-node.central .node-content {
    color: white;
}

.network-node:nth-child(2) {
    top: 10%;
    left: 10%;
    animation: floatNode 6s ease-in-out infinite;
    animation-delay: 0s;
}

.network-node:nth-child(3) {
    top: 10%;
    right: 10%;
    animation: floatNode 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

.network-node:nth-child(4) {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation: floatNode 6s ease-in-out infinite;
    animation-delay: 3s;
}

.node-content {
    text-align: center;
    color: #1e293b;
}

.node-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.network-node.central .node-icon {
    font-size: 2.5rem;
}

.node-content span {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.network-connections {
    display: none;
}

@keyframes centralPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    }
}

@keyframes floatNode {
    0%, 100% { 
        transform: translateY(0);
    }
    50% { 
        transform: translateY(-10px);
    }
}


/* Success Stories Section */
.success-stories-section {
    padding: 5rem 0;
    background: #f8fafc;
}

/* Political Levels Section */
.political-levels-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.political-levels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.political-levels-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.political-levels-section .section-header h2 {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.political-levels-section .section-header p {
    color: #475569;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.level-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.level-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #cbd5e1;
}

.level-card:hover::before {
    transform: scaleX(1);
}

.level-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: grayscale(0);
    transition: transform 0.3s ease;
}

.level-card:hover .level-icon {
    transform: scale(1.1);
}

.level-card h3 {
    color: #1e293b;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.level-card > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-weight: 400;
}

.level-examples {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    background: #f8fafc;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.level-examples li {
    color: #475569;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.level-examples li:last-child {
    border-bottom: none;
}

.level-examples li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.level-impact {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.levels-connection {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    padding: 3.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.levels-connection h3 {
    color: #1e293b;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.levels-connection > p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.connection-flow {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
    border: 1px solid #cbd5e1;
}

.flow-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.flow-level {
    background: white;
    color: #1e293b;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flow-level:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.flow-arrow {
    color: #667eea;
    font-size: 2rem;
    font-weight: bold;
}

.flow-description {
    color: #64748b;
    font-size: 1.05rem;
    font-weight: 500;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .levels-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .level-card {
        padding: 2rem;
    }
    
    .flow-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .levels-connection {
        padding: 2rem;
        margin-top: 2rem;
    }
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.15);
}

.story-header {
    margin-bottom: 1.5rem;
}

.story-location {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.story-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.story-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-impact {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.impact-tag {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* CTA Section */
.community-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #334155;
    text-align: center;
}
.community-cta-section h2,
.community-cta-section h3 {
    color: #1e293b;
}
.community-cta-section p {
    color: #475569;
}

.cta-badge {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.primary-cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.primary-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
    text-decoration: none;
    color: white;
}

.secondary-cta-button {
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    padding: 1rem 2rem;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.secondary-cta-button:hover {
    background: white;
    border-color: #667eea;
    text-decoration: none;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    color: #1e293b;
}

.trust-icon {
    font-size: 1.2rem;
}

/* Animation Classes */
.animate-slideUp {
    animation: slideUp 0.8s ease-out both;
}

.animate-slideUp.delay-1 {
    animation-delay: 0.2s;
}

.animate-slideUp.delay-2 {
    animation-delay: 0.4s;
}

.animate-slideUp.delay-3 {
    animation-delay: 0.6s;
}

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

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

/* Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* About Page Styles */
.about-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    color: white;
}

.about-badge {
    display: block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.platform-visual {
    margin-top: 3rem;
}

.platform-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-stats .stat-item {
    text-align: center;
    color: white;
}

.platform-stats .stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.platform-stats .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #334155;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.mission-text p {
    color: #475569;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.mission-highlight,
.vision-highlight {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mission-highlight:hover,
.vision-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.mission-highlight h3,
.vision-highlight h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.mission-highlight p,
.vision-highlight p {
    color: #64748b;
    line-height: 1.6;
}

.highlight-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

/* Vision Section */
.vision-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.vision-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.vision-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.vision-highlight {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.vision-highlight h3 {
    color: white;
}

.vision-highlight p {
    color: rgba(255, 255, 255, 0.8);
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.value-card:hover .card-accent {
    transform: scaleX(1);
}

/* Mobile Responsiveness for About Page */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .platform-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mission-content,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-highlight,
    .vision-highlight {
        padding: 2rem;
    }
    
    .value-card {
        padding: 2rem;
    }
}

/* Mobile Responsiveness for Community Page */
@media (max-width: 768px) {
    .community-hero h1 {
        font-size: 2rem;
    }
    
    .community-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        height: 1px;
        width: 100px;
        margin: 0 auto;
    }
    
    .engagement-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid,
    .community-types-grid,
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .community-network {
        width: 250px;
        height: 250px;
    }
    
    .network-node {
        width: 60px;
        height: 60px;
    }
    
    .network-node.central {
        width: 110px;
        height: 110px;
    }
    
    .community-network {
        width: 100%;
        max-width: 400px;
        height: 350px;
        padding: 1rem;
    }

    .network-node {
        width: 80px;
        height: 80px;
    }

    .node-icon {
        font-size: 1.5rem;
    }

    .network-node.central .node-icon {
        font-size: 2rem;
    }

    .node-content span {
        font-size: 0.75rem;
    }

}

/* Partnership Page Styles */
.partnership-hero {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.partnership-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.partnership-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.partnership-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
}

/* Partnership Types Section */
.partnership-types-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partnership-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.partnership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.partnership-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.partnership-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.partnership-card p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.partnership-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.partnership-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.partnership-button:hover {
    transform: translateY(-2px);
}

/* Success Stories Section */
.success-stories-section {
    padding: 5rem 0;
    background: #ffffff;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.story-card:hover {
    border-color: #667eea;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    background: #667eea;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.story-type {
    background: #f1f5f9;
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.story-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.story-metrics {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.metric {
    background: #667eea;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Partnership Benefits Section */
.partnership-benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #334155;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-badge {
    display: inline-block;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.benefits-list {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.benefit-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.benefit-text p {
    color: #475569;
    line-height: 1.6;
}

.partnership-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.showcase-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.showcase-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.showcase-item:hover::before {
    transform: translateX(0);
}

.showcase-item.primary {
    grid-column: span 2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.showcase-item.primary:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
}

.showcase-item.primary .showcase-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.showcase-item.primary span {
    color: white;
    font-weight: 600;
}

.showcase-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 16px;
    color: white;
    transition: all 0.3s ease;
}

.showcase-item:hover .showcase-icon {
    transform: rotateY(360deg) scale(1.1);
}

.showcase-item span {
    display: block;
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Partnership Visual */
.partnership-visual {
    margin-top: 3rem;
    position: relative;
    text-align: center;
}

.partnership-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.flow-step.center {
    transform: scale(1.2);
}

.flow-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 3px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.flow-step.center .flow-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
    color: white;
    animation: centerPulse 2s ease-in-out infinite;
}

.flow-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.flow-step:hover .flow-icon::before {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) rotate(45deg); opacity: 0; }
}

@keyframes centerPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    }
}

.flow-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.flow-step.center .flow-label {
    color: white;
    font-weight: 700;
}

.flow-connector {
    display: flex;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
}

.connector-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e2e8f0, #cbd5e1, #e2e8f0);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.connector-pulse {
    position: absolute;
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    border-radius: 2px;
    animation: flowPulse 2.5s ease-in-out infinite;
}

@keyframes flowPulse {
    0% { 
        transform: translateX(-30px);
        opacity: 0;
    }
    50% { 
        opacity: 1;
    }
    100% { 
        transform: translateX(70px);
        opacity: 0;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .partnership-flow {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .flow-connector {
        transform: rotate(90deg);
    }
    
    .connector-line {
        width: 40px;
    }
    
    .flow-step.center {
        transform: scale(1.1);
    }
}

/* Partnership Application Section */
.partnership-application-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.application-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.application-badge {
    display: block;
    width: fit-content;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 auto 2rem auto;
}

.application-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.application-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.step-item {
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.step-arrow {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: bold;
}

.application-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.partnership-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #718096;
    font-size: 0.9rem;
}

.trust-icon {
    font-size: 1.2rem;
}

/* Responsive Design for Partnership Page */
@media (max-width: 768px) {
    .partnership-hero h1 {
        font-size: 2.5rem;
    }
    
    .partnership-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        width: 50px;
        height: 1px;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partnership-showcase {
        grid-template-columns: 1fr;
    }
    
    .showcase-item.primary {
        grid-column: span 1;
    }
    
    .application-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .application-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* Comprehensive Guide Section Styles */
.comprehensive-guide-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.guide-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.guide-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.guide-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.guide-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.guide-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.guide-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #667eea;
}

.guide-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
}

.guide-subsection {
    margin-top: 2rem;
}

.guide-subsection h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.guide-subsection ul,
.guide-subsection ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.guide-subsection li {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0.75rem;
}

.guide-subsection li strong {
    color: #2d3748;
    font-weight: 600;
}

.parties-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.party-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.party-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transition: all 0.3s ease;
}

.party-card:nth-child(1)::before { background: #dc2626; }
.party-card:nth-child(2)::before { background: #2563eb; }
.party-card:nth-child(3)::before { background: #059669; }
.party-card:nth-child(4)::before { background: #d97706; }
.party-card:nth-child(5)::before { background: #7c3aed; }
.party-card:nth-child(6)::before { background: #db2777; }

.party-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

.party-card:hover::before {
    height: 4px;
}

.party-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.party-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.issues-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.issue-item {
    background: #ffffff;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a5568;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.issue-item:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.issue-item strong {
    color: #2d3748;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}


/* Topics Deep Dive Section Styles */
.topics-deep-dive-section {
    padding: 6rem 0;
    background: #f8fafc;
    color: #1a202c;
}

.deep-dive-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.deep-dive-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.topics-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.topic-detailed {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.topic-detailed:hover {
    transform: translateY(-3px);
    border-color: #cbd5e0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.topic-detailed h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
    color: #1a202c;
}

.topic-detailed p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.topic-points {
    margin-top: 2rem;
}

.topic-points h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.topic-points ul {
    padding-left: 1.5rem;
}

.topic-points li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .guide-content h2,
    .deep-dive-content h2 {
        font-size: 2rem;
    }
    
    .guide-section,
    .topic-detailed {
        padding: 2rem;
    }
    
    .guide-section h3,
    .topic-detailed h3 {
        font-size: 1.5rem;
    }
    
    .parties-grid {
        grid-template-columns: 1fr;
    }
    
    .party-card {
        padding: 1.5rem;
    }
}
