/* style/download-center-pc-client-download.css */

.page-download-center-pc-client-download {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light gray for general text on dark background */
    background-color: #1A202C; /* Main dark background color */
    line-height: 1.6;
}

.page-download-center-pc-client-download__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-download-center-pc-client-download__container--center {
    text-align: center;
}

.page-download-center-pc-client-download__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a4a61 100%); /* Dark gradient for hero */
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-pc-client-download__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: page-download-center-pc-client-download__pulse 4s infinite ease-in-out;
    z-index: 0;
}

.page-download-center-pc-client-download__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 215, 0, 0.08);
    border-radius: 50%;
    animation: page-download-center-pc-client-download__pulse 4s infinite reverse ease-in-out;
    z-index: 0;
}

.page-download-center-pc-client-download__hero-section .page-download-center-pc-client-download__container {
    position: relative;
    z-index: 1;
}

@keyframes page-download-center-pc-client-download__pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(1); opacity: 0.8; }
}

.page-download-center-pc-client-download__title {
    font-size: 3.2em;
    color: #FFD700; /* Accent gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-download-center-pc-client-download__subtitle {
    font-size: 1.3em;
    color: #c0c0c0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-download-center-pc-client-download__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-download-center-pc-client-download__button--primary {
    background-color: #FFD700; /* Gold accent for primary button */
    color: #1A202C; /* Dark text on gold */
    border: 2px solid #FFD700;
}

.page-download-center-pc-client-download__button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-download-center-pc-client-download__button--secondary {
    background-color: #1A202C; /* Dark background for secondary button */
    color: #FFD700; /* Gold text on dark */
    border: 2px solid #FFD700;
}

.page-download-center-pc-client-download__button--secondary:hover {
    background-color: #2c3e50;
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-download-center-pc-client-download__button i {
    margin-right: 10px;
    font-size: 1.2em;
}

.page-download-center-pc-client-download__cta-text {
    font-size: 1.1em;
    color: #909090;
    margin-top: 25px;
}

.page-download-center-pc-client-download__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-download-center-pc-client-download__section:last-of-type {
    border-bottom: none;
}

.page-download-center-pc-client-download__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold accent for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-download-center-pc-client-download__text {
    font-size: 1.05em;
    color: #c0c0c0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-download-center-pc-client-download__text--note {
    font-style: italic;
    color: #909090;
    text-align: center;
}

.page-download-center-pc-client-download__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-download-center-pc-client-download__grid-item {
    background-color: #2c3e50; /* Slightly lighter dark background for items */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-download-center-pc-client-download__grid-item:hover {
    transform: translateY(-5px);
    background-color: #34495e;
}

.page-download-center-pc-client-download__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold shadow for icons */
}

.page-download-center-pc-client-download__item-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold for item titles */
    margin-bottom: 15px;
}

.page-download-center-pc-client-download__item-text {
    color: #c0c0c0;
    font-size: 0.95em;
}

.page-download-center-pc-client-download__steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.page-download-center-pc-client-download__step-item {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    background-color: #2c3e50;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-download-center-pc-client-download__step-number {
    background-color: #FFD700;
    color: #1A202C;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-download-center-pc-client-download__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-download-center-pc-client-download__download-area {
    text-align: center;
    background-color: #2c3e50;
    padding: 40px;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-download-center-pc-client-download__os-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: invert(1) sepia(1) saturate(5) hue-rotate(20deg) brightness(1.2) contrast(1.2); /* Make it golden-ish */
}

.page-download-center-pc-client-download__download-text {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 25px;
}

.page-download-center-pc-client-download__small-text {
    font-size: 0.9em;
    color: #909090;
    margin-top: 15px;
}

.page-download-center-pc-client-download__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-download-center-pc-client-download__list li {
    background-color: #2c3e50;
    margin-bottom: 15px;
    padding: 18px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #c0c0c0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-pc-client-download__list li strong {
    color: #FFD700;
    margin-right: 10px;
}

.page-download-center-pc-client-download__faq-items {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-download-center-pc-client-download__faq-item {
    background-color: #2c3e50;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-download-center-pc-client-download__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-download-center-pc-client-download__faq-question::after {
    content: '+';
    font-size: 1.5em;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.page-download-center-pc-client-download__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-download-center-pc-client-download__faq-answer {
    font-size: 1em;
    color: #c0c0c0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    display: none; /* Hidden by default */
}

.page-download-center-pc-client-download__faq-answer.show {
    display: block;
}

.page-download-center-pc-client-download__link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-download-center-pc-client-download__link:hover {
    color: #e6c200;
    text-decoration: underline;
}

/* Iconography (assuming a font icon library or SVG inlined for simplicity) */
.icon-download::before { content: '⬇'; }
.icon-windows::before { content: '🪟'; }
.icon-register::before { content: '📝'; }

/* Responsive Design */
@media (max-width: 768px) {
    .page-download-center-pc-client-download__title {
        font-size: 2.5em;
    }

    .page-download-center-pc-client-download__subtitle {
        font-size: 1.1em;
    }

    .page-download-center-pc-client-download__section-title {
        font-size: 2em;
    }

    .page-download-center-pc-client-download__grid {
        grid-template-columns: 1fr;
    }

    .page-download-center-pc-client-download__steps {
        flex-direction: column;
        align-items: center;
    }

    .page-download-center-pc-client-download__step-item {
        max-width: 100%;
    }

    .page-download-center-pc-client-download__list li {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .page-download-center-pc-client-download__list li strong {
        margin-bottom: 5px;
    }

    .page-download-center-pc-client-download__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-download-center-pc-client-download__os-icon {
        width: 60px;
        height: 60px;
    }

    .page-download-center-pc-client-download__download-text {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-download-center-pc-client-download__title {
        font-size: 2em;
    }

    .page-download-center-pc-client-download__subtitle {
        font-size: 1em;
    }

    .page-download-center-pc-client-download__section-title {
        font-size: 1.8em;
    }

    .page-download-center-pc-client-download__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-download-center-pc-client-download__cta-text {
        font-size: 0.9em;
    }

    .page-download-center-pc-client-download__item-title {
        font-size: 1.3em;
    }

    .page-download-center-pc-client-download__text {
        font-size: 0.95em;
    }
}