/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #0F0F23 0%, #1A1A2E 25%, #16213E  50%, #0F0F23 100%);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(ellipse at center, rgba(0, 223, 216, 0.1) 0%, transparent 70%);
}

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

.logo-container {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #00DFD8;
  background: #ffffff;
  box-shadow: 
    0 0 40px rgba(0, 223, 216, 0.3),
    0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
  box-shadow: 
    0 0 60px rgba(0, 223, 216, 0.5),
    0 25px 50px rgba(0, 0, 0, 0.3);
}

.logo-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: conic-gradient(from 0deg, #00DFD8, #FFD600, #00DFD8);
  border-radius: 50%;
  opacity: 0.7;
  animation: rotate 6s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00DFD8 0%, #FFD600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.title-main {
  font-weight: 800;
}

.title-sub {
  font-weight: 600;
  font-size: 0.8em;
  opacity: 0.9;
}

.hero-tagline {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #E5E7EB;
}

.highlight-primary {
  color: #FFD600;
  font-weight: 700;
}

.highlight-secondary {
  color: #FFD600;
  font-weight: 700;
}

.hero-description {
  font-size: 1.1rem;
  color: #9CA3AF;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.secure-text {
  color: #00DFD8;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary, .btn-secondary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #00DFD8 0%, #00B8B8 100%);
  color: #0F0F23;
  box-shadow: 0 8px 32px rgba(0, 223, 216, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 223, 216, 0.4);
  background: linear-gradient(135deg, #00F0E8 0%, #00DFD8 100%);
}

.btn-secondary {
  background: rgba(255, 214, 0, 0.1);
  color: #FFD600;
  border: 2px solid rgba(255, 214, 0, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 214, 0, 0.2);
  border-color: #FFD600;
  box-shadow: 0 8px 32px rgba(255, 214, 0, 0.2);
}

.official-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFD600 0%, #FFA500 100%);
  color: #0F0F23;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(255, 214, 0, 0.3);
}

.extension-status {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: #22c55e;
  font-weight: 600;
  font-size: 0.9rem;
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

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

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.float-element {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 223, 216, 0.2), rgba(255, 214, 0, 0.2));
  animation: float 4s ease-in-out infinite;
}

.float-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.float-2 {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

.float-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

/* Features Section */
.features {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 223, 216, 0.02) 50%, transparent 100%);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #9CA3AF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 223, 216, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

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

/* Quote Section */
.quote-section {
  padding: 4rem 2rem;
  background: rgba(0, 223, 216, 0.05);
}

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

.main-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: #E5E7EB;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.quote-author {
  color: #9CA3AF;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Get Started Section */
.get-started {
  padding: 6rem 2rem;
}

.get-started-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.get-started-text {
  font-size: 1.2rem;
  color: #9CA3AF;
  margin-bottom: 3rem;
}

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

.install-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.install-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 223, 216, 0.3);
}

.install-card.featured {
  border-color: rgba(255, 214, 0, 0.3);
  background: rgba(255, 214, 0, 0.02);
  position: relative;
}

.install-card.featured::before {
  content: "RECOMMENDED";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFD600 0%, #FFA500 100%);
  color: #0F0F23;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.install-card.featured:hover {
  border-color: rgba(255, 214, 0, 0.5);
  background: rgba(255, 214, 0, 0.05);
}

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

.install-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.install-card p {
  color: #9CA3AF;
  margin-bottom: 2rem;
}

.install-btn {
  background: linear-gradient(135deg, #00DFD8 0%, #00B8B8 100%);
  color: #0F0F23;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.install-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 223, 216, 0.3);
}

.install-btn.primary {
  background: linear-gradient(135deg, #FFD600 0%, #FFA500 100%);
  color: #0F0F23;
  font-weight: 700;
}

.install-btn.primary:hover {
  background: linear-gradient(135deg, #FFF000 0%, #FFB000 100%);
  box-shadow: 0 8px 25px rgba(255, 214, 0, 0.4);
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem 2rem;
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00DFD8;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9CA3AF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #00DFD8;
}

.footer-bottom {
  text-align: center;
  color: #6B7280;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer-note {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    padding: 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-tagline {
    font-size: 1.2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .install-options {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 80px;
    height: 80px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .features, .get-started {
    padding: 4rem 1rem;
  }
  
  .feature-card, .install-card {
    padding: 1.5rem;
  }
}
