/* style/index-platform-highlights.css */

/* General Styling */
.page-index-platform-highlights {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFFFFF; /* Default text color on dark backgrounds */
    background-color: #000080; /* Main dark background */
}

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

/* Headings */
.page-index-platform-highlights__title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-index-platform-highlights__subtitle,
.page-index-platform-highlights__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #E0E0E0; /* Lighter white for descriptions */
}

.page-index-platform-highlights__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-platform-highlights__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-platform-highlights__feature-title,
.page-index-platform-highlights__step-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for feature/step titles */
    margin-bottom: 15px;
    text-align: center;
}

.page-index-platform-highlights__feature-text,
.page-index-platform-highlights__step-text {
    color: #FFFFFF;
    font-size: 1em;
    text-align: justify;
}

/* Buttons */
.page-index-platform-highlights__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-align: center;
    min-width: 180px;
}

.page-index-platform-highlights__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-index-platform-highlights__button--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-index-platform-highlights__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-index-platform-highlights__button--secondary:hover {
    background-color: #FFD700;
    color: #000080;
    transform: translateY(-2px);
}

.page-index-platform-highlights__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    min-width: unset;
    margin-top: 15px;
    display: inline-block;
}

/* Hero Section */
.page-index-platform-highlights__hero {
    background: linear-gradient(135deg, #000080, #1a1a99); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-platform-highlights__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1); /* Gold accent */
    border-radius: 50%;
    filter: blur(50px);
}

.page-index-platform-highlights__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 215, 0, 0.15); /* Gold accent */
    border-radius: 50%;
    filter: blur(60px);
}

.page-index-platform-highlights__hero .page-index-platform-highlights__container {
    position: relative;
    z-index: 1;
}

.page-index-platform-highlights__cta-group {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Sections */
.page-index-platform-highlights__section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1); /* Subtle gold divider */
}

.page-index-platform-highlights__section:last-of-type {
    border-bottom: none;
}

.page-index-platform-highlights__section--why-us {
    background-color: #000066; /* Slightly lighter dark blue */
}

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

.page-index-platform-highlights__feature-item {
    background-color: #000080; /* Dark blue for feature cards */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-platform-highlights__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: #FFD700;
    padding: 10px;
    object-fit: contain;
}

.page-index-platform-highlights__game-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
    color: #E0E0E0;
}

.page-index-platform-highlights__game-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-index-platform-highlights__game-list li::before {
    content: '★'; /* Star icon for list items */
    color: #FFD700;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

.page-index-platform-highlights__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

/* How-to Section */
.page-index-platform-highlights__section--how-to {
    background-color: #000080; /* Dark blue */
}

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

.page-index-platform-highlights__step-item {
    background-color: #000066; /* Slightly lighter dark blue for step cards */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-platform-highlights__step-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
    border-radius: 50%;
    background-color: #FFD700;
    padding: 15px;
    object-fit: contain;
    box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
}

/* Conclusion Section */
.page-index-platform-highlights__section--conclusion {
    background-color: #000066; /* Slightly lighter dark blue */
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-platform-highlights__title {
        font-size: 2em;
    }

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

    .page-index-platform-highlights__feature-title,
    .page-index-platform-highlights__step-title {
        font-size: 1.4em;
    }

    .page-index-platform-highlights__button {
        padding: 12px 25px;
        font-size: 1em;
        margin-left: 0; /* Remove margin for stacked buttons */
        width: 100%; /* Full width buttons */
        margin-bottom: 15px; /* Add space between stacked buttons */
    }
    .page-index-platform-highlights__button:last-child {
        margin-bottom: 0;
    }

    .page-index-platform-highlights__cta-group {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .page-index-platform-highlights__hero {
        padding: 60px 0;
    }

    .page-index-platform-highlights__title {
        font-size: 1.8em;
    }

    .page-index-platform-highlights__subtitle,
.page-index-platform-highlights__section-description {
        font-size: 0.95em;
    }

    .page-index-platform-highlights__section-title {
        font-size: 1.6em;
    }

    .page-index-platform-highlights__feature-item,
    .page-index-platform-highlights__step-item {
        padding: 20px;
    }

    .page-index-platform-highlights__feature-icon,
    .page-index-platform-highlights__step-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
}