* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* Header */
header {
    background: linear-gradient(135deg, #66c0ea 0%, #0408fc 75%);
    color: white;
    padding: 0px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo {
    height: 50px;
    width: auto;
}
.brand-name {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Navigation Tabs */
nav {
    display: flex;
    gap: 0;
}
nav a {
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}
nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom-color: #00d4ff;
}
nav a.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-bottom-color: #e9ec0b;
    color: #eff309;
}

/* Sidebar */
nav.sidebar {
    width: 250px;
    background: #e9ecef;
    padding: 2rem 1rem;
    overflow-y: auto;
    border-right: 1px solid #dee2e6;
    position: sticky;
    top: 0;
    height: calc(100vh - 136px);
    transition: transform 0.3s ease;
}
nav.sidebar ul { list-style: none; }
nav.sidebar li { margin-bottom: 0.5rem; }
nav.sidebar li a {
    display: block;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.2s;
    color: #333;
}
nav.sidebar li a.active { background: #0d6efd; color: #ffffff; }
nav.sidebar li ul {
    list-style: none;
    padding-left: 1rem;
    display: none;
}
nav.sidebar li ul li a { font-size: 0.9rem; }
/* Main Container */
.container {
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 20px;
}
a { text-decoration: none; color: #0366d6; }
/* Hero Section */
.hero {
    background: white;
    border-radius: 10px;
    padding: 20px 40px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    z-index: 1;
    position: relative;
}
.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #66c0ea 0%, #0408fc 125%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
#help-center-title {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #0d6efd !important;
    background-clip: unset !important;
    color: #0d6efd; /* fallback */
}
.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}
.hero p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}
.cta-button {
  padding: 10px 30px;
  margin: 0 10px;
  background-color: #000000;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  line-height: 0.6;
  transition: transform 0.2s ease;
}
.cta-button:hover {
  transform: scale(1.05);
}
.btn-small {
  font-size: 12px;
  font-weight: 400;
  display: block;
  margin: 0px;
  padding-bottom: 0px;
}
.btn-large {
  font-size: 20px;
  font-weight: 400;
  display: block;
  margin: 0px;
  padding-top: 0px;
}
/* Store Badges */
.store-badge {
  width: 160px;
  max-width: 80%;      /* scales on smaller screens */
  height: auto;
  transition: transform 0.2s ease;
  vertical-align: top;
}
.store-badge:hover {
  transform: scale(1.05);
}
main {
    flex: 1;
    padding: 32px;
    scroll-behavior: smooth;
}
main h2 { margin: 10px 0px; color: #0d6efd;}
main h3 { margin-top: 12px; margin-bottom: 8px; color: #1d78ff; }
main p { margin-bottom: 10px; }
main code { background: #e9ecef; padding: 2px 5px; border-radius: 3px; font-family: monospace; }
main pre { background: #e9ecef; padding: 1rem; border-radius: 5px; overflow-x: auto; }
#getting-started,
#faq,
#troubleshooting,
#contact-support {
    scroll-margin-top: 60px; /* matches your header height */
}
/* Responsive */
@media (max-width: 768px) {
    .container { flex-direction: column; }
    .hamburger { display: flex; }
    nav.sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        transform: translateX(-100%);
        z-index: 2000;
    }
    nav.sidebar.open { transform: translateX(0); }
    main { padding: 1rem; }
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
}
.steps-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}
.step-tile {
    padding: 0px;
    flex: 1 1 200px; /* min-width 200px, grows to fill row */
    border: 1px solid #0d6dfd2d;
}
.step-tile:hover {
    background: #5b9cff1c !important;
}
.step-tile h3 {
    margin-top: 5px;
    margin-bottom: 10px;
    color: #0d6efd;
    font-size: 20px;
    text-align: center;
}
.step-tile p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    padding: 0px 20px
}
.section-divider {
    border: none;
    height: 1px;
    background-color: #0d6efd;
    margin: 10px 0px 5px 0px;
}
/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}
.feature-card {
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #0731eb;
}
.feature-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0731eb;
}
.feature-card p {
    color: #666;
    line-height: 1.6;
}
/* Linked Cards */
.link-card {
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #0731eb;
}
.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid #0731eb;
    border-left: 4px solid #0731eb;
}
.link-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0731eb;
}
.link-card p {
    color: #666;
    line-height: 1.6;
}
/* Price Cards */
.pricing-card {
  position: relative;
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  border-left: 4px solid #0731eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0731eb;
}
.price-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #5acf5e;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(-10px);
  z-index: 10;
}
.pricing-card:hover .price-popup {
  opacity: 1;
  transform: translateY(0);
}
/* Help Cards */
.help-cards {
    padding: 40px 20px;
    background: #f8f9fa;
}
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.help-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.help-card h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #0d6efd;
}
.help-card p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5;
}
.card-link {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}
.card-link:hover {
    text-decoration: underline;
}
/* Tab Content */
.tab-content {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: none;
}
.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.tab-content h2 {
    color: #0731eb;
    margin-bottom: 5px;
    font-size: 32px;
}
.tab-content p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 10px;
}

/* maintenance info */
body.maintenance {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  color: #e5e7eb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
}
.overlay {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.04) 10px,
    transparent 10px,
    transparent 20px
  );
  pointer-events: none;
}
.content {
  position: relative;
  z-index: 9999;
  text-align: center;
  padding: 2rem 3rem;
  background: rgba(15, 23, 42, 0.85);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.content h1 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}
.content p {
  margin: 0.25rem 0;
  opacity: 0.85;
}

/* Footer */
footer {
    background: #535353;
    color: #ccc;
    text-align: center;
    padding: 10px 10px;
    margin-top: auto;
}
footer p {
    margin: 5px;
    color: #ccc
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        padding: 10px 15px;
        font-size: 14px;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .features {
        grid-template-columns: 1fr;
    }
}
