/* style/download-install.css */
.page-download-install {
    font-family: 'Arial', sans-serif;
    color: #E5D5C5; /* Light text for dark backgrounds */
    background-color: #1A2A3A; /* Dark blue auxiliary color as main background */
}

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

.page-download-install__hero {
    background: linear-gradient(135deg, #1A2A3A 0%, #0028ff 100%); /* Dark blue to a complementary blue */
    color: #FFFFFF; /* White text for dark background */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-install__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, transparent 70%);
    animation: floatEffect 10s ease-in-out infinite;
}

.page-download-install__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, transparent 70%);
    animation: floatEffect 12s reverse ease-in-out infinite;
}

@keyframes floatEffect {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.8; }
    25% { transform: translate(10px, -10px) rotate(5deg); opacity: 0.9; }
    50% { transform: translate(0, 10px) rotate(0deg); opacity: 0.8; }
    75% { transform: translate(-10px, -5px) rotate(-5deg); opacity: 0.9; }
    100% { transform: translate(0, 0) rotate(0deg); opacity: 0.8; }
}

.page-download-install__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-download-install__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-download-install__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.page-download-install__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-download-install__btn--primary {
    background-color: #FFD700; /* Gold primary button */
    color: #1A2A3A; /* Dark blue text on gold */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-download-install__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-download-install__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary button */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-download-install__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2A3A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-download-install__hero-image-wrapper {
    margin-top: 40px;
}

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

.page-download-install__section {
    padding: 60px 0;
    text-align: center;
}

.page-download-install__section:nth-of-type(even) {
    background-color: #2a3e50; /* Slightly lighter dark blue for alternating sections */
}

.page-download-install__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 20px;
}

.page-download-install__section-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #E5D5C5;
}

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

.page-download-install__benefit-item, .page-download-install__platform-item, .page-download-install__security-item {
    background-color: #1A2A3A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-download-install__benefit-item:hover, .page-download-install__platform-item:hover, .page-download-install__security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-download-install__benefit-icon, .page-download-install__platform-icon, .page-download-install__security-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-download-install__benefit-title, .page-download-install__platform-title, .page-download-install__security-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-download-install__benefit-text, .page-download-install__platform-text, .page-download-install__security-text {
    font-size: 1em;
    line-height: 1.5;
    color: #e0e0e0;
}

.page-download-install__btn--platform {
    margin-top: 20px;
    background-color: #FFD700;
    color: #1A2A3A;
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
}

.page-download-install__btn--platform:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-download-install__guide-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-download-install__guide-item {
    background-color: #2a3e50;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-download-install__guide-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #FFD700;
}

.page-download-install__guide-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-download-install__guide-title a:hover {
    text-decoration: underline;
}

.page-download-install__guide-description {
    font-size: 0.95em;
    line-height: 1.5;
    color: #e0e0e0;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-download-install__btn--detail {
    display: inline-block;
    margin-top: auto;
    background-color: #FFD700;
    color: #1A2A3A;
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.page-download-install__btn--detail:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-download-install__image-wrapper {
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-download-install__section-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-download-install__cta {
    background: linear-gradient(135deg, #FFD700 0%, #b39700 100%); /* Gold gradient for CTA */
    color: #1A2A3A; /* Dark blue text on gold */
    padding: 80px 0;
}

.page-download-install__cta .page-download-install__section-title {
    color: #1A2A3A;
    text-shadow: none;
}

.page-download-install__cta .page-download-install__section-description {
    color: #333333;
}

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

.page-download-install__cta .page-download-install__btn--primary {
    background-color: #1A2A3A;
    color: #FFD700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-download-install__cta .page-download-install__btn--primary:hover {
    background-color: #0d1a25;
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.page-download-install__cta .page-download-install__btn--secondary {
    background-color: transparent;
    color: #1A2A3A;
    border: 2px solid #1A2A3A;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-download-install__cta .page-download-install__btn--secondary:hover {
    background-color: #1A2A3A;
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-download-install__responsible-gaming-title {
    font-size: 1.8em;
    color: #1A2A3A;
    margin-top: 60px;
    margin-bottom: 15px;
}

.page-download-install__responsible-gaming-text {
    font-size: 1em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #333333;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-download-install__title {
        font-size: 2.8em;
    }
    .page-download-install__subtitle {
        font-size: 1.3em;
    }
    .page-download-install__section-title {
        font-size: 2em;
    }
    .page-download-install__benefit-grid, .page-download-install__platform-grid, .page-download-install__security-features, .page-download-install__guide-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-download-install__hero {
        padding: 60px 0;
    }
    .page-download-install__title {
        font-size: 2.2em;
    }
    .page-download-install__subtitle {
        font-size: 1.1em;
    }
    .page-download-install__actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-download-install__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-download-install__section {
        padding: 40px 0;
    }
    .page-download-install__section-title {
        font-size: 1.8em;
    }
    .page-download-install__section-description {
        font-size: 0.95em;
    }
    .page-download-install__benefit-item, .page-download-install__platform-item, .page-download-install__security-item, .page-download-install__guide-item {
        padding: 20px;
    }
    .page-download-install__benefit-title, .page-download-install__platform-title, .page-download-install__security-title {
        font-size: 1.4em;
    }
    .page-download-install__guide-title {
        font-size: 1.2em;
    }
    .page-download-install__cta {
        padding: 60px 0;
    }
    .page-download-install__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-download-install__title {
        font-size: 1.8em;
    }
    .page-download-install__subtitle {
        font-size: 1em;
    }
    .page-download-install__btn {
        width: 100%;
    }
    .page-download-install__section-title {
        font-size: 1.5em;
    }
    .page-download-install__benefit-grid, .page-download-install__platform-grid, .page-download-install__security-features, .page-download-install__guide-list {
        grid-template-columns: 1fr;
    }
}