/* style/resources-tt88-latest-promotions-analysis.css */

.page-resources-tt88-latest-promotions-analysis {
    font-family: 'Arial', sans-serif;
    color: #E2E8F0; /* Light text on dark background */
    background-color: #1A202C; /* Main background color */
    line-height: 1.6;
}

.page-resources-tt88-latest-promotions-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-tt88-latest-promotions-analysis__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a3f4e 100%); /* Dark gradient */
    color: #E2E8F0;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.page-resources-tt88-latest-promotions-analysis__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-resources-tt88-latest-promotions-analysis__hero h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold accent */
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-tt88-latest-promotions-analysis__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-resources-tt88-latest-promotions-analysis__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    overflow: hidden;
}

.page-resources-tt88-latest-promotions-analysis__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(5px);
    transform: scale(1.1);
}

/* Buttons */
.page-resources-tt88-latest-promotions-analysis__btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.05em;
    margin: 10px;
    cursor: pointer;
    border: none;
}

.page-resources-tt88-latest-promotions-analysis__btn--primary {
    background-color: #FFD700; /* Gold accent */
    color: #1A202C;
}

.page-resources-tt88-latest-promotions-analysis__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-resources-tt88-latest-promotions-analysis__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources-tt88-latest-promotions-analysis__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

/* Sections */
.page-resources-tt88-latest-promotions-analysis__section {
    padding: 60px 0;
}

.page-resources-tt88-latest-promotions-analysis__section--intro {
    background-color: #2D3748;
    color: #E2E8F0;
}

.page-resources-tt88-latest-promotions-analysis__section--features {
    background-color: #1A202C;
    color: #E2E8F0;
}

.page-resources-tt88-latest-promotions-analysis__section--tips {
    background-color: #2D3748;
    color: #E2E8F0;
}

.page-resources-tt88-latest-promotions-analysis__section--cta {
    background: linear-gradient(90deg, #1A202C, #FFD700 80%); /* Gradient with accent */
    color: #1A202C;
    text-align: center;
    padding: 80px 0;
}

.page-resources-tt88-latest-promotions-analysis__cta-content {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.page-resources-tt88-latest-promotions-analysis__section--faq {
    background-color: #1A202C;
    color: #E2E8F0;
}

.page-resources-tt88-latest-promotions-analysis h2 {
    font-size: 2.5em;
    color: #FFD700; /* Gold accent */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-tt88-latest-promotions-analysis h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #DC143C; /* Accent red */
    border-radius: 2px;
}

.page-resources-tt88-latest-promotions-analysis h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-resources-tt88-latest-promotions-analysis p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Feature Grid */
.page-resources-tt88-latest-promotions-analysis__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-tt88-latest-promotions-analysis__feature-card {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-tt88-latest-promotions-analysis__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}

.page-resources-tt88-latest-promotions-analysis__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-resources-tt88-latest-promotions-analysis__feature-card h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 0;
}

.page-resources-tt88-latest-promotions-analysis__feature-card p {
    font-size: 1em;
    color: #CBD5E0;
}

/* Ordered List (Tips) */
.page-resources-tt88-latest-promotions-analysis__list {
    list-style: none;
    padding: 0;
    counter-reset: item;
}

.page-resources-tt88-latest-promotions-analysis__list li {
    counter-increment: item;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    font-size: 1.1em;
    color: #E2E8F0;
}

.page-resources-tt88-latest-promotions-analysis__list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFD700;
    color: #1A202C;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
}

.page-resources-tt88-latest-promotions-analysis__list strong {
    color: #FFD700;
}

/* FAQ Section */
.page-resources-tt88-latest-promotions-analysis__faq-item {
    background-color: #2D3748;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-resources-tt88-latest-promotions-analysis__faq-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-resources-tt88-latest-promotions-analysis__faq-item p {
    color: #CBD5E0;
    font-size: 1em;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-tt88-latest-promotions-analysis__hero h1 {
        font-size: 2.5em;
    }

    .page-resources-tt88-latest-promotions-analysis__hero p {
        font-size: 1em;
    }

    .page-resources-tt88-latest-promotions-analysis h2 {
        font-size: 2em;
    }

    .page-resources-tt88-latest-promotions-analysis h3 {
        font-size: 1.5em;
    }

    .page-resources-tt88-latest-promotions-analysis__btn {
        padding: 12px 24px;
        font-size: 0.95em;
    }

    .page-resources-tt88-latest-promotions-analysis__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-resources-tt88-latest-promotions-analysis__list li {
        padding-left: 35px;
        font-size: 1em;
    }

    .page-resources-tt88-latest-promotions-analysis__list li::before {
        width: 25px;
        height: 25px;
        font-size: 0.8em;
    }

    .page-resources-tt88-latest-promotions-analysis__cta-content {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .page-resources-tt88-latest-promotions-analysis__hero h1 {
        font-size: 2em;
    }

    .page-resources-tt88-latest-promotions-analysis h2 {
        font-size: 1.8em;
    }

    .page-resources-tt88-latest-promotions-analysis__btn {
        width: 100%;
        margin: 10px 0;
    }
}