@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root {
  --primary: #4f8cff;
  --secondary: #1e293b;
  --accent: #fbbf24;
  --bg: #f1f5f9;
  --card-bg: #fff;
  --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  --radius: 1.5rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #e0e7ff 0%, #f1f5f9 100%);
  color: var(--secondary);
  min-height: 100vh;
 
}

body.dark {
  background: linear-gradient(135deg, #181f2a 0%, #23272f 100%);
  color: #f3f4f6;
}
body.dark .navbar {
  background: #23272f;
  box-shadow: 0 2px 12px 0 rgba(20, 20, 30, 0.18);
}
body.dark .logo {
  color: #fbbf24;
}
body.dark .nav-links a {
  color: #f3f4f6;
}
body.dark .nav-links a.active {
  background: #4f8cff;
  color: #fff;
}
body.dark .nav-links a:hover {
  background: rgba(79, 140, 255, 0.18);
  color: #fbbf24;
}
body.dark .section-card {
  background: #23272f;
  box-shadow: 0 8px 32px 0 rgba(20, 20, 30, 0.18);
  color: #f3f4f6;
}
body.dark .section-card h2,
body.dark .section-card h3 {
  color: #fbbf24;
}
body.dark .section-card::before {
  background: linear-gradient(90deg, #fbbf24 0%, #4f8cff 100%);
}
body.dark .card {
  background: #181f2a;
  color: #f3f4f6;
}
body.dark .card .card-title {
  color: #fbbf24;
}
body.dark .card .card-version {
  color: #4f8cff;
}
body.dark .card .card-description {
  color: #e0e7ef;
}
body.dark .card .card-btn {
  background: #4f8cff;
  color: #fff;
}
body.dark .card .card-btn:hover {
  background: #fbbf24;
  color: #23272f;
}
body.dark .footer {
  background: #23272f;
  color: #f3f4f6;
}
body.dark .footer-links a {
  color: #fbbf24;
}
body.dark .floating-cta a {
  box-shadow: 0 4px 16px 0 rgba(20, 20, 30, 0.18);
}
body.dark .contact-support {
  background: #23272f;
  color: #f3f4f6;
}
body.dark .contact-support h3 {
  color: #fbbf24;
}
body.dark .contact-links a {
  color: #4f8cff;
}
.theme-toggle {
  background: #fff;
  color: #23272f;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  aspect-ratio: 1/1;
  font-size: 1.3rem;
  margin-left: 1.2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle:hover {
  background: #4f8cff;
  color: #fff;
}
body.dark .theme-toggle {
  background: #23272f;
  color: #fbbf24;
  box-shadow: 0 2px 8px 0 rgba(20, 20, 30, 0.18);
}
body, .navbar, .section-card, .card, .footer, .contact-support {
  transition: background 0.3s, color 0.3s;
}

/* Make navbar fixed at the top */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow);
  background: var(--card-bg);
}
/* Add padding to body or main content to prevent overlap */
body {
  padding-top: 80px; /* Adjust if your navbar is taller/shorter */
}
@media (max-width: 900px) {
  body {
    padding-top: 120px; /* For taller mobile navbars if needed */
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  margin-right: 2rem;
}
@media (max-width: 900px) {
  .logo {
    font-size: 1.2rem;
    margin-right: 1rem;
  }
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 500;
  transition: color 0.2s, background 0.2s, border-radius 0.2s;
  padding: 0.4rem 1rem;
  border-radius: 0.8rem;
}
.nav-links a:hover {
  color: var(--primary);
  background: rgba(79, 140, 255, 0.12);
  border-radius: 0.8rem;
}
.nav-links a.active {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border-radius: 0.8rem;
  box-shadow: 0 2px 8px rgba(79, 140, 255, 0.10);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: linear-gradient(120deg, #4f8cff 0%, #a5b4fc 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 1rem 2rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}
.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta-btn {
  background: var(--accent);
  color: var(--secondary);
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.cta-btn:hover {
  background: var(--primary);
  color: #fff;
}
main {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.tool-section {
  margin-bottom: 3rem;
  margin-top: 3rem;
}
.tool-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  text-shadow: 0 2px 8px rgba(79, 140, 255, 0.08);
  text-align: center;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem 0.8rem 0.8rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.4s, border 0.2s, background 0.3s;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: cardFadeIn 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  border: 2px solid transparent;
}
.card:hover {
  transform: translateY(-12px) scale(1.06);
  box-shadow: 0 20px 56px 0 rgba(79, 140, 255, 0.22);
  background: linear-gradient(120deg, #f1f5f9 60%, #e0e7ff 100%);
}
.card:hover .card-logo {
  transform: none;
  transition: none;
}
.card:hover .card-btn {
  background: var(--accent);
  color: var(--secondary);
  box-shadow: 0 2px 12px 0 rgba(251, 191, 36, 0.18);
}
@keyframes cardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--secondary);
}
.card .card-version {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 0.7rem;
}
.card .card-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 1.2rem;
  padding: 0.4rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s;
  text-decoration: none;
}
.card .card-btn:hover {
  background: var(--accent);
  color: var(--secondary);
}
.footer {
  background: var(--secondary);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: 2rem;
}
.footer-links {
  margin-top: 1rem;
}
.footer-links a {
  color: #fff;
  margin: 0 1rem;
  text-decoration: underline;
  font-size: 1rem;
}

/* Search bar styles */
.nav-search {
  margin-left: 1rem;
  display: flex;
  align-items: center;
}
.nav-search input[type="text"] {
  padding: 0.5rem 1rem;
  border-radius: 1.2rem;
  border: 1px solid #d1d5db;
  outline: none;
  font-size: 1rem;
  background: #f3f4f6;
  transition: border 0.2s;
  min-width: 180px;
}
.nav-search input[type="text"]:focus {
  border: 1.5px solid var(--primary);
}
@media (max-width: 900px) {
  .nav-search {
    margin-left: 1rem;
  }
  .nav-search input[type="text"] {
    min-width: 120px;
    font-size: 0.95rem;
  }
}
@media (max-width: 700px) {
  .nav-search {
    width: 100%;
    margin: 1rem 0 0 0;
    justify-content: center;
  }
  .nav-search input[type="text"] {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}
@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1rem;
    border-bottom: 1.5px solid #e0e7ef;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--card-bg);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: var(--shadow);
    z-index: 99;
    padding: 1.2rem 0 1.2rem 0;
    border-radius: 0 0 1.2rem 1.2rem;
    border-top: 1.5px solid #e0e7ef;
    align-items: center;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin-bottom: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .nav-links li:last-child {
    margin-bottom: 0;
  }
  .nav-links li:first-child {
    margin-top: 1rem;
  }
  .nav-links a {
    text-align: center;
    width: 100%;
    padding: 0.7rem 0;
    font-size: 1.1rem;
  }
  .nav-links a.active {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(79, 140, 255, 0.10);
    width: 90%;
    margin: 0.5rem auto;
    display: block;
    padding: 0.7rem 0;
    box-sizing: border-box;
  }
}
@media (min-width: 901px) {
  .nav-search {
    margin-left: 2rem;
  }
  .theme-toggle {
    margin-left: 1.2rem;
  }
}
@media (min-width: 901px) {
  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    box-shadow: none;
    width: auto;
  }
  .hamburger {
    display: none !important;
  }
}
@media (min-width: 901px) {
  .nav-links {
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0;
  }
}
@media (min-width: 901px) {
  .navbar {
    align-items: center;
  }
}
@media (min-width: 901px) {
  .navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1.5rem;
  }
}

.card-logo {
  width: 36px;
  height: 36px;
  margin-bottom: 0.6rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: #f3f4f6;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(31,38,135,0.08);
}
.card-description {
  font-size: 0.95rem;
  color: #555;
  text-align: center;
  margin-bottom: 0.7rem;
  min-height: 32px;
}
.server-select {
  width: 100%;
  padding: 0.35rem 0.8rem;
  border-radius: 1.2rem;
  border: 1px solid #d1d5db;
  background: #f3f4f6;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  outline: none;
  transition: border 0.2s;
}
.server-select:focus {
  border: 1.5px solid var(--primary);
}
.card .card-btn {
  margin-top: 0.2rem;
  padding: 0.4rem 1.1rem;
  font-size: 0.95rem;
} 

#oneplus-oppo-cards.card-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  #oneplus-oppo-cards.card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  #oneplus-oppo-cards.card-grid {
    grid-template-columns: 1fr;
  }
} 

.section-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
  padding: 2rem 1.5rem 2.5rem 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.section-card.section-visible {
  opacity: 1;
  transform: translateY(0);
}
.section-card::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, #4f8cff 0%, #fbbf24 100%);
  border-radius: 1.5rem 1.5rem 0 0;
}
@media (max-width: 700px) {
  .section-card {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    border-radius: 1rem;
  }
  .section-card::before {
    border-radius: 1rem 1rem 0 0;
    height: 5px;
  }
  .card {
    margin-bottom: 1.2rem;
    padding: 0.9rem 0.4rem 0.7rem 0.4rem;
  }
  .card-logo {
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
  }
  .card-title {
    font-size: 1rem;
  }
  .card-version {
    font-size: 0.9rem;
  }
  .card-description {
    font-size: 0.9rem;
    min-height: 24px;
    margin-bottom: 0.5rem;
  }
  .server-select {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
  }
  .card .card-btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    margin-top: 0.3rem;
  }
} 

.contact-form {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.08);
  padding: 1.5rem 1rem 1rem 1rem;
  margin: 0 auto 2rem auto;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact-form h3 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid #d1d5db;
  border-radius: 0.8rem;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  background: #f3f4f6;
  outline: none;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--primary);
}
.contact-form button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 1.2rem;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s;
}
.contact-form button:hover {
  background: var(--accent);
  color: var(--secondary);
}
@media (max-width: 700px) {
  .contact-form {
    max-width: 100%;
    padding: 1rem 0.3rem 0.7rem 0.3rem;
  }
  .contact-form h3 {
    font-size: 1rem;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
    padding: 0.5rem 0.7rem;
  }
  .contact-form button {
    font-size: 0.95rem;
    padding: 0.5rem 0.7rem;
  }
} 

.contact-support {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.08);
  padding: 1.2rem 1rem 1rem 1rem;
  margin: 0 auto 2rem auto;
  max-width: 400px;
  text-align: center;
}
.contact-support h3 {
  color: var(--primary);
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}
.contact-links a {
  display: inline-block;
  color: var(--secondary);
  font-size: 1.05rem;
  text-decoration: none;
  margin: 0.3rem 0;
  transition: color 0.2s;
}
.contact-links a:hover {
  color: var(--primary);
  text-decoration: underline;
}
@media (max-width: 700px) {
  .contact-support {
    max-width: 100%;
    padding: 1rem 0.3rem 0.7rem 0.3rem;
    font-size: 0.97rem;
  }
  .contact-support h3 {
    font-size: 1rem;
  }
  .contact-links a {
    font-size: 0.97rem;
  }
} 

.floating-cta {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 200;
}
.floating-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 2rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.15);
  color: var(--primary);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.18s;
  border: none;
  outline: none;
}
.floating-cta a:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}
.cta-whatsapp {
  background: #25d366;
  color: #fff;
}
.cta-btn-whatsapp:hover {
  background: #128c7e;
}
.cta-btn-telegram {
  background: #229ed9;
  color: #fff;
}
.cta-btn-telegram:hover {
  background: #176ca6;
}
@media (max-width: 700px) {
  .floating-cta {
    bottom: 1.1rem;
    right: 1.1rem;
    gap: 0.7rem;
  }
  .floating-cta a {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }
} 

.product-activation-section {
  max-width: 1200px;
  margin: 2.5rem auto 4rem auto;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
  padding: 2.5rem 2rem;
  position: relative;
}
.product-activation-section .section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
}
.product-activation-content {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}
.product-image img {
  width: 400px;
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.10);
  background: #f3f4f6;
}
.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.product-title {
  font-size: 1.7rem;
  color: #22c55e;
  font-weight: 700;
  margin-bottom: 1rem;
}
.product-desc {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.5rem;
  max-width: 420px;
}
.license-options {
  display: flex;
  gap: 1.2rem;
}
.license-box {
  background: linear-gradient(120deg, #4f8cff 0%, #22c55e 100%);
  color: #fff;
  border-radius: 0.8rem;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.10);
}
.license-price {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 0.3rem;
}
@media (max-width: 900px) {
  .product-activation-content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
  }
  .product-image,
  .product-info {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .product-info {
    text-align: center;
  }
}
body.dark .product-activation-section {
  background: #23272f;
}
body.dark .product-title {
  color: #22c55e;
}
body.dark .product-desc {
  color: #e0e7ef;
} 

.product-slider {
  position: relative;
}
.product-slide {
  display: none;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.5s, transform 0.5s;
}
.product-slide.active {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 900px) {
  .product-slide {
    flex-direction: column;
    gap: 1.5rem;
    min-height: unset;
    padding: 1rem 0;
  }
  .product-image img {
    width: 100%;
    max-width: 350px;
  }
  .product-info {
    align-items: center;
    text-align: center;
  }
  .product-desc {
    max-width: 100%;
  }
} 

.product-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.slider-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #cbd5e1;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slider-dot.active {
  background: var(--primary);
  transform: scale(1.25);
} 

body.dark .product-slider-dots .slider-dot {
  background: #374151;
}
body.dark .product-slider-dots .slider-dot.active {
  background: #fbbf24;
} 

.services-section {
  margin: 4rem 0 3rem 0;
}

.services-slider-row {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin: 2.5rem 0 2rem 0;
}
.service-slider {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.10);
  padding: 1.5rem 1rem 2.2rem 1rem;
  width: 340px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.service-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s;
}
.service-slide.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  animation: serviceFadeIn 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes serviceFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-img {
  width: 100%;
  max-width: 270px;
  border-radius: 0.8rem;
  box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.10);
  margin-bottom: 1.2rem;
}
.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.service-desc {
  font-size: 1rem;
  color: #444;
}
.service-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.7rem;
}
.service-slider-dots .slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #cbd5e1;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.service-slider-dots .slider-dot.active {
  background: var(--primary);
  transform: scale(1.18);
}
@media (max-width: 1100px) {
  .services-slider-row {
    gap: 1.2rem;
  }
  .service-slider {
    width: 290px;
    padding: 1rem 0.5rem 2rem 0.5rem;
  }
}
@media (max-width: 900px) {
  .services-slider-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .service-slider {
    width: 100%;
    max-width: 400px;
  }
}
body.dark .service-slider {
  background: #23272f;
}
body.dark .service-title {
  color: #fbbf24;
}
body.dark .service-desc {
  color: #e0e7ef;
}
body.dark .service-slider-dots .slider-dot {
  background: #374151;
}
body.dark .service-slider-dots .slider-dot.active {
  background: #fbbf24;
} 

.community-section {
  margin: 4rem 0 4rem 0;
}
.community-row {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.community-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.10);
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  width: 260px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  position: relative;
  margin: 0;
}
.community-card:hover {
  box-shadow: 0 8px 32px 0 rgba(79, 140, 255, 0.18);
  transform: translateY(-8px) scale(1.04);
  background: #f1f5f9;
}
.community-icon {
  font-size: 2.7rem;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.community-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.community-desc {
  font-size: 1rem;
  color: #444;
}
@media (max-width: 1100px) {
  .community-row {
    gap: 1.2rem;
  }
  .community-card {
    width: 210px;
    padding: 1.5rem 0.7rem 1.1rem 0.7rem;
  }
}
@media (max-width: 900px) {
  .community-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .community-card {
    width: 100%;
    max-width: 350px;
  }
}
body.dark .community-card {
  background: #23272f;
  color: #f3f4f6;
  box-shadow: 0 8px 32px 0 rgba(20, 20, 30, 0.22);
  border: 1.5px solid #374151;
  border-radius: 1.2rem;
}
body.dark .community-title {
  color: #fbbf24;
}
body.dark .community-desc {
  color: #e0e7ef;
} 

.community-card-container {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
  padding: 2.5rem 2rem;
  max-width: 1200px;
  margin: 3rem auto 3rem auto;
}
.community-card-container .section-title {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}
.community-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.community-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.10);
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  width: 250px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  position: relative;
  margin: 0;
}
@media (max-width: 1100px) {
  .community-row {
    gap: 1.2rem;
  }
  .community-card {
    width: 210px;
    padding: 1.5rem 0.7rem 1.1rem 0.7rem;
  }
}
@media (max-width: 900px) {
  .community-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .community-card {
    width: 100%;
    max-width: 350px;
  }
}
body.dark .community-card-container {
  background: #23272f;
} 

.services-card-container {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
  padding: 2.5rem 2rem;
  max-width: 1200px;
  margin: 3rem auto 3rem auto;
}
.services-card-container .section-title {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}
.service-slider {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 1.5rem 1rem 2.2rem 1rem;
}
body.dark .services-card-container {
  background: #23272f;
} 

.activation-contact-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.2rem;
  margin-bottom: 0.5rem;
}
.activation-contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 1.6rem;
  text-decoration: none;
  box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.10);
  transition: background 0.2s, color 0.2s, transform 0.18s;
  cursor: pointer;
}
.activation-contact-btn:hover {
  background: var(--accent);
  color: var(--secondary);
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 700px) {
  .activation-contact-row {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .activation-contact-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.7rem 1rem;
  }
}
body.dark .activation-contact-btn {
  background: #4f8cff;
  color: #fff;
}
body.dark .activation-contact-btn:hover {
  background: #fbbf24;
  color: #23272f;
} 

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

@media (max-width: 900px) {
  .nav-search, .theme-toggle {
    width: auto;
    margin: 0.5rem 0.2rem 0.5rem 0.2rem;
  }
} 

.navbar.force-mobile-nav .nav-links {
  display: none !important;
}
.navbar.force-mobile-nav .nav-links {
  top: 100%;
}
.navbar.force-mobile-nav .nav-links.active {
  display: flex !important;
  flex-direction: column;
  width: 100%;
  background: var(--card-bg);
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: var(--shadow);
  z-index: 99;
}
.navbar.force-mobile-nav .hamburger {
  display: flex !important;
}
.navbar.force-mobile-nav .nav-search {
  width: 100%;
  margin: 1rem 0 0 0;
  justify-content: center;
}
.navbar.force-mobile-nav .theme-toggle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  aspect-ratio: 1/1;
  margin: 0;
  align-self: unset;
} 

@media (max-width: 900px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
  }
  .theme-toggle {
    margin: 0;
  }
}
.navbar.force-mobile-nav {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
.navbar.force-mobile-nav .theme-toggle {
  margin: 0;
} 

.navbar .nav-search,
.navbar .theme-toggle {
  display: flex !important;
  align-items: center;
} 

@media (max-width: 1200px) {
  .main-content-container, .product-activation-section, .services-card-container, .community-card-container {
    max-width: 100%;
    padding: 0 0.5rem;
  }
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
  }
  .navbar {
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .section-card, .product-activation-section, .services-card-container, .community-card-container {
    padding: 1.5rem 1rem;
    border-radius: 0.7rem;
    margin: 1.5rem auto;
  }
  .product-activation-section {
    margin: 1.5rem auto 3rem auto;
  }
  .services-section {
    margin: 3rem 0 2rem 0;
  }
  .navbar {
    flex-direction: column;
    align-items: stretch;
  }
  .logo {
    margin-bottom: 0.5rem;
  }
} 

html, body {
  overflow-x: hidden !important;
} 

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 0.5rem 0.5rem;
  }
  .navbar-icons {
    justify-content: flex-end;
    margin-top: 0.5rem;
  }
  .logo {
    margin-bottom: 0.5rem;
    text-align: left;
  }
  .nav-search {
    width: 100%;
    margin: 0.5rem 0;
  }
} 

.card-grid {
  width: 100%;
  box-sizing: border-box;
}
.card {
  min-width: 0;
  word-break: break-word;
} 

body.dark .section-card,
body.dark .product-activation-section,
body.dark .services-card-container,
body.dark .community-card-container {
  background: #23272f;
  color: #f3f4f6;
}
body.dark .card {
  background: #181f2a;
  color: #f3f4f6;
}
body.dark .card .card-title,
body.dark .section-card h2,
body.dark .section-card h3 {
  color: #fbbf24;
}
body.dark .card .card-btn {
  background: #4f8cff;
  color: #fff;
}
body.dark .card .card-btn:hover {
  background: #fbbf24;
  color: #23272f;
} 

/* Make each active service slide look like a card */
.service-slide.active {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.10);
  padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  margin: 0.5rem 0;
  transition: box-shadow 0.2s, background 0.2s;
}

/* Dark mode for service cards */
body.dark .service-slide.active {
  background: #23272f;
  color: #f3f4f6;
  box-shadow: 0 4px 16px 0 rgba(20, 20, 30, 0.18);
} 

@media (max-width: 500px) {
  .product-activation-section {
    padding: 0.7rem 0.1rem;
    border-radius: 0.7rem;
  }
  .product-image img {
    max-width: 220px;
    width: 100%;
  }
  .product-title {
    font-size: 1.1rem;
  }
  .product-desc {
    font-size: 0.95rem;
  }
  .license-box {
    font-size: 0.95rem;
    padding: 0.7rem 0.7rem;
  }
} 

@media (max-width: 1742px) {
  .nav-links li {
    margin-bottom: 0.4rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .nav-links li:first-child {
    margin-top: 0.4rem;
  }
  .nav-links a {
    width: 100%;
    border-radius: 2rem;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    text-align: center;
    display: block;
    transition: background 0.2s, color 0.2s;
  }
  .nav-links a.active {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(79, 140, 255, 0.10);
  }
  .nav-links a:hover {
    background: rgba(79, 140, 255, 0.12);
    color: var(--primary);
  }
} 

@media (max-width: 1742px) {
  .nav-links a {
    padding: 0.5rem 0;
    font-size: 1.1rem;
  }
} 

@media (max-width: 1742px) {
  .navbar .nav-search,
  .navbar .theme-toggle {
    display: none !important;
  }
  .nav-search-li,
  .theme-toggle-li {
    display: block;
  }
}
@media (min-width: 1743px) {
  .nav-search-li,
  .theme-toggle-li {
    display: none;
  }
  .navbar .nav-search,
  .navbar .theme-toggle {
    display: flex !important;
  }
} 

@media (max-width: 1742px) {
  .nav-search-li {
    display: block;
  }
}
@media (min-width: 1743px) {
  .nav-search-li {
    display: none;
  }
} 

body.dark .nav-links {
  background: #23272f !important;
}

body.dark .nav-links a {
  color: #f3f4f6 !important;
}

body.dark .nav-links a.active {
  background: #4f8cff !important;
  color: #fff !important;
}

body.dark .nav-links a:hover {
  background: rgba(79, 140, 255, 0.18) !important;
  color: #fbbf24 !important;
} 

/* Login Overlay Styles */
.login-overlay, .forgot-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 41, 59, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.login-form, .forgot-form {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  padding: 2.2rem 2rem 1.5rem 2rem;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
}

.login-form h2, .forgot-form h2 {
  margin-bottom: 0.5rem;
  color: #2563eb;
  text-align: center;
}

.login-form label, .forgot-form label {
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.login-form input, .forgot-form input {
  border: 1px solid #d1d5db;
  border-radius: 0.7rem;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  background: #f3f4f6;
  outline: none;
  transition: border 0.2s;
  margin-bottom: 0.5rem;
}

.login-form input:focus, .forgot-form input:focus {
  border: 1.5px solid #2563eb;
}

.login-form button, .forgot-form button {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 1.2rem;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.10);
  transition: background 0.2s;
  margin-right: 0.5rem;
}

.login-form button:hover, .forgot-form button:hover {
  background: #fbbf24;
  color: #23272f;
}

.login-error, #forgot-error {
  color: #ef4444;
  font-size: 0.98rem;
  margin-top: 0.2rem;
  text-align: center;
}

#forgot-password-link {
  color: #2563eb;
  text-decoration: underline;
  font-size: 0.98rem;
  margin-left: 1rem;
  cursor: pointer;
}

#forgot-password-link:hover {
  color: #fbbf24;
}

@media (max-width: 500px) {
  .login-form, .forgot-form {
    min-width: 90vw;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
} 