/* style/index.css */

/* General styles for the page content */
.page-index {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: var(--secondary-color); /* #FFFFFF */
}

.page-index__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-index__section-title {
    font-size: 36px;
    color: #26A9E0; /* Primary color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index__section-description {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555555;
}

/* Color contrast classes */
.page-index__dark-bg {
    background-color: #26A9E0; /* Primary brand color */
    color: #ffffff; /* White text for contrast */
}

.page-index__light-bg {
    background-color: #ffffff;
    color: #333333;
}

/* CTA Button Base Style */
.page-index__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #EA7C07; /* Login color for primary action */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index__cta-button:hover {
    background: #d46c06; /* Darker shade on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index__btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: #26A9E0; /* Primary brand color */
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-index__btn-primary:hover {
    background: #2197cc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-index__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background: #ffffff;
    color: #26A9E0; /* Primary brand color for text */
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #26A9E0;
    cursor: pointer;
}

.page-index__btn-secondary:hover {
    background: #26A9E0;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-index__btn-link {
    display: inline-block;
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.page-index__btn-link:hover {
    color: #1e87b7;
    text-decoration: underline;
}

/* Images base style */
.page-index img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    filter: none !important; /* Ensure no filter on images */
}

/* HERO Main Image Area */
.page-index__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    background: linear-gradient(135deg, #26A9E0, #FFFFFF); /* Gradient background for visual appeal */
}

.page-index__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-index__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-index__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    min-height: 200px;
}

.page-index__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9); /* Slightly transparent white background for text readability */
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: -80px; /* Overlap with image for better design */
}

.page-index__hero-title {
    font-size: 48px;
    color: #26A9E0; /* Primary brand color */
    margin-bottom: 15px;
    font-weight: 900;
    line-height: 1.2;
}

.page-index__hero-description {
    font-size: 20px;
    color: #555555;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Module 1: Introduction Section */
.page-index__introduction-section {
    padding: 80px 0;
}

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

.page-index__feature-item {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index__feature-item img {
    
    
    margin: 0 auto 20px auto;
    border-radius: 50%; /* Circular images */
    border: 4px solid #26A9E0;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-index__feature-title {
    font-size: 24px;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-index__feature-text {
    font-size: 16px;
    color: #666666;
}

/* Module 2: Quick Access Links */
.page-index__quick-access-section {
    padding: 80px 0;
    text-align: center;
}

.page-index__quick-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

/* Module 3: Core Games/Services Introduction */
.page-index__games-section {
    padding: 80px 0;
}

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

.page-index__game-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index__game-card img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-bottom: 1px solid #eee;
    border-radius: 10px 10px 0 0;
    min-width: 200px;
    min-height: 200px;
}

.page-index__game-title {
    font-size: 22px;
    margin: 20px 15px 10px 15px;
    font-weight: bold;
}

.page-index__game-title a {
    color: #26A9E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index__game-title a:hover {
    color: #1e87b7;
    text-decoration: underline;
}

.page-index__game-text {
    font-size: 15px;
    color: #666666;
    padding: 0 15px 20px 15px;
}

/* Module 4: Promotional Activities */
.page-index__promotions-section {
    padding: 80px 0;
}

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

.page-index__promo-card {
    background-color: rgba(255, 255, 255, 0.15); /* Slightly transparent white on dark background */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
}

.page-index__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index__promo-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px 10px 0 0;
    min-width: 200px;
    min-height: 200px;
}

.page-index__promo-title {
    font-size: 22px;
    margin: 20px 15px 10px 15px;
    font-weight: bold;
    color: #ffffff;
}

.page-index__promo-text {
    font-size: 15px;
    color: #f0f0f0;
    padding: 0 15px;
}

/* Module 5: Security & Customer Service */
.page-index__security-support-section {
    padding: 80px 0;
}

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

.page-index__security-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__security-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index__security-title {
    font-size: 24px;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index__security-text {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
}