/* style/app-download-ios-guide.css */
.page-app-download-ios-guide {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text */
    background-color: #1a1a1a; /* Dark background to make neon colors pop */
    line-height: 1.6;
}

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

.page-app-download-ios-guide__container--centered {
    text-align: center;
}

.page-app-download-ios-guide__hero {
    background: linear-gradient(135deg, #FF0055, #00FFEE);
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-app-download-ios-guide__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 0, 85, 0.2) 0%, rgba(0, 255, 238, 0.2) 50%, transparent 70%);
    animation: page-app-download-ios-guide__hero-glow 15s infinite alternate;
    z-index: 0;
}

.page-app-download-ios-guide__hero > .page-app-download-ios-guide__container {
    position: relative;
    z-index: 1;
}

@keyframes page-app-download-ios-guide__hero-glow {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 1; }
}

.page-app-download-ios-guide__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 0 0 15px rgba(255, 0, 85, 0.8), 0 0 20px rgba(0, 255, 238, 0.8);
    font-weight: bold;
    letter-spacing: 1px;
}

.page-app-download-ios-guide__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-app-download-ios-guide__note {
    font-size: 0.9em;
    margin-top: 20px;
    color: #BBBBBB;
}

.page-app-download-ios-guide__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 0, 85, 0.1);
}

.page-app-download-ios-guide__section:last-of-type {
    border-bottom: none;
}

.page-app-download-ios-guide__section-title {
    font-size: 2.5em;
    color: #FF0055;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(255, 0, 85, 0.6);
    font-weight: bold;
}

.page-app-download-ios-guide__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF0055, #00FFEE);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-app-download-ios-guide__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #CCCCCC;
}

.page-app-download-ios-guide__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-app-download-ios-guide__cta-button--primary {
    background: linear-gradient(90deg, #FF0055, #00FFEE);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 5px 20px rgba(255, 0, 85, 0.4);
}

.page-app-download-ios-guide__cta-button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 238, 0.6);
    background: linear-gradient(90deg, #00FFEE, #FF0055);
}

.page-app-download-ios-guide__cta-button--secondary {
    background-color: #00FFEE;
    color: #1a1a1a;
    border: none;
    box-shadow: 0 3px 15px rgba(0, 255, 238, 0.3);
}

.page-app-download-ios-guide__cta-button--secondary:hover {
    background-color: #4dfff3;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 238, 0.5);
}

.page-app-download-ios-guide__cta-button--tertiary {
    background-color: transparent;
    color: #FF0055;
    border: 2px solid #FF0055;
    box-shadow: none;
}

.page-app-download-ios-guide__cta-button--tertiary:hover {
    background-color: rgba(255, 0, 85, 0.1);
    border-color: #00FFEE;
    color: #00FFEE;
}

.page-app-download-ios-guide__cta-button--ghost {
    background-color: transparent;
    color: #00FFEE;
    border: 2px solid #00FFEE;
    margin-left: 20px;
}

.page-app-download-ios-guide__cta-button--ghost:hover {
    background-color: rgba(0, 255, 238, 0.1);
    color: #FF0055;
    border-color: #FF0055;
}

.page-app-download-ios-guide__cta-group {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

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

.page-app-download-ios-guide__feature-card {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 0, 85, 0.1);
}

.page-app-download-ios-guide__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 255, 238, 0.2);
}

.page-app-download-ios-guide__feature-card h3 {
    font-size: 1.5em;
    color: #FF0055;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(255, 0, 85, 0.4);
}

.page-app-download-ios-guide__feature-card p {
    color: #B0B0B0;
    font-size: 0.95em;
}

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

.page-app-download-ios-guide__download-method {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 238, 0.1);
}

.page-app-download-ios-guide__download-method h3 {
    font-size: 2em;
    color: #00FFEE;
    margin-bottom: 25px;
    text-shadow: 0 0 5px rgba(0, 255, 238, 0.6);
}

.page-app-download-ios-guide__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-app-download-ios-guide__steps-list li {
    margin-bottom: 25px;
    position: relative;
    padding-left: 45px;
}

.page-app-download-ios-guide__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #FF0055, #00FFEE);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
}

.page-app-download-ios-guide__steps-list li strong {
    color: #FF0055;
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
}

.page-app-download-ios-guide__steps-list li p {
    color: #CCCCCC;
}

.page-app-download-ios-guide__text-link {
    color: #00FFEE;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-app-download-ios-guide__text-link:hover {
    color: #FF0055;
    text-decoration: underline;
}

.page-app-download-ios-guide__guide-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 238, 0.2);
}

.page-app-download-ios-guide__faq-list {
    margin-top: 40px;
}

.page-app-download-ios-guide__faq-item {
    background-color: #2a2a2a;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FF0055;
}

.page-app-download-ios-guide__faq-item h3 {
    color: #FF0055;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-app-download-ios-guide__faq-item p {
    color: #B0B0B0;
    margin-bottom: 10px;
}

.page-app-download-ios-guide__faq-item ol {
    margin-left: 20px;
    color: #B0B0B0;
}

.page-app-download-ios-guide__faq-item ol li {
    margin-bottom: 5px;
}

.page-app-download-ios-guide__faq-item strong {
    color: #00FFEE;
}

.page-app-download-ios-guide__feature-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 255, 238, 0.1);
}

.page-app-download-ios-guide__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 0, 85, 0.2);
}

.page-app-download-ios-guide__feature-item h3 {
    font-size: 1.6em;
    color: #00FFEE;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(0, 255, 238, 0.4);
}

.page-app-download-ios-guide__feature-item p {
    color: #B0B0B0;
    font-size: 1em;
}

.page-app-download-ios-guide__feature-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 0, 85, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-app-download-ios-guide__title {
        font-size: 2.5em;
    }
    .page-app-download-ios-guide__subtitle {
        font-size: 1.2em;
    }
    .page-app-download-ios-guide__section-title {
        font-size: 2em;
    }
    .page-app-download-ios-guide__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-app-download-ios-guide__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-app-download-ios-guide__cta-button--ghost {
        margin-left: 0;
    }
    .page-app-download-ios-guide__grid {
        grid-template-columns: 1fr;
    }
    .page-app-download-ios-guide__download-method h3 {
        font-size: 1.6em;
    }
    .page-app-download-ios-guide__steps-list li {
        padding-left: 35px;
    }
    .page-app-download-ios-guide__steps-list li::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-app-download-ios-guide__title {
        font-size: 2em;
    }
    .page-app-download-ios-guide__subtitle {
        font-size: 1em;
    }
    .page-app-download-ios-guide__section-title {
        font-size: 1.8em;
    }
    .page-app-download-ios-guide__hero {
        padding: 60px 0;
    }
    .page-app-download-ios-guide__section {
        padding: 40px 0;
    }
    .page-app-download-ios-guide__feature-card,
    .page-app-download-ios-guide__download-method,
    .page-app-download-ios-guide__faq-item,
    .page-app-download-ios-guide__feature-item {
        padding: 20px;
    }
    .page-app-download-ios-guide__feature-card h3,
    .page-app-download-ios-guide__faq-item h3,
    .page-app-download-ios-guide__feature-item h3 {
        font-size: 1.2em;
    }
    .page-app-download-ios-guide__download-method h3 {
        font-size: 1.4em;
    }
}