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

.page-download-center-pc-client {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-download-center-pc-client__hero-section {
    background-color: #1A237E;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-download-center-pc-client__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.9), rgba(255, 215, 0, 0.3));
    z-index: 1;
}

.page-download-center-pc-client__hero-section .page-download-center-pc-client__container {
    position: relative;
    z-index: 2;
}

.page-download-center-pc-client__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.page-download-center-pc-client__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-download-center-pc-client__download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-download-center-pc-client__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-download-center-pc-client__btn--primary {
    background-color: #FFD700;
    color: #1A237E;
    border: 2px solid #FFD700;
}

.page-download-center-pc-client__btn--primary:hover {
    background-color: #e5c300;
    border-color: #e5c300;
    transform: translateY(-2px);
}

.page-download-center-pc-client__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-download-center-pc-client__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A237E;
    transform: translateY(-2px);
}

.page-download-center-pc-client__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
}

.page-download-center-pc-client__btn--text {
    background: none;
    border: none;
    color: #FFD700;
    padding: 0;
    text-decoration: underline;
    font-size: 1em;
}

.page-download-center-pc-client__btn--text:hover {
    color: #e5c300;
}

.page-download-center-pc-client__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 60%;
    height: auto;
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.page-download-center-pc-client__section {
    padding: 80px 0;
    text-align: center;
}

.page-download-center-pc-client__section:nth-of-type(even) {
    background-color: #f8f8f8;
}

.page-download-center-pc-client__section-title {
    font-size: 2.5em;
    color: #1A237E;
    margin-bottom: 20px;
}

.page-download-center-pc-client__section-description {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-download-center-pc-client__features-section {
    background-color: #FFFFFF;
}

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

.page-download-center-pc-client__feature-item {
    background-color: #f0f2f5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-download-center-pc-client__feature-item:hover {
    transform: translateY(-5px);
}

.page-download-center-pc-client__feature-title {
    font-size: 1.5em;
    color: #1A237E;
    margin-bottom: 15px;
}

.page-download-center-pc-client__feature-item p {
    color: #555;
}

.page-download-center-pc-client__feature-image {
    max-width: 80%;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-download-center-pc-client__download-steps {
    background-color: #f8f8f8;
}

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

.page-download-center-pc-client__step-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-download-center-pc-client__step-number {
    background-color: #FFD700;
    color: #1A237E;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #1A237E;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-pc-client__step-title {
    font-size: 1.6em;
    color: #1A237E;
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-download-center-pc-client__step-item p {
    color: #555;
    flex-grow: 1;
}

.page-download-center-pc-client__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-download-center-pc-client__requirements-section {
    background-color: #FFFFFF;
}

.page-download-center-pc-client__requirements-list ul {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 600px;
    text-align: left;
}

.page-download-center-pc-client__requirements-list li {
    background-color: #f0f2f5;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #1A237E;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333;
}

.page-download-center-pc-client__requirements-list li strong {
    color: #1A237E;
}

.page-download-center-pc-client__requirements-image {
    max-width: 70%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-download-center-pc-client__faq-section {
    background-color: #f8f8f8;
}

.page-download-center-pc-client__faq-item {
    background-color: #FFFFFF;
    margin: 20px auto;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    max-width: 900px;
}

.page-download-center-pc-client__faq-question {
    font-size: 1.3em;
    color: #1A237E;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-download-center-pc-client__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-download-center-pc-client__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-download-center-pc-client__faq-answer {
    color: #555;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.page-download-center-pc-client__faq-answer.active {
    display: block;
}

.page-download-center-pc-client__cta-section {
    background-color: #1A237E;
    color: #FFFFFF;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-download-center-pc-client__cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 35, 126, 0.9), rgba(255, 215, 0, 0.3));
    z-index: 1;
}

.page-download-center-pc-client__cta-section .page-download-center-pc-client__container {
    position: relative;
    z-index: 2;
}

.page-download-center-pc-client__cta-section .page-download-center-pc-client__section-title {
    color: #FFD700;
}

.page-download-center-pc-client__cta-section .page-download-center-pc-client__section-description {
    color: #FFFFFF;
}

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

.page-download-center-pc-client__cta-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-download-center-pc-client__responsible-gaming-section {
    background-color: #f0f2f5;
    padding: 60px 0;
}

.page-download-center-pc-client__responsible-gaming-section .page-download-center-pc-client__section-title {
    font-size: 2em;
}

.page-download-center-pc-client__responsible-gaming-section .page-download-center-pc-client__section-description {
    max-width: 900px;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-center-pc-client__hero-title {
        font-size: 2.8em;
    }
    .page-download-center-pc-client__hero-subtitle {
        font-size: 1.2em;
    }
    .page-download-center-pc-client__hero-image {
        max-width: 80%;
        right: -10%;
    }
    .page-download-center-pc-client__section-title {
        font-size: 2em;
    }
    .page-download-center-pc-client__feature-image,
    .page-download-center-pc-client__requirements-image {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .page-download-center-pc-client__hero-section {
        padding: 60px 0;
        min-height: 400px;
    }
    .page-download-center-pc-client__hero-title {
        font-size: 2.2em;
    }
    .page-download-center-pc-client__hero-subtitle {
        font-size: 1em;
    }
    .page-download-center-pc-client__download-buttons,
    .page-download-center-pc-client__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-download-center-pc-client__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-download-center-pc-client__hero-image {
        display: none;
    }
    .page-download-center-pc-client__section {
        padding: 60px 0;
    }
    .page-download-center-pc-client__section-title {
        font-size: 1.8em;
    }
    .page-download-center-pc-client__step-item {
        min-height: auto;
    }
    .page-download-center-pc-client__step-number {
        position: static;
        transform: none;
        margin: 0 auto 20px auto;
    }
}

@media (max-width: 480px) {
    .page-download-center-pc-client__hero-title {
        font-size: 1.8em;
    }
    .page-download-center-pc-client__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-download-center-pc-client__section-title {
        font-size: 1.5em;
    }
    .page-download-center-pc-client__feature-item,
    .page-download-center-pc-client__step-item,
    .page-download-center-pc-client__faq-item {
        padding: 20px;
    }
    .page-download-center-pc-client__feature-title,
    .page-download-center-pc-client__step-title {
        font-size: 1.3em;
    }
    .page-download-center-pc-client__faq-question {
        font-size: 1.1em;
    }
}