/* Sezione Vetrina App */
.app-showcase {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 2rem;
    position: relative;
}

.app-main-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.app-main-info .app-logo-large {
    width: 150px;
    height: 150px;
    border-radius: 28px;
    object-fit: cover;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-main-info h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(to right, #ffffff, #d1d5db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-main-info p {
    font-size: 1.2rem;
    color: #a1a1aa;
    max-width: 600px;
}

/* Pulsanti Download Store (Stile Ufficiale) */
.store-buttons {
    display: flex;
    gap: 1.5rem; /* Aumentato lo spazio tra i pulsanti */
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Stile base comune per entrambi i pulsanti */
.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem; /* Spazio tra icona e blocco di testo */
    background: linear-gradient(to right, #2C6BF6, #5234DB);
    color: #ffffff;
    padding: 0.75rem 1.75rem; /* Padding per un look più robusto */
    border-radius: 12px; /* Stondatura più morbida */
    border: none; /* Bordo sottile per integrarsi */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    width: 235px;
}

.store-button:hover {
    background-color: #111111;
    transform: translateY(-3px); /* Effetto hover più evidente */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.store-button .store-icon {
    font-size: 2.2rem; /* Dimensione icona aumentata */
    line-height: 1; 
}

.store-button .text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Testo allineato a sinistra */
    text-align: left;
}

.store-button .action-text {
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1;
    color: #e5e5e5;
    text-transform: uppercase; /* Testo in maiuscolo per Google Play */
}

.store-button .store-name {
    font-size: 1.4rem; /* Nome dello store più grande */
    font-weight: 600;
    line-height: 1.2;
}

/* Specifico per App Store per rispettare la dicitura originale */
.store-button.app-store .action-text {
    text-transform: none; /* Rimuove il maiuscolo */
}

/* Sezione Statistiche App */
.app-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    max-width: 800px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    width: 220px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(44, 107, 246, 0.3);
}

.stat-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
    stroke-width: 1.5;
    color: #a1a1aa;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-value-2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 1.1rem;
    color: #ffffff;
}

.stat-label {
    font-size: 1rem;
    color: #a1a1aa;
}

/* Animazioni */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 1s ease-out;
}