/* style/platform-reviews-lottery-platforms.css */
.page-platform-reviews-lottery-platforms {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-platform-reviews-lottery-platforms .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-platform-reviews-lottery-platforms .hero-section {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Deep blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-platform-reviews-lottery-platforms .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,blue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-platform-reviews-lottery-platforms .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    color: #FFCC00; /* Accent color for title */
}

.page-platform-reviews-lottery-platforms .hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-platform-reviews-lottery-platforms .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    position: relative;
    z-index: 1;
}

.page-platform-reviews-lottery-platforms .btn-primary {
    background-color: #FFCC00; /* Accent color */
    color: #003366; /* Dark blue text */
    border: 2px solid #FFCC00;
}

.page-platform-reviews-lottery-platforms .btn-primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-platform-reviews-lottery-platforms .btn-secondary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-platform-reviews-lottery-platforms .btn-secondary:hover {
    background-color: #004d99;
    transform: translateY(-2px);
}

.page-platform-reviews-lottery-platforms .btn-primary-outline {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-platform-reviews-lottery-platforms .btn-primary-outline:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
}

.page-platform-reviews-lottery-platforms .content-block {
    padding: 60px 0;
}

.page-platform-reviews-lottery-platforms .bg-accent {
    background-color: #f0f8ff;
}

.page-platform-reviews-lottery-platforms .bg-dark {
    background-color: #003366;
    color: #ffffff;
}

.page-platform-reviews-lottery-platforms .section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-platform-reviews-lottery-platforms .section-title.text-light {
    color: #FFCC00;
}

.page-platform-reviews-lottery-platforms .section-title.text-light::after {
    background-color: #ffffff;
}

.page-platform-reviews-lottery-platforms .section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-platform-reviews-lottery-platforms .content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-platform-reviews-lottery-platforms .content-grid.reverse-grid {
    flex-direction: row-reverse;
}

.page-platform-reviews-lottery-platforms .content-grid .text-content {
    flex: 1;
}

.page-platform-reviews-lottery-platforms .content-grid .text-content p {
    margin-bottom: 20px;
    color: #333;
}

.page-platform-reviews-lottery-platforms .content-grid .image-content {
    flex: 1;
    text-align: center;
}

.page-platform-reviews-lottery-platforms .content-grid .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-platform-reviews-lottery-platforms .feature-grid, .page-platform-reviews-lottery-platforms .promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-platform-reviews-lottery-platforms .feature-item, .page-platform-reviews-lottery-platforms .promotion-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-platform-reviews-lottery-platforms .bg-accent .feature-item {
    background-color: #ffffff;
}

.page-platform-reviews-lottery-platforms .bg-dark .promotion-item {
    background-color: #004d99;
    color: #ffffff;
}

.page-platform-reviews-lottery-platforms .feature-item:hover, .page-platform-reviews-lottery-platforms .promotion-item:hover {
    transform: translateY(-5px);
}

.page-platform-reviews-lottery-platforms .feature-icon, .page-platform-reviews-lottery-platforms .promo-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-platform-reviews-lottery-platforms .feature-item h3, .page-platform-reviews-lottery-platforms .promotion-item h3 {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-platform-reviews-lottery-platforms .bg-dark .promotion-item h3 {
    color: #FFCC00;
}

.page-platform-reviews-lottery-platforms .feature-item p, .page-platform-reviews-lottery-platforms .promotion-item p {
    font-size: 1em;
    color: #555;
}

.page-platform-reviews-lottery-platforms .bg-dark .promotion-item p {
    color: #e0e0e0;
}

.page-platform-reviews-lottery-platforms .cta-section {
    padding: 80px 0;
    background-color: #003366;
    color: #ffffff;
    text-align: center;
}

.page-platform-reviews-lottery-platforms .cta-section .section-title {
    color: #FFCC00;
}

.page-platform-reviews-lottery-platforms .cta-section .btn-lg {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-platform-reviews-lottery-platforms .faq-section {
    padding: 60px 0;
}

.page-platform-reviews-lottery-platforms .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-platform-reviews-lottery-platforms .faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-platform-reviews-lottery-platforms .faq-item h3 {
    color: #003366;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-platform-reviews-lottery-platforms .faq-item p {
    color: #555;
    font-size: 1em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-platform-reviews-lottery-platforms .hero-title {
        font-size: 2.8em;
    }
    .page-platform-reviews-lottery-platforms .hero-subtitle {
        font-size: 1.3em;
    }
    .page-platform-reviews-lottery-platforms .section-title {
        font-size: 2em;
    }
    .page-platform-reviews-lottery-platforms .content-grid {
        flex-direction: column;
    }
    .page-platform-reviews-lottery-platforms .content-grid.reverse-grid {
        flex-direction: column;
    }
    .page-platform-reviews-lottery-platforms .content-grid .image-content {
        order: -1; /* Image appears before text on small screens for normal grid */
    }
    .page-platform-reviews-lottery-platforms .content-grid.reverse-grid .image-content {
        order: 0; /* Image appears after text on small screens for reverse grid */
    }
}

@media (max-width: 768px) {
    .page-platform-reviews-lottery-platforms .hero-section {
        padding: 80px 0;
    }
    .page-platform-reviews-lottery-platforms .hero-title {
        font-size: 2.2em;
    }
    .page-platform-reviews-lottery-platforms .hero-subtitle {
        font-size: 1.1em;
    }
    .page-platform-reviews-lottery-platforms .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-platform-reviews-lottery-platforms .section-title {
        font-size: 1.8em;
    }
    .page-platform-reviews-lottery-platforms .feature-grid, .page-platform-reviews-lottery-platforms .promotion-grid {
        grid-template-columns: 1fr;
    }
    .page-platform-reviews-lottery-platforms .content-block {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-platform-reviews-lottery-platforms .hero-title {
        font-size: 1.8em;
    }
    .page-platform-reviews-lottery-platforms .hero-subtitle {
        font-size: 1em;
    }
    .page-platform-reviews-lottery-platforms .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-platform-reviews-lottery-platforms .section-title {
        font-size: 1.5em;
    }
    .page-platform-reviews-lottery-platforms .feature-icon, .page-platform-reviews-lottery-platforms .promo-icon {
        width: 60px;
        height: 60px;
    }
    .page-platform-reviews-lottery-platforms .feature-item h3, .page-platform-reviews-lottery-platforms .promotion-item h3 {
        font-size: 1.3em;
    }
}