/* style/app-download-android-app-installation.css */

/* Biến CSS cho màu sắc */
:root {
    --page-app-download-android-app-installation-primary-color: #1A202C;
    --page-app-download-android-app-installation-accent-color: #FFD700;
    --page-app-download-android-app-installation-text-light: #FFFFFF;
    --page-app-download-android-app-installation-text-dark: #1A202C;
    --page-app-download-android-app-installation-background-light: #F0F0F0;
    --page-app-download-android-app-installation-background-dark: #1A202C;
}

.page-app-download-android-app-installation {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-app-download-android-app-installation-text-dark);
    background-color: var(--page-app-download-android-app-installation-background-light);
}

.page-app-download-android-app-installation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-app-download-android-app-installation-hero {
    background-color: var(--page-app-download-android-app-installation-background-dark);
    color: var(--page-app-download-android-app-installation-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-app-download-android-app-installation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.9), rgba(255, 215, 0, 0.2));
    z-index: 1;
}

.page-app-download-android-app-installation-hero > * {
    position: relative;
    z-index: 2;
}

.page-app-download-android-app-installation-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-app-download-android-app-installation-accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-app-download-android-app-installation-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-app-download-android-app-installation-text-light);
}

.page-app-download-android-app-installation-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-app-download-android-app-installation-btn-primary {
    background-color: var(--page-app-download-android-app-installation-accent-color);
    color: var(--page-app-download-android-app-installation-text-dark);
    border: 2px solid var(--page-app-download-android-app-installation-accent-color);
}

.page-app-download-android-app-installation-btn-primary:hover {
    background-color: darken(var(--page-app-download-android-app-installation-accent-color), 10%);
    transform: translateY(-2px);
}

.page-app-download-android-app-installation-btn-secondary {
    background-color: transparent;
    color: var(--page-app-download-android-app-installation-text-light);
    border: 2px solid var(--page-app-download-android-app-installation-text-light);
}

.page-app-download-android-app-installation-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--page-app-download-android-app-installation-accent-color);
    color: var(--page-app-download-android-app-installation-accent-color);
    transform: translateY(-2px);
}

.page-app-download-android-app-installation-hero-image {
    margin-top: 40px;
    max-width: 600px;
    width: 100%;
}

.page-app-download-android-app-installation-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-app-download-android-app-installation-section {
    padding: 60px 0;
}

.page-app-download-android-app-installation-section:nth-of-type(even) {
    background-color: var(--page-app-download-android-app-installation-background-light);
}

.page-app-download-android-app-installation-section:nth-of-type(odd) {
    background-color: #FFFFFF;
}

.page-app-download-android-app-installation-heading {
    font-size: 2.2em;
    color: var(--page-app-download-android-app-installation-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-app-download-android-app-installation-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-app-download-android-app-installation-accent-color);
    border-radius: 2px;
}

.page-app-download-android-app-installation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-app-download-android-app-installation-feature-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-app-download-android-app-installation-feature-item:hover {
    transform: translateY(-5px);
}

.page-app-download-android-app-installation-feature-title {
    font-size: 1.4em;
    color: var(--page-app-download-android-app-installation-primary-color);
    margin-bottom: 15px;
}

.page-app-download-android-app-installation-step {
    background-color: #FFFFFF;
    border-left: 5px solid var(--page-app-download-android-app-installation-accent-color);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
}

.page-app-download-android-app-installation-step-title {
    font-size: 1.6em;
    color: var(--page-app-download-android-app-installation-primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.page-app-download-android-app-installation-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--page-app-download-android-app-installation-text-dark);
}

.page-app-download-android-app-installation-list ol {
    list-style-type: decimal;
    margin-left: 20px;
    margin-top: 10px;
}

.page-app-download-android-app-installation-list li,
.page-app-download-android-app-installation-list ol li {
    margin-bottom: 8px;
}

.page-app-download-android-app-installation-note {
    font-style: italic;
    color: #666;
    margin-top: 20px;
    border-top: 1px dashed #ddd;
    padding-top: 15px;
}

.page-app-download-android-app-installation-image-wrapper {
    margin: 30px auto;
    max-width: 700px;
    text-align: center;
}

.page-app-download-android-app-installation-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-app-download-android-app-installation-permission-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-app-download-android-app-installation-permission-item {
    text-align: center;
    padding: 25px;
    background-color: #F8F8F8;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.page-app-download-android-app-installation-permission-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.page-app-download-android-app-installation-permission-title {
    font-size: 1.3em;
    color: var(--page-app-download-android-app-installation-primary-color);
    margin-bottom: 10px;
}

.page-app-download-android-app-installation-troubleshoot-item {
    background-color: #FFFFFF;
    border: 1px solid #eee;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
}

.page-app-download-android-app-installation-troubleshoot-title {
    font-size: 1.5em;
    color: var(--page-app-download-android-app-installation-primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.page-app-download-android-app-installation-benefits-list li {
    list-style-type: '✅ ';
    padding-left: 10px;
    margin-bottom: 10px;
}

.page-app-download-android-app-installation-responsible-gaming {
    background-color: var(--page-app-download-android-app-installation-background-dark);
    color: var(--page-app-download-android-app-installation-text-light);
}

.page-app-download-android-app-installation-responsible-gaming .page-app-download-android-app-installation-heading {
    color: var(--page-app-download-android-app-installation-accent-color);
}

.page-app-download-android-app-installation-responsible-gaming .page-app-download-android-app-installation-heading::after {
    background-color: var(--page-app-download-android-app-installation-text-light);
}

.page-app-download-android-app-installation-responsible-gaming p,
.page-app-download-android-app-installation-responsible-gaming ul li {
    color: var(--page-app-download-android-app-installation-text-light);
}

.page-app-download-android-app-installation-responsible-gaming .page-app-download-android-app-installation-list li {
    list-style-type: '➡️ ';
    padding-left: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-app-download-android-app-installation-title {
        font-size: 2.2em;
    }

    .page-app-download-android-app-installation-subtitle {
        font-size: 1em;
    }

    .page-app-download-android-app-installation-heading {
        font-size: 1.8em;
    }

    .page-app-download-android-app-installation-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-app-download-android-app-installation-features,
    .page-app-download-android-app-installation-permission-list {
        grid-template-columns: 1fr;
    }

    .page-app-download-android-app-installation-step {
        padding: 20px;
    }

    .page-app-download-android-app-installation-step-title {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .page-app-download-android-app-installation-hero {
        padding: 60px 0;
    }

    .page-app-download-android-app-installation-title {
        font-size: 1.8em;
    }

    .page-app-download-android-app-installation-subtitle {
        font-size: 0.9em;
    }

    .page-app-download-android-app-installation-btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }

    .page-app-download-android-app-installation-heading {
        font-size: 1.5em;
    }

    .page-app-download-android-app-installation-section {
        padding: 40px 0;
    }
}