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

.page-download-center-pc-client {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark gray for general text */
    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 {
    background: linear-gradient(135deg, #0056b3 0%, #003f80 100%); /* Dark blue gradient */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.page-download-center-pc-client__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0; /* Light gray for subtitle */
}

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

.page-download-center-pc-client__button--primary {
    background-color: #ffd700; /* Gold button */
    color: #0056b3; /* Dark blue text */
    border: none;
}

.page-download-center-pc-client__button--primary:hover {
    background-color: #e6c200; /* Darker gold */
    transform: translateY(-3px);
}

.page-download-center-pc-client__button--secondary {
    background-color: #0056b3; /* Dark blue button */
    color: #FFFFFF; /* White text */
    border: 2px solid #ffd700; /* Gold border */
}

.page-download-center-pc-client__button--secondary:hover {
    background-color: #003f80; /* Darker blue */
    transform: translateY(-3px);
}

.page-download-center-pc-client__button--transparent {
    background-color: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.page-download-center-pc-client__button--transparent:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.page-download-center-pc-client__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-download-center-pc-client__note {
    font-size: 0.9em;
    color: #cccccc;
    margin-top: 20px;
}

.page-download-center-pc-client__hero-image {
    max-width: 90%;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-download-center-pc-client__section {
    padding: 60px 0;
}

.page-download-center-pc-client__section:nth-of-type(even) {
    background-color: #f8f8f8; /* Light gray background for alternating sections */
}

.page-download-center-pc-client__section-title {
    font-size: 2.5em;
    color: #0056b3; /* Dark blue for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-download-center-pc-client__text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #555555;
}

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

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

.page-download-center-pc-client__feature-item:hover,
.page-download-center-pc-client__security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-download-center-pc-client__feature-icon,
.page-download-center-pc-client__security-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.page-download-center-pc-client__feature-title,
.page-download-center-pc-client__security-title {
    font-size: 1.5em;
    color: #0056b3;
    margin-bottom: 15px;
}

.page-download-center-pc-client__feature-description,
.page-download-center-pc-client__security-description {
    font-size: 1em;
    color: #666666;
}

.page-download-center-pc-client__step-number {
    background-color: #ffd700; /* Gold */
    color: #0056b3; /* Dark blue */
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 20px auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-download-center-pc-client__step-title {
    font-size: 1.4em;
    color: #0056b3;
    margin-bottom: 10px;
}

.page-download-center-pc-client__step-description {
    font-size: 0.95em;
    color: #666666;
    margin-bottom: 20px;
}

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

.page-download-center-pc-client__list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 30px auto;
    text-align: left;
}

.page-download-center-pc-client__list li {
    background-color: #FFFFFF;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #0056b3;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #444444;
}

.page-download-center-pc-client__list li strong {
    color: #0056b3;
}

.page-download-center-pc-client__comparison-table {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.page-download-center-pc-client__comparison-header,
.page-download-center-pc-client__comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
}

.page-download-center-pc-client__comparison-header {
    background-color: #0056b3; /* Dark blue */
    color: #FFFFFF;
    font-weight: bold;
}

.page-download-center-pc-client__comparison-cell {
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.page-download-center-pc-client__comparison-header .page-download-center-pc-client__comparison-cell {
    border-color: #003f80;
}

.page-download-center-pc-client__comparison-row:nth-child(odd) {
    background-color: #f2f2f2;
}

.page-download-center-pc-client__comparison-row:nth-child(even) {
    background-color: #FFFFFF;
}

.page-download-center-pc-client__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.page-download-center-pc-client__faq-answer {
    font-size: 1em;
    color: #555555;
    line-height: 1.7;
}

.page-download-center-pc-client__cta-content {
    background: linear-gradient(90deg, #0056b3, #003f80); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-download-center-pc-client__section-title--cta {
    color: #ffd700; /* Gold */
    margin-bottom: 25px;
    font-size: 2.8em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-download-center-pc-client__text--cta {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-download-center-pc-client__section--responsible-gaming {
    background-color: #f0f8ff; /* Light blue background */
    padding: 50px 0;
    text-align: center;
}

.page-download-center-pc-client__link--responsible-gaming {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-download-center-pc-client__link--responsible-gaming:hover {
    color: #003f80;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-download-center-pc-client__title {
        font-size: 2.5em;
    }
    .page-download-center-pc-client__subtitle {
        font-size: 1.2em;
    }
    .page-download-center-pc-client__section-title {
        font-size: 2em;
    }
    .page-download-center-pc-client__features-grid,
    .page-download-center-pc-client__steps-grid,
    .page-download-center-pc-client__security-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-download-center-pc-client__comparison-header,
    .page-download-center-pc-client__comparison-row {
        grid-template-columns: 1fr 1fr;
    }
    .page-download-center-pc-client__comparison-header .page-download-center-pc-client__comparison-cell:nth-child(3),
    .page-download-center-pc-client__comparison-row .page-download-center-pc-client__comparison-cell:nth-child(3) {
        display: none; /* Hide web version column on smaller screens */
    }
}

@media (max-width: 768px) {
    .page-download-center-pc-client__hero {
        padding: 60px 0;
    }
    .page-download-center-pc-client__title {
        font-size: 2em;
    }
    .page-download-center-pc-client__subtitle {
        font-size: 1em;
    }
    .page-download-center-pc-client__section-title {
        font-size: 1.8em;
    }
    .page-download-center-pc-client__cta-content {
        padding: 40px 20px;
    }
    .page-download-center-pc-client__section-title--cta {
        font-size: 2.2em;
    }
    .page-download-center-pc-client__text--cta {
        font-size: 1em;
    }
    .page-download-center-pc-client__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-download-center-pc-client__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-download-center-pc-client__features-grid,
    .page-download-center-pc-client__steps-grid,
    .page-download-center-pc-client__security-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-download-center-pc-client__title {
        font-size: 1.8em;
    }
    .page-download-center-pc-client__subtitle {
        font-size: 0.9em;
    }
    .page-download-center-pc-client__section-title {
        font-size: 1.5em;
    }
    .page-download-center-pc-client__section-title--cta {
        font-size: 1.8em;
    }
    .page-download-center-pc-client__button {
        display: block;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }
}