    .apps-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #d8d8d8 0%, #667eea 100%);
    }
    .apps-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .apps-header {
        text-align: center;
        margin-bottom: 40px;
    }
    .apps-header h1 {
        color: #fff;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        text-shadow: 0 2px 5px rgba(0,0,0,.1);
    }
    .apps-subtitle {
        color: rgba(255,255,255,0.8);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }
    .apps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-bottom: 40px;
    }
    .app-card {
        background: #fff;
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 5px 20px rgba(0,0,0,.1);
        transition: transform .3s ease;
        position: relative;
    }
    .app-card:hover {
        transform: translateY(-5px);
    }
    .status {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 5px 12px;
        border-radius: 12px;
        font-size: .8rem;
        font-weight: 600;
        text-transform: uppercase;
        color: #fff;
    }
    .status-updated {
        background: #4ecdc4;
    }
    .status-premium {
        background: #f093fb;
    }
    .status-new {
        background: #4facfe;
    }
    .status-fast {
        background: #43e97b;
    }
    .app-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        margin-bottom: 20px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        background: #f8f9fa;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }
    .app-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }
    .app-card h2 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #1a1a2e;
        margin-bottom: 10px;
    }
    .app-desc {
        color: #666;
        margin-bottom: 15px;
        font-size: .95rem;
    }
    .app-meta {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        color: #888;
        font-size: .85rem;
        justify-content: center;
    }
    .download-btn {
        width: 100%;
        background: #667eea;
        color: #fff;
        border: none;
        padding: 12px 20px;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background .3s ease;
        text-decoration: none;
        display: inline-block;
        text-align: center;
    }
    .download-btn:hover {
        background: #5a67d8;
        color: #fff;
    }
    .apps-stats {
        background: #fff;
        border-radius: 15px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0,0,0,.1);
        margin-top: 40px;
    }
    .apps-stats h2 {
        color: #1a1a2e;
        margin-bottom: 20px;
    }
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 25px;
        margin-top: 20px;
    }
    .stat-number {
        font-size: 2rem;
        font-weight: 700;
        color: #667eea;
        display: block;
    }
    .stat-label {
        color: #666;
        font-size: .9rem;
        margin-top: 5px;
    }
    @media (max-width: 768px) {
        .apps-header h1 {
            font-size: 2rem;
        }
        .apps-grid {
            grid-template-columns: 1fr;
        }
        .app-card {
            padding: 20px;
        }
    }