/* style/index-app-download-entrance.css */

.page-index-app-download-entrance {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light gray text for contrast */
    line-height: 1.6;
    background-color: #1a1a1a; /* Dark background */
}

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

.page-index-app-download-entrance__hero-section {
    background: linear-gradient(135deg, #FF0055, #00FFEE);
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-index-app-download-entrance__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    line-height: 1.2;
}

.page-index-app-download-entrance__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    color: #f0f0f0;
}

.page-index-app-download-entrance__cta-button {
    display: inline-block;
    background-color: #00FFEE; /* Accent color for CTA */
    color: #1a1a1a; /* Dark text for contrast */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #00FFEE;
}

.page-index-app-download-entrance__cta-button:hover {
    background-color: #FF0055; /* Main color on hover */
    color: #FFFFFF;
    transform: translateY(-3px);
    border-color: #FF0055;
}

.page-index-app-download-entrance__hero-image-wrapper {
    width: 100%;
    max-width: 800px;
    margin-top: 40px;
}

.page-index-app-download-entrance__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-index-app-download-entrance__section-title {
    font-size: 2.8em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #FF0055; /* Main color for section titles */
    padding-top: 60px;
}

.page-index-app-download-entrance__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #cccccc;
}

.page-index-app-download-entrance__why-choose-section,
.page-index-app-download-entrance__how-to-download-section,
.page-index-app-download-entrance__app-features-section,
.page-index-app-download-entrance__exclusive-bonuses-section,
.page-index-app-download-entrance__responsible-gaming-section,
.page-index-app-download-entrance__faq-section,
.page-index-app-download-entrance__final-cta-section {
    padding: 60px 0;
    background-color: #222222;
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-index-app-download-entrance__why-choose-section {
    background-color: #1a1a1a;
}

.page-index-app-download-entrance__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-index-app-download-entrance__feature-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.page-index-app-download-entrance__feature-item:hover {
    transform: translateY(-10px);
}

.page-index-app-download-entrance__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px #00FFEE);
}

.page-index-app-download-entrance__feature-title {
    font-size: 1.8em;
    color: #00FFEE; /* Accent color for feature titles */
    margin-bottom: 15px;
}

.page-index-app-download-entrance__feature-text {
    font-size: 1em;
    color: #bbbbbb;
}

.page-index-app-download-entrance__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 60px auto 0;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-index-app-download-entrance__download-steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.page-index-app-download-entrance__download-platform {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.page-index-app-download-entrance__platform-title {
    font-size: 2em;
    color: #FF0055; /* Main color for platform titles */
    margin-bottom: 25px;
}

.page-index-app-download-entrance__step-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
}

.page-index-app-download-entrance__step-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #f0f0f0;
    position: relative;
    padding-left: 30px;
}

.page-index-app-download-entrance__step-list li::before {
    content: attr(data-step-number);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #00FFEE;
    color: #1a1a1a;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
}

.page-index-app-download-entrance__step-list li:nth-child(1)::before { content: '1'; }
.page-index-app-download-entrance__step-list li:nth-child(2)::before { content: '2'; }
.page-index-app-download-entrance__step-list li:nth-child(3)::before { content: '3'; }
.page-index-app-download-entrance__step-list li:nth-child(4)::before { content: '4'; }
.page-index-app-download-entrance__step-list li:nth-child(5)::before { content: '5'; }

.page-index-app-download-entrance__qr-code-wrapper {
    margin-bottom: 30px;
}

.page-index-app-download-entrance__qr-code-image {
    width: 180px;
    height: 180px;
    border: 5px solid #00FFEE;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 238, 0.5);
}

.page-index-app-download-entrance__qr-code-wrapper p {
    margin-top: 15px;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-index-app-download-entrance__cta-button--small {
    padding: 12px 25px;
    font-size: 1.1em;
}

.page-index-app-download-entrance__feature-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 50px auto;
}

.page-index-app-download-entrance__feature-list li {
    background-color: #2a2a2a;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 10px;
    font-size: 1.15em;
    color: #f0f0f0;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-index-app-download-entrance__list-icon {
    font-size: 1.5em;
    color: #FF0055; /* Main color for list icons */
    margin-right: 20px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 0, 85, 0.7);
}

.page-index-app-download-entrance__bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-index-app-download-entrance__bonus-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.page-index-app-download-entrance__bonus-item:hover {
    transform: translateY(-10px);
}

.page-index-app-download-entrance__bonus-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px #FF0055);
}

.page-index-app-download-entrance__bonus-title {
    font-size: 1.8em;
    color: #00FFEE; /* Accent color for bonus titles */
    margin-bottom: 15px;
}

.page-index-app-download-entrance__bonus-text {
    font-size: 1em;
    color: #bbbbbb;
}

.page-index-app-download-entrance__text-link {
    color: #00FFEE;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-index-app-download-entrance__text-link:hover {
    color: #FF0055;
}

.page-index-app-download-entrance__accordion {
    max-width: 900px;
    margin: 50px auto;
}

.page-index-app-download-entrance__accordion-item {
    background-color: #2a2a2a;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-index-app-download-entrance__accordion-header {
    padding: 20px 30px;
    font-size: 1.3em;
    color: #FF0055; /* Main color for accordion headers */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-index-app-download-entrance__accordion-header:hover {
    background-color: #333333;
}

.page-index-app-download-entrance__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #00FFEE;
    transition: transform 0.3s ease;
}

.page-index-app-download-entrance__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-app-download-entrance__accordion-content {
    padding: 0 30px 20px;
    font-size: 1.1em;
    color: #cccccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-index-app-download-entrance__accordion-content.active {
    max-height: 500px; /* Adjust as needed */
    padding: 0 30px 20px;
}

.page-index-app-download-entrance__cta-buttons-group {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.page-index-app-download-entrance__cta-button--large {
    padding: 18px 40px;
    font-size: 1.4em;
    background-color: #FF0055; /* Main color for primary CTA */
    color: #FFFFFF;
    border-color: #FF0055;
}

.page-index-app-download-entrance__cta-button--large:hover {
    background-color: #00FFEE;
    color: #1a1a1a;
    border-color: #00FFEE;
}

.page-index-app-download-entrance__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #00FFEE;
    color: #00FFEE;
    padding: 15px 30px;
    font-size: 1.2em;
}

.page-index-app-download-entrance__cta-button--secondary:hover {
    background-color: #00FFEE;
    color: #1a1a1a;
    border-color: #00FFEE;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-app-download-entrance__hero-title {
        font-size: 2.8em;
    }
    .page-index-app-download-entrance__hero-subtitle {
        font-size: 1.3em;
    }
    .page-index-app-download-entrance__section-title {
        font-size: 2.2em;
    }
    .page-index-app-download-entrance__download-steps-grid {
        grid-template-columns: 1fr;
    }
    .page-index-app-download-entrance__qr-code-image {
        width: 150px;
        height: 150px;
    }
    .page-index-app-download-entrance__cta-button--large {
        font-size: 1.2em;
        padding: 15px 30px;
    }
    .page-index-app-download-entrance__cta-button--secondary {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}

@media (max-width: 768px) {
    .page-index-app-download-entrance__hero-title {
        font-size: 2.2em;
    }
    .page-index-app-download-entrance__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-app-download-entrance__section-title {
        font-size: 1.8em;
    }
    .page-index-app-download-entrance__features-grid,
    .page-index-app-download-entrance__bonus-grid {
        grid-template-columns: 1fr;
    }
    .page-index-app-download-entrance__feature-item,
    .page-index-app-download-entrance__bonus-item {
        padding: 25px;
    }
    .page-index-app-download-entrance__feature-title,
    .page-index-app-download-entrance__bonus-title {
        font-size: 1.5em;
    }
    .page-index-app-download-entrance__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-index-app-download-entrance__accordion-content {
        padding: 0 20px 15px;
    }
    .page-index-app-download-entrance__cta-buttons-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-app-download-entrance__cta-button,
    .page-index-app-download-entrance__cta-button--large,
    .page-index-app-download-entrance__cta-button--secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}