/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Particle Background */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333 !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 16px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.gradient-text {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    display: block;
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.trust-badges {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInRight 1s ease;
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-controls {
    display: flex;
    gap: 8px;
}

.control-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-btn.red { background: #ff5f57; }
.control-btn.yellow { background: #ffbd2e; }
.control-btn.green { background: #28ca42; }

.mockup-title {
    color: white;
    font-weight: 600;
}

.mockup-content {
    padding: 30px;
}

.protection-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: white;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #28ca42;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(40, 202, 66, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(40, 202, 66, 0); }
    100% { box-shadow: 0 0 0 0 rgba(40, 202, 66, 0); }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-count {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    font-family: 'JetBrains Mono', monospace;
}

.stat-type {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 15px;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: rgba(255, 255, 255, 0.7);
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.1);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.comparison-chart {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.comparison-chart h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chart-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    min-width: 120px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.bar-fill {
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 5px;
    width: 0;
    animation: fillBar 2s ease forwards;
}

.bar-fill.primary::after {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

@keyframes fillBar {
    to { width: var(--width); }
}

.bar-value {
    min-width: 40px;
    color: white;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 12px;
    font-size: 1.2rem;
    color: #333;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* Security Section */
.security {
    padding: 100px 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.security-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.security-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 20px;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.security-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.security-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Download Section */
.download {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.1);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-info h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.download-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.download-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.benefit i {
    color: #ffd700;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-download {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 20px 30px;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-download:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-main {
    font-weight: 600;
    font-size: 1rem;
}

.btn-sub {
    font-size: 0.8rem;
    opacity: 0.7;
}

.btn-source {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.btn-source:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.download-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.download-visual {
    position: relative;
}

.extension-preview {
    position: relative;
}

.browser-frame {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f57; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #28ca42; }

.address-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 15px;
    flex: 1;
    color: rgba(255, 255, 255, 0.8);
}

.browser-content {
    padding: 30px;
}

.blocked-ads {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.blocked-ad {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 8px;
    color: #ff6b6b;
    font-size: 0.9rem;
    animation: slideOut 2s ease forwards;
}

@keyframes slideOut {
    0% { opacity: 1; transform: translateX(0); }
    70% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(-100%); }
}

.clean-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content-line {
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    animation: fadeIn 3s ease forwards;
}

.content-line.short { width: 60%; }
.content-line.medium { width: 80%; }

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Comparison SEO Section */
.comparison-seo {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.1);
}

.seo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    color: white;
}

.comparison-table th {
    background: rgba(255, 215, 0, 0.2);
    padding: 15px;
    text-align: center;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.comparison-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table .check {
    color: #28ca42;
    font-weight: 600;
}

.comparison-table .cross {
    color: #ff6b6b;
    font-weight: 600;
}

.comparison-table .partial {
    color: #ffd700;
    font-weight: 600;
}

.seo-text {
    color: rgba(255, 255, 255, 0.9);
}

.seo-text h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.seo-text h4 {
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.seo-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.seo-text ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.seo-text li {
    margin: 1rem 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.seo-text li::before {
    content: '🚀';
    position: absolute;
    left: 0;
    top: 0;
}

.seo-text strong {
    color: #ffd700;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: #ffd700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffd700;
    color: #333;
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
    }
    
    .download-content {
        grid-template-columns: 1fr;
    }
    
    .download-benefits {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .seo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-table {
        padding: 1rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 15px 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features,
    .benefits,
    .security,
    .download,
    .faq {
        padding: 60px 0;
    }
}

/* Documentation Page Styles */
.documentation {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.doc-header {
    text-align: center;
    margin-bottom: 4rem;
}

.doc-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.doc-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.doc-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

.doc-sidebar {
    position: sticky;
    top: 120px;
}

.doc-nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.doc-nav h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.doc-nav ul {
    list-style: none;
}

.doc-nav li {
    margin-bottom: 0.5rem;
}

.doc-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.doc-nav a:hover {
    color: #ffd700;
}

.doc-main {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.doc-section {
    margin-bottom: 3rem;
}

.doc-section h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.doc-section h3 {
    color: #ffd700;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
}

.doc-section h4 {
    color: white;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
}

.doc-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.doc-section ul {
    color: rgba(255, 255, 255, 0.8);
    margin: 1rem 0;
    padding-left: 20px;
}

.doc-section li {
    margin: 0.5rem 0;
}

.doc-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    border-radius: 50%;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
}

.feature-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.feature-detail {
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
}

/* Help Center Styles */
.help-center {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.help-header {
    text-align: center;
    margin-bottom: 4rem;
}

.help-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.help-search {
    max-width: 500px;
    margin: 2rem auto 0;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 15px;
    color: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.search-box input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    font-size: 1rem;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 15px;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.category-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
}

.popular-articles {
    margin-bottom: 4rem;
}

.popular-articles h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.help-article {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.help-article:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.article-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 12px;
    font-size: 1.2rem;
    color: #333;
    flex-shrink: 0;
}

.article-content h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.article-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.article-views {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.quick-solutions {
    margin-bottom: 4rem;
}

.quick-solutions h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.solution-card h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.solution-card ol {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 20px;
}

.solution-card li {
    margin: 0.5rem 0;
}

.video-tutorials {
    margin-bottom: 4rem;
}

.video-tutorials h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    height: 150px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail i {
    font-size: 3rem;
    color: white;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-support {
    text-align: center;
}

.support-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.support-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.support-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.support-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-btn:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

/* Contact Page Styles */
.contact {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.form-container h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
}

.checkbox-label input:checked + .checkmark {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-color: #ffd700;
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    font-weight: bold;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.support-options h3,
.contact-details h3,
.business-contact h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.support-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.support-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 12px;
    font-size: 1.2rem;
    color: #333;
}

.support-content h4 {
    color: white;
    margin-bottom: 0.25rem;
}

.support-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-top: 4px;
}

.contact-text h4 {
    color: white;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.response-time {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-top: 0.25rem;
}

.business-email {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
}

.business-email i {
    color: #ffd700;
}

.business-email span {
    color: white;
    font-weight: 500;
}

.contact-faq {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
}

.contact-faq h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-faq > p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
}

.faq-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Bug Reports Styles */
.bug-reports {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.bug-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bug-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.bug-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.bug-form-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.form-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.bug-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.bug-guidelines {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guideline-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
}

.guideline-card h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.guideline-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.guideline-card ul {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 20px;
}

.guideline-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
}

.common-issues {
    margin-bottom: 4rem;
}

.common-issues h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.issue-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
}

.issue-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 12px;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.issue-card h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.issue-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.quick-fix {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

.quick-fix strong {
    color: #ffd700;
}

.quick-fix ol {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 20px;
    margin-top: 0.5rem;
}

.bug-status {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
}

.bug-status h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.status-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.status-badge.investigating {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.status-badge.fixed {
    background: rgba(40, 202, 66, 0.2);
    color: #28ca42;
}

.status-badge.in-progress {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
}

.status-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.status-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* About Page Styles */
.about {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.about-hero {
    text-align: center;
    margin-bottom: 5rem;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.mission-section {
    margin-bottom: 5rem;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.mission-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-item i {
    color: #ffd700;
    font-size: 1.5rem;
    margin-top: 4px;
}

.value-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: rgba(255, 255, 255, 0.8);
}

.mission-visual {
    display: flex;
    justify-content: center;
}

.stats-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.stats-showcase .stat-item {
    text-align: center;
}

.stats-showcase .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    display: block;
    font-family: 'JetBrains Mono', monospace;
}

.stats-showcase .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.technology-section {
    margin-bottom: 5rem;
}

.technology-section h2 {
    color: white;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.tech-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 20px;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.tech-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.story-section {
    margin-bottom: 5rem;
}

.story-content h2 {
    color: white;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-date {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
}

.timeline-content h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.team-section {
    margin-bottom: 5rem;
}

.team-section h2 {
    color: white;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.team-section > p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.member-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.team-member h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.team-member p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.vision-section {
    margin-bottom: 5rem;
}

.vision-content h2 {
    color: white;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.vision-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.future-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.goal-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.goal-item i {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.goal-item h4 {
    color: white;
    margin-bottom: 1rem;
}

.goal-item p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-cta {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
}

.contact-cta h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.cta-btn.accent {
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: #667eea;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Privacy Policy & Terms Styles */
.privacy-policy,
.terms-of-service,
.license {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.policy-header,
.terms-header,
.license-header {
    text-align: center;
    margin-bottom: 4rem;
}

.policy-header h1,
.terms-header h1,
.license-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 2rem;
}

.privacy-highlight,
.terms-summary {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-highlight i,
.terms-summary i {
    color: #ffd700;
    font-size: 1.5rem;
}

.privacy-highlight strong,
.terms-summary strong {
    color: white;
}

.license-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge.open-source {
    background: rgba(40, 202, 66, 0.2);
    color: #28ca42;
}

.badge.mit-license {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
}

.badge.free {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.policy-content,
.terms-content,
.license-content {
    max-width: 1000px;
    margin: 0 auto;
}

.policy-section,
.terms-section,
.license-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.policy-section h2,
.terms-section h2,
.license-section h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.policy-section h3,
.policy-section h4,
.terms-section h3,
.terms-section h4,
.license-section h3,
.license-section h4 {
    color: #ffd700;
    margin: 1.5rem 0 1rem 0;
}

.policy-section p,
.terms-section p,
.license-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-list,
.terms-list {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 20px;
    margin: 1rem 0;
}

.policy-list li,
.terms-list li {
    margin: 0.5rem 0;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.summary-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.summary-item i {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.summary-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.summary-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.protection-item,
.storage-item,
.compliance-item,
.responsibility-item,
.disclaimer-item,
.termination-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.protection-item h4,
.storage-item h4,
.compliance-item h4,
.responsibility-item h4,
.disclaimer-item h4,
.termination-item h4 {
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.transparency-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin: 1.5rem 0;
}

.transparency-item i {
    color: #ffd700;
    font-size: 1.5rem;
    margin-top: 4px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-method i {
    color: #ffd700;
    font-size: 1.2rem;
}

.contact-method strong {
    color: white;
    margin-right: 10px;
}

.contact-method span {
    color: rgba(255, 255, 255, 0.8);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.right-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.right-item i {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.right-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.right-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* License Specific Styles */
.license-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.benefit-item i {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.license-text-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.license-text {
    font-family: 'JetBrains Mono', monospace;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.9rem;
}

.source-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.source-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.source-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.source-link i {
    color: #ffd700;
    font-size: 1.5rem;
}

.link-content h4 {
    color: white;
    margin-bottom: 0.25rem;
}

.link-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.contribution-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contribution-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.contribution-item i {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contribution-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.contribution-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contribution-guidelines {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.contribution-guidelines h4 {
    color: white;
    margin-bottom: 1rem;
}

.contribution-guidelines ul {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 20px;
}

.third-party-licenses {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.license-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
}

.license-item h4 {
    color: white;
    margin-bottom: 1rem;
}

.license-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0;
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.compatibility-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.compatibility-item i {
    color: #28ca42;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.compatibility-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.compatibility-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.security-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.security-item i {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.security-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.security-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.build-instructions {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.build-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.build-step .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    border-radius: 50%;
    font-weight: 600;
    flex-shrink: 0;
}

.build-step .step-content h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.build-step code {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.agreement-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.agreement-summary h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
}