.android-apk-container {
    margin: 40px auto 80px auto;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1200px;

    h1 {
        text-align: center;
        font-size: 36px;
        margin-bottom: 40px;
    }

    .title {
        font-size: 2rem;
        margin-left: 0.5rem;
        color: #333;
        font-weight: 700;
        text-align: left;
    }

    .content-section {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: left;
        width: 100%;
        box-sizing: border-box;

        h2 {
            font-size: 1.5rem;
            margin-top: 0;
            margin-bottom: 1.25rem;
            color: #333;
            border-bottom: 1px solid #eee;
            padding-bottom: 0.75rem;
        }

        .apk-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;

            .apk-item {
                display: flex;
                flex-direction: row;
                padding: 1.25rem;
                border-radius: 8px;
                border: 1px solid #eee;
                transition: all 0.2s ease;
                align-items: center;

                .apk-info {
                    flex: 1;
                    flex-direction: column;
                    display: flex;
                    gap: 1rem;

                    .filename {
                        font-size: 1.1rem;
                        font-weight: 600;
                    }

                    .apk-meta {
                        display: flex;
                        flex-direction: column;
                        gap: 0.5rem;
                        color: #666;
                        font-size: 0.9rem;
                    }
                }
            }
        }

        .install-steps {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;

            .step {
                display: flex;
                gap: 1rem;
                align-items: flex-start;

                .step-number {
                    background-color: var(--primary-color);
                    color: white;
                    min-width: 32px;
                    height: 32px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-weight: bold;
                    flex-shrink: 0;
                    margin-top: 0.25rem;
                }

                .step-content {
                    flex: 1;
                    text-align: left;

                    h3 {
                        margin-top: 0;
                        margin-bottom: 0.5rem;
                        font-size: 1.1rem;
                    }

                    p {
                        margin: 0;
                        color: #555;
                        line-height: 1.5;
                    }
                }
            }
        }

        .instruction-text {
            margin: 0;
            color: #555;
            line-height: 1.5;

            p {
                margin-top: 0;
                margin-bottom: 0.5rem;
            }

            .instruction-list {
                margin-top: 0.5rem;
                margin-bottom: 1rem;
                padding-left: 1.5rem;

                li {
                    margin-bottom: 0.5rem;
                    padding-right: 0.5rem;

                    &:last-child {
                        margin-bottom: 0;
                    }
                }
            }
        }
    }
}
