/* style/index.css */
.page-index {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light grey for general text on dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

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

.page-index-text-center {
    text-align: center;
}

.page-index-mt-40 {
    margin-top: 40px;
}

.page-index-section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-index-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-index-section-description {
    font-size: 1.1em;
    color: #ccc;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-index-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-index-btn-primary {
    background-color: #FFD700;
    color: #1A202C;
    border-color: #FFD700;
}

.page-index-btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-index-btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
    margin-left: 15px;
}

.page-index-btn-secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-index-btn-outline {
    background-color: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 8px 18px;
    font-size: 0.9em;
    border-radius: 5px;
}

.page-index-btn-outline:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-index-btn-lg {
    padding: 15px 35px;
    font-size: 1.1em;
}

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

.page-index-grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-index-card-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-index-card-title a:hover {
    text-decoration: underline;
}

/* Hero Section */
.page-index-hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a4a60 100%); /* Dark gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract_geometric,dark_pattern,luxury]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-index-hero-section > .page-index-container {
    position: relative;
    z-index: 1;
}

.page-index-hero-title {
    font-size: 3.8em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-index-hero-description {
    font-size: 1.3em;
    color: #ccc;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-index-hero-buttons .page-index-btn {
    margin: 0 10px;
}

.page-index-hero-image {
    position: absolute;
    bottom: 0;
    right: -10%;
    max-width: 50%;
    height: auto;
    opacity: 0.7;
    z-index: 0;
    filter: grayscale(50%) brightness(0.8);
    pointer-events: none;
}

/* About Section */
.page-index-about-section {
    padding: 80px 0;
    background-color: #1A202C;
}

.page-index-about-content p {
    color: #ccc;
    margin-bottom: 15px;
}

.page-index-about-image-wrapper {
    text-align: center;
}

/* Reviews Section */
.page-index-reviews-section {
    padding: 80px 0;
    background-color: #242c3d;
}

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

.page-index-review-card {
    background-color: #1A202C;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-index-card-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-review-card .page-index-card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-index-review-card .page-index-card-description {
    color: #bbb;
    margin-bottom: 20px;
}

/* Offers Section */
.page-index-offers-section {
    padding: 80px 0;
    background-color: #1A202C;
}

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

.page-index-offer-card {
    background-color: #242c3d;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-offer-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.page-index-card-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-offer-card h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-index-offer-card p {
    color: #bbb;
    margin-bottom: 25px;
}

/* Strategies Section */
.page-index-strategies-section {
    padding: 80px 0;
    background-color: #242c3d;
}

.page-index-strategies-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.page-index-strategies-content ul li {
    background: url('[GALLERY:icon:gold_check_mark,bullet_point,strategy]') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #ccc;
}

.page-index-strategies-content ul li strong {
    color: #FFD700;
}

.page-index-strategies-content p {
    color: #ccc;
    margin-bottom: 15px;
}

.page-index-strategies-image-wrapper {
    text-align: center;
}

/* Responsible Gambling Section */
.page-index-responsible-gambling-section {
    padding: 80px 0;
    background-color: #1A202C;
}

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

.page-index-responsible-item {
    background-color: #242c3d;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-responsible-item .page-index-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

.page-index-responsible-item h3 {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-index-responsible-item p {
    color: #bbb;
}

/* Detail Pages Section */
.page-index-detail-pages-section {
    padding: 80px 0;
    background-color: #242c3d;
}

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

.page-index-detail-card {
    background-color: #1A202C;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
}

.page-index-detail-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.page-index-detail-card .page-index-card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-index-detail-card .page-index-card-description {
    color: #bbb;
    margin-bottom: 20px;
}

/* CTA Section */
.page-index-cta-section {
    padding: 100px 0;
    background: linear-gradient(45deg, #1A202C, #4a5a70);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-index-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract_geometric,dark_pattern,luxury]');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.page-index-cta-section > .page-index-container {
    position: relative;
    z-index: 1;
}

.page-index-cta-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.page-index-cta-section .page-index-section-title {
    font-size: 3em;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.page-index-cta-section .page-index-section-description {
    font-size: 1.2em;
    max-width: 700px;
    margin-bottom: 50px;
}

.page-index-cta-buttons .page-index-btn {
    margin: 0 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-grid-2-cols {
        grid-template-columns: 1fr;
    }

    .page-index-hero-title {
        font-size: 3em;
    }

    .page-index-hero-image {
        display: none;
    }

    .page-index-section-title {
        font-size: 2.2em;
    }

    .page-index-cta-section .page-index-section-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-index-hero-title {
        font-size: 2.5em;
    }

    .page-index-hero-description {
        font-size: 1em;
    }

    .page-index-hero-buttons .page-index-btn {
        margin: 10px 0;
        display: block;
        width: 100%;
    }

    .page-index-btn-secondary {
        margin-left: 0;
    }

    .page-index-section-title {
        font-size: 1.8em;
    }

    .page-index-section-description {
        font-size: 0.95em;
    }

    .page-index-reviews-grid, .page-index-offers-grid, .page-index-responsible-grid, .page-index-detail-pages-grid {
        grid-template-columns: 1fr;
    }

    .page-index-card-title {
        font-size: 1.3em;
    }

    .page-index-cta-section .page-index-section-title {
        font-size: 2em;
    }

    .page-index-cta-buttons .page-index-btn {
        margin: 10px 0;
        display: block;
        width: 100%;
    }
}