/* style/index-latest-promotions.css */

/* Base Styles */
.page-index-latest-promotions {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.page-index-latest-promotions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-index-latest-promotions-section {
    padding: 60px 0;
    text-align: center;
}

.page-index-latest-promotions-section:nth-child(even) {
    background-color: #e9ecef;
}

.page-index-latest-promotions-section-title {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-index-latest-promotions-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    border-radius: 2px;
}

.page-index-latest-promotions-section-description {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-index-latest-promotions-sub-title {
    font-size: 1.8em;
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Buttons */
.page-index-latest-promotions-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-index-latest-promotions-button-primary {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.page-index-latest-promotions-button-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-button-secondary {
    background-color: #ffc107;
    color: #333;
    border-color: #ffc107;
}

.page-index-latest-promotions-button-secondary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-button-lg {
    padding: 15px 35px;
    font-size: 1.1em;
}

.page-index-latest-promotions-button-sm {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-index-latest-promotions-button-link {
    background: none;
    color: #007bff;
    border: none;
    padding: 0;
    margin-top: 10px;
    text-decoration: underline;
    font-weight: normal;
}

.page-index-latest-promotions-button-link:hover {
    color: #0056b3;
    background: none;
    transform: none;
    box-shadow: none;
}

/* Hero Section */
.page-index-latest-promotions-hero-section {
    background: linear-gradient(135deg, #007bff 0%, #3498db 100%);
    color: #fff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    min-height: 600px;
    text-align: left;
}

.page-index-latest-promotions-hero-content {
    flex: 1;
    padding-right: 30px;
}

.page-index-latest-promotions-hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.page-index-latest-promotions-hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-index-latest-promotions-hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-index-latest-promotions-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* About Cwin Section */
.page-index-latest-promotions-about-cwin {
    background-color: #fff;
}

.page-index-latest-promotions-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.page-index-latest-promotions-feature-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-index-latest-promotions-feature-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-index-latest-promotions-feature-item p {
    color: #666;
    font-size: 0.95em;
}

/* 188K Guide Section */
.page-index-latest-promotions-188k-guide {
    background-color: #e9ecef;
}

.page-index-latest-promotions-guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-latest-promotions-step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    position: relative;
    padding-left: 80px;
}

.page-index-latest-promotions-step-number {
    position: absolute;
    left: 20px;
    top: 30px;
    width: 40px;
    height: 40px;
    background-color: #ffc107;
    color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-step-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-index-latest-promotions-step-item p {
    color: #666;
    font-size: 0.95em;
}

.page-index-latest-promotions-guide-image {
    margin-top: 50px;
    margin-bottom: 40px;
}

.page-index-latest-promotions-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Terms Section */
.page-index-latest-promotions-terms {
    background-color: #fff;
}

.page-index-latest-promotions-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.page-index-latest-promotions-list li {
    background-color: #f8f9fa;
    border-left: 5px solid #007bff;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 5px;
    color: #333;
    font-size: 1em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions-list li strong {
    color: #007bff;
}

.page-index-latest-promotions-note {
    font-style: italic;
    color: #777;
    margin-top: 30px;
}

/* Other Offers Section */
.page-index-latest-promotions-other-offers {
    background-color: #f8f9fa;
}

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

.page-index-latest-promotions-offer-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions-offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-index-latest-promotions-offer-card .page-index-latest-promotions-offer-title {
    font-size: 1.3em;
    color: #007bff;
    margin: 20px 20px 10px 20px;
}

.page-index-latest-promotions-offer-card .page-index-latest-promotions-offer-title a {
    color: #007bff;
    text-decoration: none;
}

.page-index-latest-promotions-offer-card .page-index-latest-promotions-offer-title a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.page-index-latest-promotions-offer-description {
    color: #666;
    font-size: 0.95em;
    padding: 0 20px 20px 20px;
    flex-grow: 1;
}

.page-index-latest-promotions-offer-card .page-index-latest-promotions-button {
    margin: 0 20px 20px 20px;
    align-self: flex-start;
}

/* Gaming Experience Section */
.page-index-latest-promotions-gaming-experience {
    background-color: #fff;
}

.page-index-latest-promotions-gaming-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    text-align: left;
}

.page-index-latest-promotions-gaming-text {
    flex: 1;
    min-width: 300px;
}

.page-index-latest-promotions-gaming-text p {
    color: #666;
    margin-bottom: 15px;
}

.page-index-latest-promotions-gaming-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-index-latest-promotions-faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-index-latest-promotions-faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.page-index-latest-promotions-faq-question {
    font-size: 1.2em;
    color: #007bff;
    padding: 20px;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f8ff;
    border-bottom: 1px solid #e0e0e0;
}

.page-index-latest-promotions-faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #ffc107;
    transition: transform 0.3s ease;
}

.page-index-latest-promotions-faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-latest-promotions-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #fff;
}

.page-index-latest-promotions-faq-answer.active {
    max-height: 300px; /* Adjust as needed */
    padding: 20px;
}

.page-index-latest-promotions-faq-answer p {
    color: #444;
    margin-bottom: 10px;
}

/* Responsible Gambling Section */
.page-index-latest-promotions-responsible-gambling {
    background-color: #fcfcfc;
}

.page-index-latest-promotions-responsible-gambling p {
    max-width: 900px;
    margin: 20px auto;
    color: #555;
    text-align: left;
}

/* CTA Section */
.page-index-latest-promotions-cta-section {
    background: linear-gradient(90deg, #007bff, #ffc107);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-index-latest-promotions-cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
}

.page-index-latest-promotions-cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f0f8ff;
}

.page-index-latest-promotions-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-latest-promotions-hero-section {
        text-align: center;
        padding: 80px 0;
    }

    .page-index-latest-promotions-hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .page-index-latest-promotions-hero-image-wrapper {
        order: -1; /* Image above text on smaller screens */
    }

    .page-index-latest-promotions-hero-title {
        font-size: 2.8em;
    }

    .page-index-latest-promotions-hero-description {
        font-size: 1.1em;
    }

    .page-index-latest-promotions-gaming-content {
        flex-direction: column;
        text-align: center;
    }

    .page-index-latest-promotions-gaming-text,
    .page-index-latest-promotions-gaming-image-wrapper {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-index-latest-promotions-section {
        padding: 40px 0;
    }

    .page-index-latest-promotions-section-title {
        font-size: 2em;
    }

    .page-index-latest-promotions-section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-index-latest-promotions-hero-section {
        min-height: unset;
        padding: 60px 0;
    }

    .page-index-latest-promotions-hero-title {
        font-size: 2.2em;
    }

    .page-index-latest-promotions-hero-description {
        font-size: 1em;
    }

    .page-index-latest-promotions-cta-title {
        font-size: 2.2em;
    }

    .page-index-latest-promotions-cta-description {
        font-size: 1em;
    }

    .page-index-latest-promotions-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-index-latest-promotions-button-lg {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .page-index-latest-promotions-hero-section {
        flex-direction: column;
    }

    .page-index-latest-promotions-hero-content {
        order: 2;
    }

    .page-index-latest-promotions-hero-image-wrapper {
        order: 1;
        margin-bottom: 30px;
    }

    .page-index-latest-promotions-hero-title {
        font-size: 1.8em;
    }

    .page-index-latest-promotions-guide-steps {
        grid-template-columns: 1fr;
    }

    .page-index-latest-promotions-step-item {
        padding-left: 60px;
    }

    .page-index-latest-promotions-step-number {
        left: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }

    .page-index-latest-promotions-offers-grid {
        grid-template-columns: 1fr;
    }

    .page-index-latest-promotions-feature-grid {
        grid-template-columns: 1fr;
    }

    .page-index-latest-promotions-faq-question {
        font-size: 1.1em;
        padding: 15px;
    }

    .page-index-latest-promotions-faq-answer {
        padding: 15px;
    }
}