 /* App 2 Specific Styles */
.app-header {
    padding: 1rem 0;
}

.app-icon-large {
    font-size: 8rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.app-icon-medium {
    font-size: 4rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.app-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.app-download-card {
    position: sticky;
    top: 100px;
}

.app-download-card .card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
}

.app-download-card .card-content {
    padding: 2rem;
}

.app-download-card .title {
    color: white;
    margin-bottom: 0.5rem;
}

.app-download-card .subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.app-download-card .button.is-success {
    background: linear-gradient(45deg, #00d4aa, #00b894);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 212, 170, 0.4);
    transition: all 0.3s ease;
}

.app-download-card .button.is-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.6);
}

.download-stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Screenshot Gallery */
.screenshot-gallery {
    margin-top: 2rem;
}

.screenshot-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-image {
    transform: scale(1.05);
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-overlay .material-icons {
    color: white;
    font-size: 3rem;
}

/* Content Card */
.content-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.content-card .title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: rgba(103, 126, 234, 0.05);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.feature-list li:hover {
    background: rgba(103, 126, 234, 0.1);
}

.feature-list li .material-icons {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.feature-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-box .title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Sidebar Card */
.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.sidebar-card .title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.app-info-grid {
    display: grid;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(103, 126, 234, 0.05);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.info-item:hover {
    background: rgba(103, 126, 234, 0.1);
}

.info-item .material-icons {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.info-item strong {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item p {
    margin: 0.2rem 0 0 0;
    color: var(--text-color);
}

.security-list {
    list-style: none;
    padding: 0;
}

.security-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    background: rgba(0, 209, 178, 0.05);
    border-radius: 6px;
}

.security-list li .material-icons {
    color: #00d1b2;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table .table {
    margin: 0;
}

.comparison-table .table th {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 1.5rem 1rem;
    border: none;
}

.comparison-table .table td {
    text-align: center;
    padding: 1.5rem 1rem;
    border: none;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table .table tbody tr:hover {
    background: rgba(103, 126, 234, 0.05);
}

/* Related Apps */
.related-app-card {
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.related-app-card .media-left {
    margin-right: 1rem;
}

.related-app-card .title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.related-app-card .subtitle {
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-icon-large {
        font-size: 6rem;
    }
    
    .app-icon-medium {
        font-size: 3rem;
    }
    
    .app-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .app-download-card {
        position: static;
        margin-top: 2rem;
    }
    
    .sidebar-card {
        position: static;
        margin-top: 2rem;
    }
    
    .screenshot-image {
        height: 300px;
    }
    
    .feature-box {
        margin-bottom: 1rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .comparison-table .table th,
    .comparison-table .table td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .app-icon-large {
        font-size: 4rem;
    }
    
    .app-icon-medium {
        font-size: 2.5rem;
    }
    
    .screenshot-image {
        height: 250px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .lightbox-close {
        top: -30px;
        right: -30px;
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.feature-box {
    animation: slideInUp 0.6s ease forwards;
}

.feature-box:nth-child(1) { animation-delay: 0.1s; }
.feature-box:nth-child(2) { animation-delay: 0.2s; }
.feature-box:nth-child(3) { animation-delay: 0.3s; }
.feature-box:nth-child(4) { animation-delay: 0.4s; }

/* Print Styles */
@media print {
    .navbar,
    .hero,
    .lightbox-modal {
        display: none !important;
    }
    
    .content-card,
    .sidebar-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .comparison-table .table th {
        background: #f5f5f5 !important;
        color: #333 !important;
    }
}