.page-download-center-pc-client-download {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFFFFF; /* White text on dark backgrounds */
    background-color: #001A33; /* Very dark blue background */
}

/* General Section Styling */
.page-download-center-pc-client-download__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-download-center-pc-client-download__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main titles */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-download-center-pc-client-download__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #E0E0E0; /* Slightly off-white for descriptions */
}

/* Keyword highlighting */
.page-download-center-pc-client-download .keyword {
    color: #FFD700; /* Gold for keywords */
    font-weight: bold;
}

/* Hero Section */
.page-download-center-pc-client-download__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #00BFFF, #001A33); /* Blue to very dark blue gradient */
    text-align: center;
    overflow: hidden;
    position: relative;
}

.page-download-center-pc-client-download__hero-content {
    z-index: 1;
    max-width: 900px;
}

.page-download-center-pc-client-download__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for hero title */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.page-download-center-pc-client-download__hero-description {
    font-size: 1.3em;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.page-download-center-pc-client-download__brand-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-download-center-pc-client-download__brand-link:hover {
    text-decoration: underline;
    color: #FFFACD; /* Lighter gold on hover */
}

.page-download-center-pc-client-download__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.page-download-center-pc-client-download__btn--primary {
    background-color: #FFD700; /* Gold background */
    color: #000000; /* Black text */
}

.page-download-center-pc-client-download__btn--primary:hover {
    background-color: #FFFACD; /* Lighter gold on hover */
    color: #333333;
}

.page-download-center-pc-client-download__btn--secondary {
    background-color: #005F8C; /* Darker blue background */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-download-center-pc-client-download__btn--secondary:hover {
    background-color: #0080A8; /* Lighter blue on hover */
    color: #FFFACD;
}

.page-download-center-pc-client-download__hero-image-wrapper {
    margin-top: 50px;
    max-width: 80%;
}

.page-download-center-pc-client-download__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Download Links Section */
.page-download-center-pc-client-download__download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-download-center-pc-client-download__download-card {
    background-color: #00284D; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-download-center-pc-client-download__download-card:hover {
    transform: translateY(-10px);
}

.page-download-center-pc-client-download__os-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #00BFFF); /* Blue glow */
}

.page-download-center-pc-client-download__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-download-center-pc-client-download__card-text {
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-download-center-pc-client-download__btn--download {
    background-color: #00BFFF; /* Blue button */
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1em;
}

.page-download-center-pc-client-download__btn--download:hover {
    background-color: #4dd2ff; /* Lighter blue on hover */
    color: #000000;
}

/* Installation Guide Section */
.page-download-center-pc-client-download__installation-guide {
    background-color: #001A33; /* Consistent dark background */
}

.page-download-center-pc-client-download__guide-tabs {
    margin-top: 40px;
}

.page-download-center-pc-client-download__tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #005F8C;
}

.page-download-center-pc-client-download__tab-btn {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    color: #E0E0E0;
    cursor: pointer;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    position: relative;
    outline: none;
}

.page-download-center-pc-client-download__tab-btn:hover {
    color: #FFD700;
}

.page-download-center-pc-client-download__tab-btn--active {
    color: #FFD700;
    border-bottom: 3px solid #FFD700;
}

.page-download-center-pc-client-download__tab-content {
    display: none;
    text-align: left;
    padding: 20px 0;
}

.page-download-center-pc-client-download__tab-content--active {
    display: block;
}

.page-download-center-pc-client-download__guide-subtitle {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 30px;
    text-align: center;
}

.page-download-center-pc-client-download__step-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 40px;
}

.page-download-center-pc-client-download__step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #00284D;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-pc-client-download__step-number {
    font-size: 1.8em;
    font-weight: bold;
    color: #00BFFF;
    min-width: 100px;
    text-align: right;
    padding-right: 15px;
    border-right: 2px solid #005F8C;
}

.page-download-center-pc-client-download__step-details {
    flex: 1;
}

.page-download-center-pc-client-download__step-details p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-download-center-pc-client-download__step-details strong {
    color: #FFD700;
}

.page-download-center-pc-client-download__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Why PC Section */
.page-download-center-pc-client-download__why-pc {
    background-color: #001A33;
}

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

.page-download-center-pc-client-download__feature-item {
    background-color: #00284D;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.page-download-center-pc-client-download__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-download-center-pc-client-download__feature-item p {
    color: #E0E0E0;
    font-size: 1em;
}

.page-download-center-pc-client-download__feature-image {
    max-width: 100px;
    height: auto;
    margin-top: 20px;
    display: block;
    filter: drop-shadow(0 0 8px #00BFFF);
}

.page-download-center-pc-client-download__pc-experience-wrapper {
    margin-top: 60px;
    max-width: 100%;
}

.page-download-center-pc-client-download__pc-experience-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* System Requirements Section */
.page-download-center-pc-client-download__system-requirements {
    background-color: #001A33;
}

.page-download-center-pc-client-download__requirements-table {
    margin-top: 40px;
    overflow-x: auto;
}

.page-download-center-pc-client-download__requirements-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #00284D;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-download-center-pc-client-download__requirements-table th,
.page-download-center-pc-client-download__requirements-table td {
    padding: 15px 20px;
    border: 1px solid #003A66; /* Darker blue border */
    text-align: left;
    color: #FFFFFF;
}

.page-download-center-pc-client-download__requirements-table th {
    background-color: #005F8C; /* Blue header */
    color: #FFD700;
    font-weight: bold;
    font-size: 1.1em;
}

.page-download-center-pc-client-download__requirements-table tr:nth-child(even) {
    background-color: #002240; /* Slightly different row background */
}

.page-download-center-pc-client-download__note {
    margin-top: 20px;
    font-size: 0.95em;
    color: #B0B0B0;
}

/* FAQ Section */
.page-download-center-pc-client-download__faq {
    background-color: #001A33;
}

.page-download-center-pc-client-download__faq-items {
    margin-top: 40px;
    display: grid;
    gap: 20px;
    text-align: left;
}

.page-download-center-pc-client-download__faq-item {
    background-color: #00284D;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-pc-client-download__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-download-center-pc-client-download__faq-answer {
    color: #E0E0E0;
    font-size: 1em;
}

.page-download-center-pc-client-download__faq-image-wrapper {
    margin-top: 50px;
    max-width: 100%;
}

.page-download-center-pc-client-download__faq-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsible Gaming Section */
.page-download-center-pc-client-download__responsible-gaming {
    background-color: #001A33;
}

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

.page-download-center-pc-client-download__responsible-features li {
    background-color: #00284D;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    color: #E0E0E0;
    font-size: 1.1em;
    border-left: 5px solid #00BFFF;
}

.page-download-center-pc-client-download__responsible-features li strong {
    color: #FFD700;
}

.page-download-center-pc-client-download__responsible-image-wrapper {
    margin-top: 50px;
    max-width: 100%;
}

.page-download-center-pc-client-download__responsible-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Call to Action Section */
.page-download-center-pc-client-download__cta {
    padding-bottom: 80px;
    background-color: #001A33;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-download-center-pc-client-download__hero {
        padding: 60px 15px;
    }
    .page-download-center-pc-client-download__hero-title {
        font-size: 2.5em;
    }
    .page-download-center-pc-client-download__hero-description {
        font-size: 1.1em;
    }
    .page-download-center-pc-client-download__section-title {
        font-size: 2em;
    }
    .page-download-center-pc-client-download__download-options {
        grid-template-columns: 1fr;
    }
    .page-download-center-pc-client-download__tab-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-download-center-pc-client-download__tab-btn {
        width: 100%;
        border-bottom: none;
        border-radius: 5px;
        background-color: #00284D;
    }
    .page-download-center-pc-client-download__tab-btn--active {
        border-bottom: none;
        background-color: #005F8C;
    }
    .page-download-center-pc-client-download__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-download-center-pc-client-download__step-number {
        min-width: unset;
        width: auto;
        border-right: none;
        padding-right: 0;
        margin-bottom: 10px;
        border-bottom: 2px solid #005F8C;
        padding-bottom: 10px;
    }
    .page-download-center-pc-client-download__step-details {
        text-align: center;
    }
    .page-download-center-pc-client-download__features-grid {
        grid-template-columns: 1fr;
    }
    .page-download-center-pc-client-download__requirements-table th,
    .page-download-center-pc-client-download__requirements-table td {
        padding: 10px;
        font-size: 0.9em;
    }
    .page-download-center-pc-client-download__faq-question {
        font-size: 1.2em;
    }
    .page-download-center-pc-client-download__responsible-features li {
        font-size: 1em;
    }
    .page-download-center-pc-client-download__cta-actions {
        flex-direction: column;
    }
    .page-download-center-pc-client-download__btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-download-center-pc-client-download__hero-title {
        font-size: 2em;
    }
    .page-download-center-pc-client-download__section-title {
        font-size: 1.8em;
    }
    .page-download-center-pc-client-download__hero-actions {
        flex-direction: column;
    }
    .page-download-center-pc-client-download__btn {
        width: 100%;
    }
}