/* style/slots.css */

/* Base Styles for page-slots */
.page-slots {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-slots__section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-slots__section:nth-child(even) {
    background-color: #e9ecef;
}

.page-slots__title,
.page-slots__section-title {
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-slots__title {
    font-size: 2.8em;
    margin-top: 20px;
}

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

.page-slots__subtitle {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
}

.page-slots__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-slots__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.page-slots__btn--primary {
    background-color: #DC143C; /* Action color */
    color: #fff;
    border: 2px solid #DC143C;
}

.page-slots__btn--primary:hover {
    background-color: #c01234;
    border-color: #c01234;
    transform: translateY(-2px);
}

.page-slots__btn--secondary {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
}

.page-slots__btn--secondary:hover {
    background-color: #003366;
    color: #fff;
    transform: translateY(-2px);
}

.page-slots__btn--large {
    font-size: 1.3em;
    padding: 15px 35px;
}

/* Hero Section */
.page-slots__hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Darker blue gradient */
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-slots__hero .page-slots__container {
    z-index: 1;
    position: relative;
}

.page-slots__hero .page-slots__title {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-slots__hero .page-slots__subtitle {
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slots__hero .page-slots__btn {
    margin-top: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-slots__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

/* Why Choose Section */
.page-slots__section--why-choose {
    background-color: #f8f9fa;
}

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

.page-slots__grid-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-slots__grid-item .page-slots__item-title {
    color: #003366;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-slots__grid-item p {
    color: #444;
}

.page-slots__item-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

/* Types Section */
.page-slots__section--types {
    background-color: #e9ecef;
}

.page-slots__flex-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.page-slots__flex-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-slots__flex-item .page-slots__item-title {
    color: #003366;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-slots__flex-item p {
    color: #555;
}

/* Tips Section */
.page-slots__section--tips {
    position: relative;
    background-color: #f8f9fa;
    padding-bottom: 80px;
}

.page-slots__tips-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-slots__section--tips .page-slots__container {
    position: relative;
    z-index: 1;
}

.page-slots__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-slots__tip-list li {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #FFD700;
}

.page-slots__tip-list li .page-slots__item-title {
    color: #003366;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-slots__tip-list li p {
    color: #555;
}

/* FAQ Section */
.page-slots__section--faq {
    background-color: #e9ecef;
}

.page-slots__faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-slots__faq-question {
    color: #003366;
    font-size: 1.3em;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    width: 100%;
}

.page-slots__faq-answer {
    color: #555;
    padding-left: 10px;
    border-left: 3px solid #FFD700;
    margin-top: 10px;
}

.page-slots__faq-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

/* Call to Action Section */
.page-slots__section--cta {
    background: linear-gradient(90deg, #003366, #004080);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-slots__section--cta .page-slots__section-title {
    color: #FFD700;
}

.page-slots__section--cta p {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Related Articles Section */
.page-slots__section--related-articles {
    background-color: #f8f9fa;
}

.page-slots__article-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-slots__article-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

.page-slots__article-title a {
    color: #003366;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-slots__article-title a:hover {
    color: #FFD700;
}

.page-slots__article-description {
    color: #555;
    margin-bottom: 20px;
}

/* Conclusion Section */
.page-slots__section--conclusion {
    background-color: #003366;
    color: #f0f0f0;
    text-align: center;
    padding: 40px 0;
}

.page-slots__conclusion-text {
    font-size: 1.1em;
}

.page-slots__conclusion-text .page-slots__link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-slots__conclusion-text .page-slots__link:hover {
    text-decoration: underline;
}

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

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

    .page-slots__hero {
        padding: 60px 0;
        min-height: 400px;
    }

    .page-slots__grid,
    .page-slots__flex-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .page-slots__flex-item {
        flex: 1 1 100%;
    }

    .page-slots__section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-slots__title {
        font-size: 1.8em;
    }

    .page-slots__section-title {
        font-size: 1.6em;
    }

    .page-slots__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-slots__btn--large {
        font-size: 1.1em;
        padding: 12px 25px;
    }

    .page-slots__hero {
        min-height: 350px;
    }

    .page-slots__grid-item,
    .page-slots__flex-item,
    .page-slots__tip-list li,
    .page-slots__faq-item,
    .page-slots__article-item {
        padding: 20px;
    }
}