/* App page styles */

.app-hero {
    background: linear-gradient(135deg, rgba(240, 193, 89, 0.1), rgba(255, 105, 0, 0.1));
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin: 40px 0;
}

.app-hero h1 {
    font-size: 3em;
    color: #f0c159;
    margin-bottom: 20px;
    font-weight: bold;
}

.app-hero-intro {
    font-size: 1.3em;
    color: #abb8c3;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.download-btn {
    background: linear-gradient(135deg, #f0c159, #ff6900);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
    transition: all 0.3s;
    min-width: 200px;
    justify-content: center;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(240, 193, 89, 0.4);
}

.download-btn.ios {
    background: linear-gradient(135deg, #000, #333);
}

.download-btn.ios:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.download-btn-icon {
    font-size: 1.5em;
}

.download-btn-label {
    font-size: 1.2em;
}

.app-bonus-box {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    animation: pulse 2s infinite;
}

.app-bonus-box p {
    color: #ff4444;
    font-weight: bold;
    margin: 0;
    font-size: 1.1em;
}

.app-main-image {
    text-align: center;
    margin: 40px 0;
}

.app-main-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-height: 500px;
    transition: all 0.3s ease;
}

.app-main-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(240, 193, 89, 0.2);
}

.app-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
    background: rgba(240, 193, 89, 0.05);
    padding: 40px;
    border-radius: 15px;
}

.app-stat {
    text-align: center;
}

.app-stat .number {
    font-size: 2.5em;
    font-weight: bold;
    color: #f0c159;
    display: block;
    margin-bottom: 10px;
}

.app-stat .label {
    color: #abb8c3;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}

.app-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.app-gallery-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.app-gallery-item:hover {
    transform: translateY(-5px);
}

.app-gallery img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.app-gallery img:hover {
    box-shadow: 0 15px 35px rgba(240, 193, 89, 0.3);
}

.app-gallery-item h4 {
    color: #f0c159;
    margin-top: 15px;
    font-size: 1.2em;
}

.app-gallery-item p {
    color: #abb8c3;
    margin-top: 10px;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-highlight {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 193, 89, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    border-color: #f0c159;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.feature-highlight .icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.feature-highlight h3 {
    color: #f0c159;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.feature-highlight p {
    color: #abb8c3;
    line-height: 1.6;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    margin: 60px 0;
}

.comparison-table h3 {
    color: #f0c159;
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    text-align: center;
}

.comparison-header {
    font-weight: bold;
    color: #f0c159;
    padding: 15px;
    background: rgba(240, 193, 89, 0.1);
    border-radius: 8px;
}

.comparison-row {
    padding: 15px;
    color: #abb8c3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checkmark {
    color: #00d084;
    font-size: 1.2em;
}

.crossmark {
    color: #ff4444;
    font-size: 1.2em;
}

.download-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.download-guide-android {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
    border-radius: 15px;
    padding: 30px;
}

.download-guide-ios {
    background: rgba(33, 150, 243, 0.1);
    border: 2px solid #2196F3;
    border-radius: 15px;
    padding: 30px;
}

.download-guide h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.download-guide-android h3 {
    color: #4CAF50;
}

.download-guide-ios h3 {
    color: #2196F3;
}

.download-guide ol {
    color: #abb8c3;
    line-height: 2;
    padding-left: 20px;
}

.download-guide-action {
    text-align: center;
    margin-top: 20px;
}

.download-guide-action .btn {
    padding: 15px 30px;
}

.app-badges {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.app-badge {
    text-align: center;
}

.app-badge div {
    font-size: 2em;
    margin-bottom: 5px;
}

.app-badge p {
    color: #abb8c3;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .app-hero h1 {
        font-size: 2em;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .app-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .app-main-image img {
        max-height: 300px;
    }

    .download-guide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .download-guide {
        grid-template-columns: 1fr;
    }
}
