/* style/index-quick-access.css */

/* General page styling */
.page-index-quick-access {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-index-quick-access-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings */
.page-index-quick-access h1,
.page-index-quick-access h2,
.page-index-quick-access h3 {
    color: #003366;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-index-quick-access h1 {
    font-size: 2.8em;
    text-align: center;
    color: #FFCC00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-quick-access h2 {
    font-size: 2.2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-index-quick-access h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
}

/* Paragraphs */
.page-index-quick-access p {
    margin-bottom: 15px;
    text-align: center;
    color: #555;
}

.page-index-quick-access strong {
    color: #003366;
}

/* Buttons */
.page-index-quick-access-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.page-index-quick-access-btn-primary {
    background-color: #FFCC00;
    color: #003366;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-quick-access-btn-primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-index-quick-access-btn-secondary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #FFCC00;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-quick-access-btn-secondary:hover {
    background-color: #001a33;
    border-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-index-quick-access-btn-tertiary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
    box-shadow: none;
}

.page-index-quick-access-btn-tertiary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-index-quick-access-btn-text {
    background-color: transparent;
    color: #003366;
    padding: 8px 15px;
    font-size: 1em;
    border: 1px solid #003366;
    border-radius: 5px;
}

.page-index-quick-access-btn-text:hover {
    background-color: #003366;
    color: #FFCC00;
}

/* Sections */
.page-index-quick-access section {
    padding: 60px 0;
    margin-bottom: 20px;
}

/* Hero Section */
.page-index-quick-access-hero {
    background: linear-gradient(135deg, #003366, #001a33);
    color: #ffffff;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-quick-access-hero h1 {
    color: #FFCC00;
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-index-quick-access-hero p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2em;
    color: #e0e0e0;
}

.page-index-quick-access-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.page-index-quick-access-hero-image {
    max-width: 90%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin-top: 30px;
}

/* Benefits Section */
.page-index-quick-access-benefits {
    background-color: #ffffff;
    text-align: center;
}

.page-index-quick-access-benefits h2 {
    color: #003366;
}

.page-index-quick-access-benefits p {
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-index-quick-access-benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-quick-access-benefit-item {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-index-quick-access-benefit-item h3 {
    color: #003366;
    margin-top: 20px;
    font-size: 1.5em;
}

.page-index-quick-access-benefit-item p {
    color: #666;
    text-align: left;
}

.page-index-quick-access-benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    object-fit: contain;
}

/* Steps Section */
.page-index-quick-access-steps {
    background-color: #e6f7ff;
    text-align: center;
}

.page-index-quick-access-steps h2 {
    color: #003366;
}

.page-index-quick-access-steps p {
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-index-quick-access-step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-quick-access-step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-quick-access-step-number {
    width: 50px;
    height: 50px;
    background-color: #FFCC00;
    color: #003366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-index-quick-access-step-item h3 {
    color: #003366;
    margin-top: 10px;
    margin-bottom: 15px;
}

.page-index-quick-access-step-item p {
    color: #666;
    flex-grow: 1;
    text-align: left;
}

.page-index-quick-access-step-item .page-index-quick-access-btn {
    margin-top: 20px;
}

/* Ecosystem Section */
.page-index-quick-access-ecosystem {
    background-color: #fdfdfd;
    text-align: center;
}

.page-index-quick-access-ecosystem h2 {
    color: #003366;
}

.page-index-quick-access-ecosystem p {
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-index-quick-access-ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-quick-access-ecosystem-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-index-quick-access-ecosystem-item h3 {
    color: #003366;
    margin-top: 15px;
}

.page-index-quick-access-ecosystem-item p {
    color: #666;
    text-align: left;
}

.page-index-quick-access-ecosystem-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-index-quick-access-cta-center {
    margin-top: 50px;
    text-align: center;
}

/* Promotions Section */
.page-index-quick-access-promotions {
    background-color: #f0f8ff;
    text-align: center;
}

.page-index-quick-access-promotions h2 {
    color: #003366;
}

.page-index-quick-access-promotions p {
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-index-quick-access-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-quick-access-promo-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-quick-access-promo-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-index-quick-access-promo-item h3 {
    color: #003366;
    margin-top: 10px;
    font-size: 1.5em;
}

.page-index-quick-access-promo-item p {
    color: #666;
    flex-grow: 1;
    text-align: left;
}

.page-index-quick-access-promo-item .page-index-quick-access-btn {
    margin-top: 20px;
}

/* Responsible Gaming Section */
.page-index-quick-access-responsible-gaming {
    background-color: #003366;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-index-quick-access-responsible-gaming h2 {
    color: #FFCC00;
    margin-bottom: 20px;
}

.page-index-quick-access-responsible-gaming p {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-index-quick-access-responsible-gaming .page-index-quick-access-btn {
    border-color: #FFCC00;
    color: #FFCC00;
}

.page-index-quick-access-responsible-gaming .page-index-quick-access-btn:hover {
    background-color: #FFCC00;
    color: #003366;
}

/* Call to Action Footer Section */
.page-index-quick-access-cta-footer {
    background-color: #FFCC00;
    color: #003366;
    padding: 80px 0;
    text-align: center;
}

.page-index-quick-access-cta-footer h2 {
    color: #003366;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.page-index-quick-access-cta-footer p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2em;
    color: #001a33;
}

.page-index-quick-access-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-quick-access h1 {
        font-size: 2.5em;
    }
    .page-index-quick-access h2 {
        font-size: 1.8em;
    }
    .page-index-quick-access-hero p,
    .page-index-quick-access-cta-footer p {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-index-quick-access-hero h1 {
        font-size: 2em;
    }
    .page-index-quick-access-hero-actions,
    .page-index-quick-access-cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-quick-access-btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-index-quick-access-benefit-grid,
    .page-index-quick-access-step-grid,
    .page-index-quick-access-ecosystem-grid,
    .page-index-quick-access-promo-grid {
        grid-template-columns: 1fr;
    }
    .page-index-quick-access-benefit-item p,
    .page-index-quick-access-step-item p,
    .page-index-quick-access-ecosystem-item p,
    .page-index-quick-access-promo-item p {
        text-align: center;
    }
    .page-index-quick-access-responsible-gaming p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-quick-access h1 {
        font-size: 1.8em;
    }
    .page-index-quick-access h2 {
        font-size: 1.6em;
    }
    .page-index-quick-access-btn {
        font-size: 1em;
        padding: 10px 20px;
    }
    .page-index-quick-access-hero {
        padding: 80px 0 40px;
    }
    .page-index-quick-access section {
        padding: 40px 0;
    }
}