/* App Page Specific Styles */

/* Why Choose Our App Section */
.why-choose-app {
    text-align: center;
    padding: 4rem 0;
}

.why-choose-app h2 {
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.app-feature {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.app-feature:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.app-feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.app-feature h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.app-feature p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.app-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* How to Download Section */
.how-to-download {
    text-align: center;
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.02);
}

.how-to-download h2 {
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.download-step {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.download-step:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.step-icon {
    margin-bottom: 1.5rem;
}

.step-icon i {
    font-size: 4rem;
    color: var(--primary-color);
}

.download-step h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.download-step ol {
    text-align: left;
    color: var(--text-secondary);
    padding-left: 1.5rem;
}

.download-step ol li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.5;
}

.download-tip {
    background-color: rgba(23, 178, 33, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-tip i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.download-tip p {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
}

/* App Comparison Section */
.app-comparison {
    text-align: center;
    padding: 4rem 0;
}

.app-comparison h2 {
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.comparison-table {
    margin: 3rem 0;
    overflow-x: auto;
}

.comparison-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Casino on App Section */
.casino-on-app {
    text-align: center;
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.02);
}

.casino-on-app h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.casino-on-app > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.casino-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.casino-feature {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.casino-feature:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.casino-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.casino-feature h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.casino-feature p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.casino-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Sports on App Section */
.sports-on-app {
    text-align: center;
    padding: 4rem 0;
}

.sports-on-app h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.sports-on-app > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.sports-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.sport-feature {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.sport-feature:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.sport-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sport-feature h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.sport-feature p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.sports-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Payments and Security Section */
.payments-security {
    text-align: center;
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.02);
}

.payments-security h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.payments-security > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.payment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.payment-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.payment-feature:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.payment-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 24px;
    flex-shrink: 0;
}

.payment-feature span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.payment-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Mini Guide Section */
.mini-guide {
    text-align: center;
    padding: 4rem 0;
}

.mini-guide h2 {
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.guide-step {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.guide-step:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.guide-number {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.guide-step p {
    color: var(--text-color);
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Design for App Page */
@media (max-width: 768px) {
    .app-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .download-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .casino-features,
    .sports-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .guide-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .app-buttons,
    .comparison-buttons,
    .casino-buttons,
    .sports-buttons,
    .payment-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-buttons .btn,
    .comparison-buttons .btn,
    .casino-buttons .btn,
    .sports-buttons .btn,
    .payment-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .download-tip {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .app-feature,
    .download-step,
    .casino-feature,
    .sport-feature,
    .guide-step {
        padding: 1.5rem;
    }
    
    .payment-feature {
        padding: 1rem;
    }
    
    .step-icon i {
        font-size: 3rem;
    }
    
    .guide-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
