/* style/app-download-system-requirements.css */

.page-app-download-system-requirements {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark backgrounds */
    line-height: 1.6;
}

.page-app-download-system-requirements__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-app-download-system-requirements__hero {
    background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%); /* Dark gradient for hero */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-app-download-system-requirements__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,gaming,pkwin_pattern]') no-repeat center center/cover; /* Abstract pattern */
    opacity: 0.1;
    z-index: 0;
}

.page-app-download-system-requirements__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E94560; /* Accent color for main title */
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.page-app-download-system-requirements__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-app-download-system-requirements__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.page-app-download-system-requirements__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-app-download-system-requirements__btn--primary {
    background-color: #E94560; /* Accent color for primary buttons */
    color: #FFFFFF;
}

.page-app-download-system-requirements__btn--primary:hover {
    background-color: #ff6a80; /* Lighter accent on hover */
    transform: translateY(-3px);
}

.page-app-download-system-requirements__btn--secondary {
    background-color: #4a4a6e; /* Darker variant of main color */
    color: #FFFFFF;
    border: 1px solid #E94560;
}

.page-app-download-system-requirements__btn--secondary:hover {
    background-color: #5f5f8a; /* Lighter dark variant on hover */
    transform: translateY(-3px);
}

.page-app-download-system-requirements__section {
    padding: 60px 0;
    background-color: #282844; /* Slightly lighter than main for contrast */
    color: #E0E0E0;
}

.page-app-download-system-requirements__section--dark {
    background-color: #1A1A2E; /* Main color for dark sections */
    color: #FFFFFF;
}

.page-app-download-system-requirements__section-title {
    font-size: 2.5em;
    color: #E94560; /* Accent color for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-app-download-system-requirements__subsection-title {
    font-size: 1.8em;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-app-download-system-requirements__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-app-download-system-requirements__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-app-download-system-requirements__grid-item {
    background-color: #1A1A2E; /* Dark background for grid items */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #E94560;
}

.page-app-download-system-requirements__section--dark .page-app-download-system-requirements__grid-item {
    background-color: #282844; /* Slightly lighter for contrast on dark section */
    border: 1px solid #E94560;
}

.page-app-download-system-requirements__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-app-download-system-requirements__list li {
    background-color: #3a3a5e; /* List item background */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 1em;
    color: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-app-download-system-requirements__list li::before {
    content: '✅';
    margin-right: 10px;
    font-size: 1.2em;
}

.page-app-download-system-requirements__list--center {
    text-align: center;
    padding-left: 0;
}

.page-app-download-system-requirements__list--center li {
    justify-content: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-app-download-system-requirements__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #E94560;
}

.page-app-download-system-requirements__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    height: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-app-download-system-requirements__cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #E94560 0%, #ff6a80 100%); /* Accent gradient for CTA */
    color: #FFFFFF;
}

.page-app-download-system-requirements__cta-section .page-app-download-system-requirements__section-title {
    color: #1A1A2E; /* Dark title on light background */
}

.page-app-download-system-requirements__cta-section .page-app-download-system-requirements__text {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    font-size: 1.2em;
    color: #1A1A2E;
}

.page-app-download-system-requirements__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-app-download-system-requirements__cta-actions .page-app-download-system-requirements__btn--primary {
    background-color: #1A1A2E;
    color: #E94560;
}

.page-app-download-system-requirements__cta-actions .page-app-download-system-requirements__btn--primary:hover {
    background-color: #282844;
    color: #FFFFFF;
}

.page-app-download-system-requirements__cta-actions .page-app-download-system-requirements__btn--secondary {
    background-color: #FFFFFF;
    color: #E94560;
    border: 1px solid #1A1A2E;
}

.page-app-download-system-requirements__cta-actions .page-app-download-system-requirements__btn--secondary:hover {
    background-color: #E0E0E0;
    color: #1A1A2E;
}

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

    .page-app-download-system-requirements__hero-subtitle {
        font-size: 1em;
    }

    .page-app-download-system-requirements__section-title {
        font-size: 2em;
    }

    .page-app-download-system-requirements__subsection-title {
        font-size: 1.5em;
    }

    .page-app-download-system-requirements__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-app-download-system-requirements__grid {
        grid-template-columns: 1fr;
    }

    .page-app-download-system-requirements__image {
        height: 200px;
    }
}

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

    .page-app-download-system-requirements__hero-title {
        font-size: 2em;
    }

    .page-app-download-system-requirements__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-app-download-system-requirements__section {
        padding: 40px 0;
    }

    .page-app-download-system-requirements__section-title {
        font-size: 1.8em;
    }

    .page-app-download-system-requirements__subsection-title {
        font-size: 1.3em;
    }

    .page-app-download-system-requirements__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-app-download-system-requirements__list li {
        padding: 10px 15px;
        font-size: 0.95em;
    }
    .page-app-download-system-requirements__cta-actions {
        flex-direction: column;
    }
}