:root {
  --primary: #00c4ff;
  --accent: #00ffb3;
  --tertiary: #ff005e;
  --secondary: #5f6368;
  --dark: #202124;
  --light: #ffffff;
  --card-bg: #f8f9fa;
  --card-hover: #f1f3f4;
  --text-primary: #202124;
  --text-secondary: #5f6368;
  --text-tertiary: #9aa0a6;
  --border-light: #dadce0;
  --glass: rgba(255, 255, 255, 0.1);
  --gradient: linear-gradient(135deg, #ffffff, #f8f9fa, #f1f3f4);
  --gradient-accent: linear-gradient(135deg, var(--primary), var(--accent));
  --gradient-tertiary: linear-gradient(135deg, var(--tertiary), #ff2b77);
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Logo Styles */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-iframe {
  border: none;
  width: 95px;
  height: 95px;
  transform: scale(0.55);
  transform-origin: center;
  background: transparent;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  margin-right: -20px;
  margin-left: -30px;
  margin-top: -25px;
  margin-bottom: -25px;
}

.logo-text {
  font-size: 30px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #00c4ff, #ff005e, #00ffb3);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: gradientShift 5s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: var(--light);
  backdrop-filter: blur(15px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
}

.navbar.scrolled {
  padding: 0.8rem 2rem;
  background: var(--light);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a i {
  font-size: 0.9rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 80%;
}

.nav-links a:hover {
  color: var(--primary);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--light);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  padding: 0.5rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-hover);
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: rgba(0, 255, 179, 0.1);
  color: var(--primary);
  padding-left: 2rem;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
}

/* Header */
header {
  text-align: center;
  padding: 150px 2rem 80px;
  position: relative;
  overflow: hidden;
  background: var(--gradient);
}

.typewriter {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--tertiary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.tagline {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.cta-button i {
  font-size: 1.1rem;
}

.cta-button.primary {
  background: var(--gradient-accent);
  color: var(--dark);
  box-shadow: 0 5px 20px rgba(0, 196, 255, 0.3);
}

.cta-button.secondary {
  background: transparent;
  color: var(--tertiary);
  border: 2px solid var(--tertiary);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 196, 255, 0.4);
}

.cta-button.primary:hover {
  background: var(--tertiary);
  color: white;
}

.cta-button.secondary:hover {
  background: var(--tertiary);
  color: white;
  border-color: var(--tertiary);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--text-primary);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-icon {
  color: var(--primary);
  font-size: 2.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-card a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.feature-card a:hover {
  color: var(--tertiary);
  text-decoration: underline;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-light);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
  position: relative;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.blog-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-tertiary);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.blog-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.blog-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-card a:hover {
  color: var(--tertiary);
  gap: 12px;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Categories Grid */
.categories-section {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 4rem 2rem;
  border-radius: 20px;
  margin: 4rem auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.category-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.category-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.category-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.category-card a:hover {
  color: var(--tertiary);
  gap: 12px;
}

/* Platforms */
.platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.platform-card {
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-light);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
}

.platform-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.platform-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.platform-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.platform-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.platform-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 2rem;
  background: var(--gradient-accent);
  color: var(--dark);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.platform-card a:hover {
  background: var(--tertiary);
  color: white;
  transform: translateY(-2px);
  gap: 12px;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 4rem 2rem;
  border-radius: 20px;
  margin: 4rem auto;
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 196, 255, 0.05);
}

.faq-question h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
}

.faq-toggle {
  color: var(--primary);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 196, 255, 0.1);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--primary);
  color: white;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Trust Section */
.trust-section {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 4rem 2rem;
  border-radius: 20px;
  margin: 4rem auto;
}

.trust-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.trust-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.trust-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.trust-badges span:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.5rem;
}

.footer-logo-iframe {
  border: none;
  width: 95px;
  height: 95px;
  transform: scale(0.6);
  transform-origin: center;
  background: transparent;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  margin-right: -15px;
  margin-left: -25px;
}

.footer-logo-text {
  font-size: 28px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #00c4ff, #ff005e, #00ffb3);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: gradientShift 5s linear infinite;
}

/* Footer */
footer {
  background: var(--card-bg);
  padding: 4rem 2rem 2rem;
  margin-top: 5rem;
  border-top: 1px solid var(--border-light);
}

.footer-brand {
  text-align: center;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.sky-network {
  text-align: center;
  margin: 3rem 0;
}

.sky-network h4 {
  color: var(--tertiary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.network-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.network-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  background: rgba(0, 196, 255, 0.1);
}

.network-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-note {
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.footer-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.footer-nav a:hover {
  color: var(--primary);
  background: rgba(0, 196, 255, 0.1);
}

.footer-extra {
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--light);
  border-radius: 50%;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.social-icons a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 196, 255, 0.4);
}

.newsletter {
  text-align: center;
  max-width: 400px;
}

.newsletter p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--border-light);
  border-radius: 25px;
  background: var(--light);
  color: var(--text-primary);
  outline: none;
  transition: all 0.3s ease;
}

.newsletter input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 196, 255, 0.2);
}

.newsletter button {
  padding: 0.8rem 1.5rem;
  background: var(--gradient-accent);
  color: var(--dark);
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter button:hover {
  background: var(--tertiary);
  color: white;
  transform: translateY(-2px);
}

.copyright {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.copyright p {
  color: var(--text-tertiary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}


/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--light);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid var(--border-light);
    box-shadow: var(--shadow-hover);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    padding: 0.5rem 0 0 1rem;
    box-shadow: none;
  }
  
  .logo-iframe {
    width: 80px;
    height: 80px;
    transform: scale(0.5);
    margin-right: -15px;
    margin-left: -20px;
    margin-top: -20px;
    margin-bottom: -20px;
  }
  
  .logo-text {
    font-size: 24px;
  }
  
  .footer-logo-iframe {
    width: 80px;
    height: 80px;
    transform: scale(0.5);
    margin-right: -10px;
    margin-left: -15px;
  }
  
  .footer-logo-text {
    font-size: 22px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .features-grid,
  .blog-grid,
  .categories-grid,
  .platforms {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 1rem;
    margin: 3rem auto;
  }
  
  .categories-section,
  .faq-section,
  .trust-section {
    padding: 3rem 1rem;
    border-radius: 15px;
  }
  

  .section-title {
    flex-direction: column;
    gap: 5px;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .network-links {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-nav {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-extra {
    align-items: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  header {
    padding: 120px 1rem 60px;
  }
  
  .typewriter {
    font-size: 1.8rem;
  }
  
  .tagline {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .logo-iframe {
    width: 70px;
    height: 70px;
    transform: scale(0.45);
    margin-right: -12px;
    margin-left: -15px;
    margin-top: -15px;
    margin-bottom: -15px;
  }
  
  .logo-text {
    font-size: 20px;
  }
  
  .footer-logo-iframe {
    width: 70px;
    height: 70px;
    transform: scale(0.45);
    margin-right: -8px;
    margin-left: -12px;
  }
  
  .footer-logo-text {
    font-size: 18px;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .blog-card,
  .feature-card,
  .category-card,
  .platform-card {
    padding: 1.5rem;
  }
}