/* style/promotions-exclusive-f168-deals.css */
.page-promotions-exclusive-f168-deals {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0F1D2F; /* Darker background to contrast with main color */
}

.page-promotions-exclusive-f168-deals .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-promotions-exclusive-f168-deals .hero-section {
    background: linear-gradient(135deg, #1A2E47 0%, #0F1D2F 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-promotions-exclusive-f168-deals .hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-promotions-exclusive-f168-deals .hero-subtitle {
    font-size: 1.4em;
    color: #B0C4DE; /* Light blue-gray for subtitle */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-exclusive-f168-deals .btn {
    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, transform 0.3s ease;
    cursor: pointer;
}

.page-promotions-exclusive-f168-deals .btn-primary {
    background-color: #FFD700; /* Gold for primary buttons */
    color: #1A2E47; /* Dark blue for text on gold */
    border: none;
}

.page-promotions-exclusive-f168-deals .btn-primary:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
}

/* General Sections */
.page-promotions-exclusive-f168-deals section {
    padding: 60px 0;
    background-color: #1A2E47; /* Main dark blue for section backgrounds */
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-exclusive-f168-deals section:nth-of-type(even) {
    background-color: #0F1D2F; /* Alternate darker blue for sections */
}

.page-promotions-exclusive-f168-deals .section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-exclusive-f168-deals p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #B0C4DE; /* Light blue-gray for paragraph text */
}

.page-promotions-exclusive-f168-deals .link-highlight {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions-exclusive-f168-deals .link-highlight:hover {
    color: #E6C200;
}

/* Feature List */
.page-promotions-exclusive-f168-deals .feature-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-promotions-exclusive-f168-deals .feature-list li {
    font-size: 1.15em;
    margin-bottom: 15px;
    color: #E0E0E0;
    display: flex;
    align-items: flex-start;
}

.page-promotions-exclusive-f168-deals .feature-list li i {
    color: #FFD700;
    margin-right: 15px;
    font-size: 1.5em;
    line-height: 1.5;
}

/* Promo Cards */
.page-promotions-exclusive-f168-deals .promo-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-exclusive-f168-deals .promo-card {
    background-color: #0F1D2F;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid #334A66;
}

.page-promotions-exclusive-f168-deals .promo-card:hover {
    transform: translateY(-5px);
    background-color: #1A2E47;
}

.page-promotions-exclusive-f168-deals .promo-icon {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-promotions-exclusive-f168-deals .promo-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-exclusive-f168-deals .promo-card p {
    font-size: 1em;
    color: #B0C4DE;
    margin-bottom: 25px;
}

.page-promotions-exclusive-f168-deals .btn-secondary {
    background-color: #334A66; /* Darker blue for secondary buttons */
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-promotions-exclusive-f168-deals .btn-secondary:hover {
    background-color: #445D7A;
    color: #FFD700;
}

/* How-to-claim Steps */
.page-promotions-exclusive-f168-deals .steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions-exclusive-f168-deals .steps-list li {
    background-color: #0F1D2F;
    border-left: 5px solid #FFD700;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-exclusive-f168-deals .step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions-exclusive-f168-deals .btn-step {
    background-color: #FFD700;
    color: #1A2E47;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    margin-top: 15px;
}

.page-promotions-exclusive-f168-deals .btn-step:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
}

/* Game Categories */
.page-promotions-exclusive-f168-deals .game-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-exclusive-f168-deals .game-category-card {
    background-color: #0F1D2F;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #334A66;
}

.page-promotions-exclusive-f168-deals .category-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-promotions-exclusive-f168-deals .category-title i {
    margin-right: 10px;
    font-size: 1.2em;
}

.page-promotions-exclusive-f168-deals .game-category-card p {
    font-size: 0.95em;
    color: #B0C4DE;
    line-height: 1.6;
}

/* FAQ Section */
.page-promotions-exclusive-f168-deals .faq-list {
    margin-top: 40px;
}

.page-promotions-exclusive-f168-deals .faq-item {
    background-color: #0F1D2F;
    border: 1px solid #334A66;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-exclusive-f168-deals .faq-question {
    font-size: 1.3em;
    color: #FFD700;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-promotions-exclusive-f168-deals .faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions-exclusive-f168-deals .faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-exclusive-f168-deals .faq-answer {
    padding: 0 25px 20px;
    color: #B0C4DE;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-exclusive-f168-deals .faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 0 25px 20px;
}

/* Final CTA Section */
.page-promotions-exclusive-f168-deals .final-cta-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #1A2E47, #0F1D2F);
    border-top: 5px solid #FFD700;
}

.page-promotions-exclusive-f168-deals .final-cta-section .section-title {
    color: #FFD700;
}

.page-promotions-exclusive-f168-deals .final-cta {
    margin-top: 30px;
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Image Styling */
.page-promotions-exclusive-f168-deals .image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-promotions-exclusive-f168-deals .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 2px solid #334A66;
}

/* Floating Promo Banner */
.page-promotions-exclusive-f168-deals .floating-promo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FFD700; /* Gold for banner background */
    color: #1A2E47; /* Dark blue for banner text */
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
    text-align: center;
}

.page-promotions-exclusive-f168-deals .floating-promo-banner.active {
    transform: translateY(0);
}

.page-promotions-exclusive-f168-deals .floating-promo-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.page-promotions-exclusive-f168-deals .banner-text {
    flex-grow: 1;
    font-size: 1.1em;
    font-weight: bold;
    margin-right: 15px;
    color: #1A2E47;
    text-align: left;
}

.page-promotions-exclusive-f168-deals .btn-banner-cta {
    background-color: #1A2E47;
    color: #FFD700;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 15px;
    white-space: nowrap;
}

.page-promotions-exclusive-f168-deals .btn-banner-cta:hover {
    background-color: #334A66;
}

.page-promotions-exclusive-f168-deals .close-banner-btn {
    background: none;
    border: none;
    color: #1A2E47;
    font-size: 1.5em;
    cursor: pointer;
    margin-left: 15px;
    padding: 0;
}

.page-promotions-exclusive-f168-deals .close-banner-btn:hover {
    color: #334A66;
}

/* Icons (Font Awesome or similar placeholder) */
.page-promotions-exclusive-f168-deals .icon-check::before { content: '✔'; }
.page-promotions-exclusive-f168-deals .icon-gift::before { content: '🎁'; }
.page-promotions-exclusive-f168-deals .icon-reload::before { content: '🔄'; }
.page-promotions-exclusive-f168-deals .icon-cashback::before { content: '💰'; }
.page-promotions-exclusive-f168-deals .icon-freespins::before { content: '🎰'; }
.page-promotions-exclusive-f168-deals .icon-casino::before { content: '♠️'; }
.page-promotions-exclusive-f168-deals .icon-slots::before { content: '🔔'; }
.page-promotions-exclusive-f168-deals .icon-sports::before { content: '⚽'; }
.page-promotions-exclusive-f168-deals .icon-fish::before { content: '🐠'; }
.page-promotions-exclusive-f168-deals .icon-close::before { content: '✕'; }

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-exclusive-f168-deals .hero-title {
        font-size: 2.8em;
    }
    .page-promotions-exclusive-f168-deals .hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-exclusive-f168-deals .section-title {
        font-size: 2em;
    }
    .page-promotions-exclusive-f168-deals .promo-card-grid,
    .page-promotions-exclusive-f168-deals .game-category-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-exclusive-f168-deals .hero-section {
        padding: 80px 0;
    }
    .page-promotions-exclusive-f168-deals .hero-title {
        font-size: 2.2em;
    }
    .page-promotions-exclusive-f168-deals .hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-exclusive-f168-deals .btn-primary {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-exclusive-f168-deals section {
        padding: 40px 0;
    }
    .page-promotions-exclusive-f168-deals .section-title {
        font-size: 1.8em;
    }
    .page-promotions-exclusive-f168-deals p {
        font-size: 1em;
    }
    .page-promotions-exclusive-f168-deals .promo-card-grid,
    .page-promotions-exclusive-f168-deals .game-category-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-exclusive-f168-deals .floating-promo-banner .container {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions-exclusive-f168-deals .banner-text {
        margin-bottom: 10px;
        margin-right: 0;
        text-align: center;
    }
    .page-promotions-exclusive-f168-deals .btn-banner-cta,
    .page-promotions-exclusive-f168-deals .close-banner-btn {
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .page-promotions-exclusive-f168-deals .hero-title {
        font-size: 1.8em;
    }
    .page-promotions-exclusive-f168-deals .hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-exclusive-f168-deals .section-title {
        font-size: 1.5em;
    }
    .page-promotions-exclusive-f168-deals .promo-title,
    .page-promotions-exclusive-f168-deals .step-title,
    .page-promotions-exclusive-f168-deals .category-title {
        font-size: 1.3em;
    }
    .page-promotions-exclusive-f168-deals .faq-question {
        font-size: 1.1em;
    }
    .page-promotions-exclusive-f168-deals .floating-promo-banner {
        padding: 10px 0;
    }
    .page-promotions-exclusive-f168-deals .banner-text {
        font-size: 0.9em;
    }
    .page-promotions-exclusive-f168-deals .btn-banner-cta {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}