/* --- Responsive Adjustments --- */

/* Tablet & Mobile Devices */
@media (max-width: 992px) {
    .app-header-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .app-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .app-stats {
        justify-content: center;
        width: 100%;
    }

    .app-main-icon {
        width: 120px;
        height: 120px;
        border-radius: 24px;
    }

    .app-info h1 {
        font-size: 32px;
    }
}

/* Mobile Small Devices */
@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }

    .main-header .logo span {
        font-size: 18px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .app-header-section {
        padding: 24px 0;
        gap: 20px;
    }

    .app-stats {
        gap: 10px;
    }

    .stat-item {
        flex: 1;
    }

    .stat-value {
        font-size: 13px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-install, .btn-share {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .screenshot-track img {
        height: 300px;
    }

    .contact-grid {
        display: flex;
        flex-direction: column;
    }

    .info-table td {
        padding: 8px 4px;
        font-size: 14px;
    }

    /* Adjusting the download card for mobile */
    .download-card {
        padding: 20px 15px;
    }

    .security-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Extra Small */
@media (max-width: 360px) {
    .app-info h1 {
        font-size: 28px;
    }
    
    .nav-logo {
        width: 32px;
        height: 32px;
    }
}