/* Color Variables */
        :root {
            --neo-primary: #36db85;
            --neo-primary-light: #6c5ce7;
            --neo-secondary: #00c35e;
            --neo-dark: #2d3436;
            --neo-light: #f5f6fa;
            --neo-gray: #636e72;
            --neo-verified: #1DA1F2;
            --neo-border: #a29bfe;
        }

/* Base Styles */
        body {
            transition: background-color 0.3s ease, color 0.3s ease;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

body.dark {
            background-color: #1a202c;
            color: #f3f4f6;
        }

/* Container Styles */
        .safe-download-container {
            max-width: 800px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

/* App Card Styles */
        .neo-app-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 2rem;
        }

.neo-app-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }

.neo-app-icon {
            width: 100px;
            height: 100px;
            border-radius: 18px;
            object-fit: contain;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

.neo-app-meta h1 {
            font-size: 1.8rem;
            color: var(--neo-dark);
            margin-bottom: 0.5rem;
        }

.neo-app-tags {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

.neo-tag {
            padding: 0.35rem 0.75rem;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 600;
        }

.neo-tag.version {
            background: var(--neo-light);
            color: var(--neo-primary-light);
            border: 1px solid var(--neo-border);
        }

.neo-tag.premium {
            background: linear-gradient(135deg, #fdcb6e, #e17055);
            color: white;
        }

.neo-tag.verified {
            background: var(--neo-secondary);
            color: var(--neo-light);
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

/* Safety Info */
        .safety-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: #4CAF50;
        }

/* Progress Bar */
        .neo-progress-container {
            width: 100%;
            margin: 1.5rem 0;
            display: none;
        }

.neo-progress-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

.neo-progress-title {
            font-size: 1rem;
            color: var(--neo-dark);
            font-weight: 600;
        }

.neo-progress-percent {
            font-size: 1rem;
            color: var(--neo-primary);
            font-weight: 700;
        }

.neo-progress-bar {
            width: 100%;
            height: 15px;
            background-color: #f0f0f0;
            border-radius: 50px;
            overflow: hidden;
        }

.neo-progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--neo-primary), var(--neo-secondary));
            border-radius: 50px;
            transition: width 0.3s ease-out;
        }

/* Button Styles */
        .neo-download-actions {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }

.neo-download-btn, .neo-process-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            color: white;
            padding: 1rem;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

.neo-process-btn {
            background: linear-gradient(135deg, #6c5ce7, #00cec9);
            font-size: 1rem;
        }

.neo-download-btn {
            background: linear-gradient(135deg, var(--neo-primary), var(--neo-secondary));
        }

.neo-download-btn:hover, .neo-process-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgb(92 108 231 / 21%);
        }

.neo-cancel-btn {
            padding: 1rem 1.5rem;
            background: #e0e6fd;
            color: #405f8f;
            border: none;
            border-radius: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

.neo-cancel-btn:hover {
            background: #e0e0e0;
        }

/* Safety Card */
        .neo-safety-card {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 1.5rem;
            border-left: 4px solid var(--neo-secondary);
        }

.neo-safety-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

.neo-safety-icon {
            color: var(--neo-secondary);
            font-size: 1.25rem;
        }

.neo-safety-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--neo-dark);
        }

.neo-safety-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

.neo-safety-item {
            margin-bottom: 0.75rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

.neo-safety-item i {
            color: var(--neo-secondary);
            margin-top: 2px;
        }

.neo-safety-text {
            color: var(--neo-gray);
            font-size: 0.95rem;
        }

/* App Details Section */
        .modern-download-container {
            max-width: 800px;
            margin: 2rem auto;
            padding: 2rem;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

.section-title {
            font-size: 1.4rem;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }

.section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #36db85, #00c35e);
            border-radius: 3px;
        }

.detail-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 2rem;
        }

.detail-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: #f9f9f9;
            padding: 15px;
            border-radius: 10px;
        }

.detail-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e8f5e9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #36db85;
            font-size: 1.1rem;
        }

.detail-content {
            display: flex;
            flex-direction: column;
        }

.detail-label {
            font-size: 0.85rem;
            color: #888;
        }

.detail-value {
            font-size: 1rem;
            font-weight: 500;
            color: #1a1a1a;
            margin-top: 1px;
        }

/* FAQ Section */
        .faq-card {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 2rem;
            margin-top: 2rem;
        }

.faq-title {
            font-size: 1.5rem;
            color: var(--neo-dark);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            padding-bottom: 10px;
        }

.faq-title .icon {
            display: inline-flex;
            height: 2.2rem;
            width: 2.2rem;
            align-items: center;
            justify-content: center;
            border-radius: 50px;
            background-image: linear-gradient(to bottom right, #16d300, #14c300);
            color: white;
            font-size: 18px;
            box-shadow: 0 10px 15px -3px #16d300, 0 4px 6px -4px #16d300;
        }

.faq-items-container {
            max-width: 56rem;
            margin: 32px auto 0;
        }

.faq-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

.faq-list-item {
            margin-bottom: 16px;
            padding: 19px 24px;
            background-color: #dcfce7;
            border-radius: 12px;
        }

.faq-question-btn {
            display: flex;
            width: 100%;
            text-align: left;
            background-color: transparent;
            border: none;
            padding: 0;
            cursor: pointer;
        }

.faq-question-content {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

.faq-question-text {
            font-size: 16px;
            font-weight: 500;
            font-family: Poppins, sans-serif;
            color: #1a1a1a;
            margin: 0;
        }

.faq-arrow-icon {
            margin-left: 16px;
            color: #00c35e;
            font-size: 14px;
        }

.faq-list-item.active .faq-arrow-icon i {
            transform: rotate(180deg);
            transition: transform 0.3s ease;
        }

.faq-answer {
            margin-top: 20px;
            line-height: 1.625;
            font-family: Poppins, sans-serif;
            color: #374151;
            font-size: 16px;
        }

.hidden {
            display: none;
        }

/* Download Help Text */
        #downloadHelpText {
            display: none;
            text-align: center;
            margin-top: 10px;
            color: var(--neo-dark);
            font-size: 0.9rem;
            animation: pulse 2s infinite;
        }

@keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }

/* Dark Mode Overrides */
        body.dark .neo-app-card,
        body.dark .modern-download-container,
        body.dark .faq-card {
            background-color: #2d3748;
        }

body.dark .neo-app-meta h1,
        body.dark .neo-safety-title,
        body.dark .faq-title,
        body.dark #downloadHelpText,
        body.dark .neo-safety-text,
        body.dark .section-title,
        body.dark .detail-value,
        body.dark .faq-answer,
        body.dark .faq-question-text {
            color: #f3f4f6;
        }

body.dark .detail-item {
            background-color: #4a5568;
        }

body.dark .detail-label {
            color: #cbd5e0;
        }

body.dark .detail-icon {
            background-color: #2d3748;
        }

body.dark .neo-safety-card {
            background-color: #4a5568;
            border-left-color: #36db85;
        }

body.dark .faq-list-item {
            background-color: #4a5568;
        }

/* Responsive Styles */
        @media (max-width: 768px) {
            .neo-app-header {
                flex-direction: column;
                text-align: center;
            }
            
            .neo-app-tags {
                justify-content: center;
            }
            
            .neo-download-actions {
                flex-direction: column;
            }

            .detail-grid {
                grid-template-columns: 1fr;
            }
        }

@media (max-width: 480px) {
            .neo-app-card {
                padding: 1.5rem;
            }
            
            .modern-download-container {
                padding: 1rem;
            }
            
            .faq-card {
                padding: 1.5rem;
            }
        }
