/* style/index-platform-advantages.css */
/* 页面完整样式代码 - 注意：所有选择器必须添加页面前缀 */

/* General Styles for the page content */
.page-index-platform-advantages {
    font-family: 'Arial', sans-serif;
    color: #333; /* Dark text for readability on light backgrounds */
    line-height: 1.6;
    background-color: #f9f9f9; /* Light background for the page */
}

/* Container for responsive layout */
.page-index-platform-advantages .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styling */
.page-index-platform-advantages section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-index-platform-advantages section:nth-of-type(even) {
    background-color: #f2f2f2; /* Alternate background for sections */
}

/* Headings */
.page-index-platform-advantages .section-title {
    font-size: 2.5em;
    color: #1A2B4C; /* Main brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-index-platform-advantages .item-title,
.page-index-platform-advantages .step-title {
    font-size: 1.8em;
    color: #1A2B4C;
    margin-bottom: 20px;
    text-align: left;
}

/* Text content */
.page-index-platform-advantages .text-content {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #444;
}

/* Hero Section */
.page-index-platform-advantages .hero-section {
    background: linear-gradient(135deg, #1A2B4C 0%, #3a4a6c 100%); /* Gradient with main brand color */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-index-platform-advantages .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-index-platform-advantages .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Auxiliary color for hero title for strong contrast */
    line-height: 1.2;
}

.page-index-platform-advantages .hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-index-platform-advantages .hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-index-platform-advantages .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    text-align: center;
}

.page-index-platform-advantages .btn-primary {
    background-color: #FFD700; /* Auxiliary color for primary button */
    color: #1A2B4C; /* Main brand color for text on primary button */
    border: 2px solid #FFD700;
}

.page-index-platform-advantages .btn-primary:hover {
    background-color: #e0bb00;
    border-color: #e0bb00;
    color: #0d1a2f;
    transform: translateY(-3px);
}

.page-index-platform-advantages .btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-platform-advantages .btn-secondary:hover {
    background-color: #FFD700;
    color: #1A2B4C;
    transform: translateY(-3px);
}

.page-index-platform-advantages .hero-image-wrapper {
    margin-top: 40px;
    display: none; /* Hide image on smaller screens, show on larger if needed */
}

.page-index-platform-advantages .hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Advantage Items */
.page-index-platform-advantages .advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-index-platform-advantages .advantage-item:hover {
    transform: translateY(-5px);
}

.page-index-platform-advantages .item-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.page-index-platform-advantages .item-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.page-index-platform-advantages .text-link {
    color: #1A2B4C; /* Main brand color for internal links */
    text-decoration: underline;
    font-weight: bold;
}

.page-index-platform-advantages .text-link:hover {
    color: #FFD700; /* Auxiliary color on hover */
    text-decoration: none;
}

/* Responsible Gambling Section */
.page-index-platform-advantages .responsible-gambling-section .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

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

/* CTA Section */
.page-index-platform-advantages .cta-section {
    background-color: #1A2B4C; /* Main brand color for CTA section background */
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-index-platform-advantages .cta-section .section-title {
    color: #FFD700; /* Auxiliary color for CTA title */
}

.page-index-platform-advantages .cta-section .text-content {
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-index-platform-advantages .cta-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-index-platform-advantages .step-item {
    background-color: #2b3d5c; /* Slightly lighter shade of main brand color */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-index-platform-advantages .step-item .step-title {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 0;
}

.page-index-platform-advantages .step-item .text-content {
    color: #cccccc;
    flex-grow: 1; /* Ensures text fills space */
}

.page-index-platform-advantages .btn-cta {
    background-color: #FFD700;
    color: #1A2B4C;
    border: none;
    padding: 12px 25px;
    margin-top: 20px;
    font-size: 1em;
}

.page-index-platform-advantages .btn-cta:hover {
    background-color: #e0bb00;
    color: #0d1a2f;
}

.page-index-platform-advantages .final-cta {
    margin-top: 50px;
}

.page-index-platform-advantages .btn-large {
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 10px;
    background-color: #FFD700;
    color: #1A2B4C;
    border: 2px solid #FFD700;
}

.page-index-platform-advantages .btn-large:hover {
    background-color: #e0bb00;
    border-color: #e0bb00;
    color: #0d1a2f;
}

/* Contact Info Section */
.page-index-platform-advantages .contact-info {
    text-align: center;
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-index-platform-advantages .btn-contact {
    background-color: #1A2B4C;
    color: #ffffff;
    border: 2px solid #1A2B4C;
    margin-top: 30px;
}

.page-index-platform-advantages .btn-contact:hover {
    background-color: #0d1a2f;
    border-color: #0d1a2f;
    color: #FFD700;
}