/* Modern styling for remaining sections */

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(10, 10, 15, 0.3);
}

.about-header {
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.section-label {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.highlight-gradient {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: #a1a1aa;
    line-height: 1.7;
}

.visual-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-stat {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.visual-stat:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateX(5px);
}

.big-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.3rem;
}

.stat-text {
    font-size: 0.9rem;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Story Section */
.story-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.story-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.story-text p {
    font-size: 1.05rem;
    color: #a1a1aa;
    line-height: 1.7;
}

.problem-list, .solution-list {
    background: rgba(139, 92, 246, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
}

.problem-item, .solution-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.problem-item:last-child, .solution-item:last-child {
    margin-bottom: 0;
}

.problem-icon {
    font-size: 1.2rem;
}

.solution-icon {
    font-size: 1.2rem;
}

/* Team Section */
.team-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.member-card {
    background: rgba(139, 92, 246, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.member-card:hover {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateY(-5px);
}

.member-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    position: relative;
}

.online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: #10b981;
    border-radius: 50%;
    border: 3px solid rgba(10, 10, 15, 0.9);
}

.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.member-role {
    font-size: 0.9rem;
    color: #8b5cf6;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.member-bio {
    font-size: 0.95rem;
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.member-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.contact-label {
    color: #71717a;
}

.contact-value {
    color: #d4d4d8;
    font-weight: 600;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: rgba(10, 10, 15, 0.5);
    overflow: hidden;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3rem;
}

.reviews-scroll-container {
    position: relative;
    overflow: hidden;
}

.reviews-scroll {
    display: flex;
    gap: 1.5rem;
    animation: scroll 60s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    background: rgba(139, 92, 246, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 350px;
    flex-shrink: 0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.username {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.user-id {
    font-size: 0.75rem;
    color: #71717a;
}

.review-stars {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.review-card p {
    color: #d4d4d8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.review-card span {
    color: #71717a;
    font-size: 0.85rem;
}

/* Security Section */
.security-section {
    padding: 100px 0;
    background: rgba(10, 10, 15, 0.3);
}

.security-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #a1a1aa;
    margin-bottom: 3rem;
}

.security-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.security-card {
    background: rgba(139, 92, 246, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateY(-5px);
}

.security-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.security-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}

.security-card p {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.security-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: rgba(10, 10, 15, 0.5);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: 1.1rem;
    color: #a1a1aa;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    background: rgba(139, 92, 246, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.25);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #8b5cf6;
    font-weight: 300;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-answer p {
    color: #a1a1aa;
    line-height: 1.7;
}

/* Download Section */
.download-section {
    padding: 100px 0;
    background: rgba(10, 10, 15, 0.3);
}

.download-header {
    text-align: center;
    margin-bottom: 3rem;
}

.download-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.download-header p {
    font-size: 1.1rem;
    color: #a1a1aa;
    margin-bottom: 1.5rem;
}

.version-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.version-badge, .version-date, .version-size {
    font-size: 0.85rem;
    color: #a1a1aa;
}

.version-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 600;
}

.download-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.download-main-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.3);
    margin-bottom: 1.5rem;
}

.download-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.download-alternatives {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.alt-download {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.15);
    color: #d4d4d8;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.alt-download:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.25);
}

.download-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.system-requirements, .download-stats {
    background: rgba(139, 92, 246, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
}

.system-requirements h3, .download-stats h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.system-requirements ul {
    list-style: none;
}

.system-requirements li {
    color: #a1a1aa;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.stat-row span:first-child {
    color: #a1a1aa;
}

.stat-value {
    color: #fff;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: rgba(10, 10, 15, 0.5);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-methods {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: rgba(139, 92, 246, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateY(-5px);
}

.contact-card.primary {
    border-color: rgba(139, 92, 246, 0.3);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}

.contact-card p {
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.contact-btn:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.contact-stats {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.contact-stats span {
    display: block;
    color: #71717a;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-header {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .download-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-card {
        flex-direction: column;
        text-align: center;
    }
}
