/* style/register-login-app-download-ios.css */
.page-register-login-app-download-ios {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-register-login-app-download-ios__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-register-login-app-download-ios__hero-section {
    background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Deeper blue gradient for primary */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-register-login-app-download-ios__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,geometric,subtle_texture]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-register-login-app-download-ios__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00; /* Gold for main title */
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-register-login-app-download-ios__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-register-login-app-download-ios__download-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.page-register-login-app-download-ios__qr-code-wrapper {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-register-login-app-download-ios__qr-code {
    width: 180px;
    height: 180px;
    display: block;
}

.page-register-login-app-download-ios__qr-text {
    color: #003366;
    margin-top: 10px;
    font-weight: bold;
    font-size: 0.95em;
}

.page-register-login-app-download-ios__download-button {
    display: inline-block;
    background-color: #FFCC00; /* Gold button */
    color: #003366; /* Deep blue text for contrast */
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.4em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login-app-download-ios__download-button:hover {
    background-color: #e6b800; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-register-login-app-download-ios__small-text {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

/* General Section Styling */
.page-register-login-app-download-ios__section {
    padding: 60px 0;
}

.page-register-login-app-download-ios__section:nth-of-type(even) {
    background-color: #f8f8f8;
}

.page-register-login-app-download-ios__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.page-register-login-app-download-ios__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-register-login-app-download-ios__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555;
}

/* Features Grid (Why Download) */
.page-register-login-app-download-ios__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-register-login-app-download-ios__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-login-app-download-ios__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-register-login-app-download-ios__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-register-login-app-download-ios__feature-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-register-app-download-ios__feature-text {
    color: #666;
    font-size: 1em;
}

/* Installation Guide */
.page-register-login-app-download-ios__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-register-login-app-download-ios__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-register-login-app-download-ios__step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #FFCC00; /* Gold */
    color: #003366; /* Deep blue */
    font-size: 2.5em;
    font-weight: bold;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 3px solid #003366;
}

.page-register-login-app-download-ios__step-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
    padding-top: 40px; /* Space for number */
}

.page-register-login-app-download-ios__step-text {
    color: #666;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-register-login-app-download-ios__step-text a {
    color: #003366;
    font-weight: bold;
    text-decoration: underline;
}

.page-register-login-app-download-ios__step-text a:hover {
    color: #FFCC00;
}

.page-register-login-app-download-ios__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* App Features Detail */
.page-register-login-app-download-ios__features-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.page-register-login-app-download-ios__feature-detail-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.page-register-login-app-download-ios__feature-detail-item:nth-child(even) {
    flex-direction: row-reverse;
}

.page-register-login-app-download-ios__feature-detail-image {
    width: 40%;
    min-width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-register-login-app-download-ios__feature-detail-content {
    flex: 1;
}

.page-register-login-app-download-ios__feature-detail-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-register-login-app-download-ios__feature-detail-text {
    color: #555;
    font-size: 1.05em;
    line-height: 1.8;
}

/* Security and Responsible Gaming */
.page-register-login-app-download-ios__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}