
@import url('<?php echo $domain_set; ?>fonts.css');

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

:root {
    --primary: #2F80ED;          /* Main brand blue */
    --primary-dark: #2B73D2;     /* Darker blue for hover states */
    --accent: #00C2FF;           /* Secondary blue for accents */
    --text: #2D3748;             /* Softer black for main text */
    --text-light: #718096;       /* Lighter grey for secondary text */
    --bg: #F0F7FF;               /* Light blue background */
    --header-bg: rgba(255, 255, 255, 0.98);
    --card-bg: #FFFFFF;
    --border-color: rgba(47, 128, 237, 0.15); /* Slightly more visible border */
    --section-bg: #F8FAFC;       /* Slightly different section background */
    --gradient-1: #EBF5FF;       /* Lighter gradient start */
    --gradient-2: #E1F0FF;       /* Lighter gradient end */
    --h1-size: 1.875rem;
    --h2-size: 1.375rem;
    --h3-size: 0.9375rem;
    --body-size: 0.8125rem;
    --small-size: 0.75rem;
    --section-padding: 3.5rem;

    /* Font families */
    --font-primary: 'Plus Jakarta Sans', sans-serif;  /* For headings */
    --font-secondary: 'Inter', sans-serif;           /* For body text */
    
    /* Font weights */
    --font-regular: 500;
    --font-medium: 600;
    --font-semibold: 700;
    --font-bold: 800;
}

body {
    font-family: var(--font-secondary);
    font-weight: var(--font-regular);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.5;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(47, 128, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 128, 237, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: -1;
}

.main-header {
    background: linear-gradient(135deg, var(--gradient-1) 0%, var(--gradient-2) 100%);
    position: relative;
}

/* Update header overlay */
.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(47, 128, 237, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 128, 237, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 7%;
    background: #FFFFFF;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.nav-container a {
    text-decoration: none;
}
.footer-content a {
    text-decoration: none;
}

.logo svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.logo span {
    font-size: 1.2rem;
    font-weight: var(--font-bold);
    color: var(--text);
    font-family: var(--font-primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}
.versions-list a {
    text-decoration: none;
}
.nav-item {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    transition: all 0.3s ease;
    opacity: 0.8;
    padding: 0.4rem 0;
}

.nav-item:hover {
    opacity: 1;
    color: var(--primary);
}

.hero-section {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    padding: 3rem 7%;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--card-bg);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(47, 128, 237, 0.05);
}

.hero-content h1 {
    font-size: var(--h1-size);
    font-weight: var(--font-bold);
    line-height: 1.3;
    margin-bottom: 0.8rem;
    background: linear-gradient(45deg, var(--text), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: var(--body-size);
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 85%;
    line-height: 1.5;
    font-family: var(--font-secondary);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 0.75rem 1.5rem;
    margin: 0 auto;
    max-width: 800px;
    border: 1px solid rgba(47, 128, 237, 0.1);
    box-shadow: 0 4px 20px rgba(47, 128, 237, 0.08);
}

.hero-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
}

.hero-stats .stat-divider {
    width: 1px;
    height: 24px;
    background: rgba(47, 128, 237, 0.15);
}

.hero-stats .stat-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-size: 1rem;
    font-weight: var(--font-bold);
    font-family: var(--font-primary);
}

.hero-stats .stat-rating svg {
    color: #FFB800;
}

.hero-stats .stat-number {
    font-size: 1rem;
    font-weight: var(--font-bold);
    color: var(--text);
    font-family: var(--font-primary);
}

.hero-stats .stat-label {
    color: var(--text-light);
    font-size: 0.8rem;
    font-family: var(--font-secondary);
}

.hero-stats .stat-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00B074;
    font-weight: var(--font-medium);
    font-family: var(--font-primary);
    font-size: 0.9rem;
}

.hero-stats .stat-verified svg {
    color: #00B074;
}

@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-stats {
        order: 3;
        padding: 0.5rem 0.75rem;
        width: 90%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .hero-stats .stat-item {
        padding: 0.25rem 0.5rem;
    }

    .hero-stats .stat-rating,
    .hero-stats .stat-number {
        font-size: 0.9rem;
    }

    .hero-stats .stat-label {
        font-size: 0.75rem;
    }

    .hero-stats .stat-verified {
        font-size: 0.85rem;
    }

    .hero-stats .stat-divider {
        display: none;
    }
}

.cta-group {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2.5rem;
}

.download-btn.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: var(--font-semibold);
    padding: 1rem 2rem;
    min-width: 220px;
    justify-content: center;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(47, 128, 237, 0.2);
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
}

.download-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.download-btn.primary:hover::before {
    left: 100%;
}

.download-btn.primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.download-btn.secondary {
    display: none;
}

.hero-image {
    position: relative;
    margin: auto auto;
}

.phone-mockup {
    position: relative;
    width: 100%;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(0, 230, 230, 0.3));
    max-width: 175px;
}

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

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
}

/* Add security badge */
.security-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 4rem 7%;
        text-align: left;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .subtitle {
        max-width: 100%;
    }

    .cta-group {
        justify-content: center;
    }

    .phone-mockup {
        max-width: 80%;
        margin: 0 auto;
    }

    .tab-container {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        width: 30px;
        height: 30px;
        position: relative;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10;
    }

    .mobile-menu-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--primary);
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn span:nth-child(1) { top: 6px; }
    .mobile-menu-btn span:nth-child(2) { top: 14px; }
    .mobile-menu-btn span:nth-child(3) { top: 22px; }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 14px;
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 14px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        width: 100%;
        background: #fff;
        padding: 0;
        flex-direction: column;
        align-items: center;
        display: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .hero-content h1 {
        font-size: var(--h1-size);
    }

    .subtitle {
        font-size: calc(var(--body-size) * 1.1);
    }

    .cta-group {
        flex-direction: column;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .tab-buttons {
        padding: 0.8rem;
    }

    .tab-btn {
        min-width: auto;
        padding: 0.8rem 1rem;
    }

    .nav-container {
        padding: 0.6rem 7%;
    }

    .logo svg {
        width: 22px;
        height: 22px;
    }

    .logo span {
        font-size: 1.1rem;
    }
}

/* Add these new styles */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 7%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Information Section Styles */
.info-section {
    padding: 2rem 0;
    background: var(--bg);
}

.info-header {
    margin-bottom: 1.5rem;
}

.info-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-title svg {
    color: var(--primary);
}

.info-title h2 {
    font-size: 1.25rem;
    font-weight: var(--font-semibold);
    color: var(--text);
    font-family: var(--font-primary);
}

.info-details {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td {
    padding: 0.75rem 1.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.info-table td:last-child {
    border-right: none;
}

.info-table span {
    display: block;
}

.info-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
}

.info-value {
    color: var(--text);
    font-size: 1rem;
    font-weight: var(--font-medium);
    font-family: var(--font-primary);
}

@media (max-width: 768px) {
    .info-details {
        padding: 1rem;
    }

    .info-table {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .info-table tr {
        display: contents;
    }

    .info-table td {
        padding: 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .info-table td:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .info-table {
        grid-template-columns: 1fr;
    }

    .info-table td {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .info-table td:last-child {
        border-bottom: none;
    }
}

/* Info Section Styles */
.versions-section,
.features-section,
.install-section {
    padding: 4rem 0;
    background: var(--bg);
    position: relative;
}

.info-wrapper,
.versions-wrapper {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(47, 128, 237, 0.08);
}

.info-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.info-tag {
    display: inline-block;
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background: var(--bg);
    color: var(--text-light);
}

.info-tag.latest {
    background: var(--primary);
    color: white;
}

/* Version section specific styles */
.about-section,
.features-section,
.screenshots-section {
    margin-top: 2rem;
}

/* Updated Installation Section Styles */
.install-section {
    padding: 4rem 0;
    background: var(--bg);
}

.install-content {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(47, 128, 237, 0.08);
}

.steps-container {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.5rem;
}

.step-item {
    background: var(--gradient-1);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(47, 128, 237, 0.1);
}

.step-item:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, var(--gradient-1), #FFFFFF);
    box-shadow: 0 8px 20px rgba(47, 128, 237, 0.08);
}

.step-icon {
    background: #FFFFFF;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(47, 128, 237, 0.08);
}

.step-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: var(--font-semibold);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.step-content p {
    color: var(--text-light);
    font-size: var(--body-size);
    line-height: 1.6;
    font-family: var(--font-secondary);
}

@media (max-width: 768px) {
    .install-content {
        padding: 1.5rem;
    }

    .steps-container {
        margin-top: 2rem;
        gap: 1rem;
    }

    .step-item {
        padding: 1.25rem;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-icon svg {
        width: 20px;
        height: 20px;
    }

    .step-content h3 {
        font-size: 1rem;
    }
}
.cta-group a {
    text-decoration: none;
}
/* Update FAQ Styles */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(47, 128, 237, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.faq-item.active {
    box-shadow: 0 4px 15px rgba(47, 128, 237, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text);
    font-size: var(--body-size);
    font-weight: var(--font-semibold);
    transition: all 0.3s ease;
    gap: 1rem;
    font-family: var(--font-primary);
}

.faq-question span {
    flex: 1;
    text-align: left;
}

.faq-icon {
    color: var(--text-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-top: 4px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: var(--body-size);
    text-align: left;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 0 0.5rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: var(--body-size);
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1rem;
    }
}

/* Add these new styles */

.content-title {
    font-size: var(--h2-size);
    font-weight: var(--font-bold);
    color: var(--text);
    font-family: var(--font-primary);
    margin-bottom: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .content-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.content-text {
    color: var(--text-light);
    font-size: var(--body-size);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.feature-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--gradient-1) 100%);
    border-radius: 16px;
    padding: 1.8rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: var(--h3-size);
    font-weight: var(--font-semibold);
    margin-bottom: 0.6rem;
    color: var(--text);
    font-family: var(--font-primary);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: var(--body-size);
    font-family: var(--font-secondary);
    font-weight: var(--font-regular);
}

@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem;
    }
}

/* Screenshot Gallery Styles */
.screenshots-section {
    padding: 5rem 0;
    background: var(--bg);
    position: relative;
}

.gallery-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 50px;
}

.screenshots-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;  /* Hide scrollbar Firefox */
    -ms-overflow-style: none;  /* Hide scrollbar IE and Edge */
}

.screenshots-grid::-webkit-scrollbar {
    display: none;  /* Hide scrollbar Chrome, Safari and Opera */
}

.screenshot-image {
    flex: 0 0 auto;
    width: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(47, 128, 237, 0.1);
}

.screenshot-image img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(47, 128, 237, 0.15);
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-nav:hover {
    background: var(--primary);
    color: white;
}

.gallery-nav.prev {
    left: 0;
}

.gallery-nav.next {
    right: 0;
}

@media (max-width: 768px) {
    .gallery-container {
        padding: 1rem 30px;
    }

    .gallery-nav {
        width: 36px;
        height: 36px;
    }

    .gallery-nav.prev {
        left: -5px;
    }

    .gallery-nav.next {
        right: -5px;
    }

    .screenshot-image {
        width: 240px;
    }
}

/* Dots navigation */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .gallery-container {
        padding: 0 15px;
    }

    .screenshot-image {
        flex: 0 0 200px;
    }

    .gallery-nav {
        width: 35px;
        height: 35px;
    }

    .gallery-dots {
        gap: 0.35rem;
        margin-top: 1.5rem;
    }

    .dot {
        width: 6px;
        height: 6px;
    }
}

/* Hide navigation on touch devices */
@media (hover: none) {
    .gallery-nav {
        display: none !important;
    }
}

/* Add hover effect for better interactivity */
.screenshot-card {
    cursor: pointer;
}

.screenshot-card:hover .screenshot-content h3 {
    background: linear-gradient(to right, var(--primary), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Add some depth to sections */
.screenshots-section,
.features-section,
.faq-section {
    position: relative;
}

.screenshots-section::before,
.features-section::before,
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--gradient-1) 0%, var(--section-bg) 100%);
    opacity: 0.5;
    pointer-events: none;
}

/* Update FAQ headings */
.faq-item h3 {
    font-size: var(--h3-size);
    font-weight: var(--font-semibold);
    margin-bottom: 0.8rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-primary);
}

/* Add icon before FAQ headings */
.faq-item h3::before {
    content: '?';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: var(--font-semibold);
}

/* Update step headings */
.step-content h3 {
    font-size: var(--h3-size);
    font-weight: var(--font-semibold);
    margin-bottom: 0.4rem;
    color: var(--text);
    font-family: var(--font-primary);
}

/* Update gallery styles */
.gallery-container {
    position: relative;
    margin-top: 3rem;
    padding: 0 50px;
    overflow: hidden;
}

.screenshots-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
}

/* Update mobile styles */
@media (max-width: 768px) {
    .gallery-container {
        padding: 0 15px;
    }

    .screenshot-image {
        flex: 0 0 200px;
    }

    .gallery-nav {
        width: 35px;
        height: 35px;
    }

    .gallery-dots {
        gap: 0.35rem;
        margin-top: 1.5rem;
    }

    .dot {
        width: 6px;
        height: 6px;
    }
}

/* Hide dots when not needed */
.gallery-dots:empty {
    display: none;
}

/* Simplified Footer Styles */
.main-footer {
    background: #FFFFFF;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-col {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary);
}

.footer-logo span {
    font-size: 1rem;
    font-weight: var(--font-bold);
    color: var(--text);
    font-family: var(--font-primary);
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: var(--small-size);
    transition: color 0.3s ease;
    font-family: var(--font-secondary);
    font-weight: var(--font-regular);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--text-light);
    font-size: var(--small-size);
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .footer-col {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Update section spacing */
.about-section,
.screenshots-section,
.faq-section,
.conclusion-section,
.install-steps-section {
    padding: 3.5rem 0;
    position: relative;
    background: var(--section-bg);
}

/* Update section content spacing */
.install-content,
.conclusion-content {
    margin-top: 1rem;
}

/* Update text styles for consistency */
.content-text {
    color: var(--text-light);
    font-size: var(--body-size);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Update feature card headings */
.feature-card h3 {
    font-size: var(--h3-size);
    font-weight: var(--font-semibold);
    margin-bottom: 0.6rem;
    color: var(--text);
    font-family: var(--font-primary);
}

/* Update step headings */
.step-content h3 {
    font-size: var(--h3-size);
    font-weight: var(--font-semibold);
    margin-bottom: 0.4rem;
    color: var(--text);
    font-family: var(--font-primary);
}

/* Update FAQ question text */
.faq-question span {
    font-size: var(--body-size);
    font-weight: var(--font-medium);
    color: var(--text);
    font-family: var(--font-secondary);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .content-title {
        font-size: calc(var(--h2-size) * 0.9);
        margin-bottom: 1.5rem;
    }

    .about-section,
    .screenshots-section,
    .faq-section,
    .conclusion-section,
    .install-steps-section {
        padding: 2.5rem 0;
    }

    :root {
        --h1-size: 1.5rem;
        --h2-size: 1.25rem;
        --h3-size: 0.875rem;
        --body-size: 0.75rem;
        --small-size: 0.6875rem;
    }

    .hero-content h1 {
        font-size: var(--h1-size);
    }

    .subtitle {
        font-size: calc(var(--body-size) * 1.1);
    }

    .faq-question {
        font-size: var(--body-size);
        padding: 1rem;
    }
}

.info-section {
    padding: 4rem 0;
    background: var(--bg);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(47, 128, 237, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(47, 128, 237, 0.08);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-header svg {
    color: var(--primary);
    opacity: 0.9;
}

.info-header span {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: var(--font-medium);
    font-family: var(--font-primary);
}

.info-main {
    font-size: 1.75rem;
    font-weight: var(--font-bold);
    color: var(--text);
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    background: var(--gradient-1);
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: var(--font-medium);
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    width: fit-content;
}

.info-badge.latest {
    background: var(--primary);
    color: white;
}

@media (max-width: 1200px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 640px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-main {
        font-size: 1.5rem;
    }

    .info-badge {
        padding: 0.4rem 0.9rem;
    }
}

/* Stats Section Styles */
.stats-section {
    padding: 1.5rem 0;
    background: var(--bg);
}

.stats-bar {
    background: #FFFFFF;
    border-radius: 100px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(47, 128, 237, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
}

.stat-divider {
    width: 1px;
    height: 24px;
    background: rgba(47, 128, 237, 0.15);
}

.stat-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: var(--font-bold);
    font-family: var(--font-primary);
}

.stat-rating svg {
    color: #FFB800;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: var(--font-bold);
    color: var(--text);
    font-family: var(--font-primary);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-family: var(--font-secondary);
}

.stat-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00B074;
    font-weight: var(--font-medium);
    font-family: var(--font-primary);
}

.stat-verified svg {
    color: #00B074;
}

@media (max-width: 768px) {
    .stats-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        border-radius: 16px;
        padding: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 0.75rem;
    }

    .stat-number,
    .stat-rating {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* Package Section Styles */
.package-section {
    padding: 2rem 0;
    background: var(--bg);
}

.package-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0.75rem;
    margin: -0.75rem;
}

.package-cell {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 1.25rem;
    vertical-align: top;
    box-shadow: 0 2px 8px rgba(47, 128, 237, 0.08);
    width: 25%;
}

.package-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 0.75rem;
    font-family: var(--font-secondary);
}

.package-label svg {
    color: var(--primary);
    flex-shrink: 0;
}

.package-value {
    color: var(--text);
    font-size: 13px;
    font-weight: var(--font-medium);
    font-family: var(--font-primary);
    line-height: 1.4;
}

.show-more-btn {
    display: none;
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    background: var(--gradient-1);
    border: none;
    border-radius: 12px;
    color: var(--primary);
    font-weight: var(--font-medium);
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 768px) {
    .package-table,
    .package-table tbody,
    .package-table tr {
        display: block;
    }

    .package-cell {
        display: none; /* Hide all cells by default */
        width: 100%;
        margin-bottom: 0.5rem;
    }

    /* Show only the first three specific cells */
    .package-cell[data-key="package-name"],
    .package-cell[data-key="license"],
    .package-cell[data-key="downloads"] {
        display: block;
    }

    /* Show other cells when expanded */
    .package-cell.show {
        display: block;
    }

    .show-more-btn {
        display: block;
    }
}

/* Versions Section Styles */
.versions-section {
    padding: 4rem 0;
    background: var(--bg);
}

.versions-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
}

.version-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(47, 128, 237, 0.08);
    transition: all 0.3s ease;
}

.version-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(47, 128, 237, 0.12);
}

.version-name {
    font-size: 14px;
    font-weight: var(--font-semibold);
    color: var(--text);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.version-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-light);
    font-size: 13px;
}

.version-download {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-1);
    color: var(--primary);
    border: none;
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    font-weight: var(--font-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    font-size: 0.8125rem;
}

.version-download:hover {
    background: var(--primary);
    color: white;
}

.all-versions-btn {
    display: block;
    text-align: center;
    color: var(--primary);
    text-decoration: none;
    padding: 1rem;
    margin-top: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-weight: var(--font-medium);
    transition: all 0.3s ease;
    background: #FFFFFF;
    font-family: var(--font-primary);
    font-size: 14px;
}

.all-versions-btn:hover {
    background: var(--gradient-1);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .version-item {
        padding: 1.25rem 1.5rem;
        flex-direction: row;
        gap: 1.5rem;
        text-align: left;
    }

    .version-meta {
        justify-content: flex-start;
    }

    .version-download {
        width: auto;
        justify-content: center;
        white-space: nowrap;
    }

    .version-info {
        flex: 1;
    }

    :root {
        --h1-size: 1.5rem;
        --h2-size: 1.25rem;
        --h3-size: 0.875rem;
        --body-size: 0.75rem;
        --small-size: 0.6875rem;
    }

    .version-name {
        font-size: 0.875rem;
    }

    .version-meta {
        font-size: 0.75rem;
    }

    .version-download {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .version-item {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .version-meta {
        justify-content: center;
    }

    .version-download {
        width: 100%;
    }
}

