/* style/blog-top-reputable-slot-apps-2024.css */

:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --page-bg: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

.page-blog-top-reputable-slot-apps-2024 {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    background-color: var(--page-bg);
    line-height: 1.6;
}

.page-blog-top-reputable-slot-apps-2024__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

.page-blog-top-reputable-slot-apps-2024__section-title {
    font-size: 3em;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-blog-top-reputable-slot-apps-2024__section-description {
    font-size: 1.1em;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-blog-top-reputable-slot-apps-2024__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding as shared.css handles body padding-top */
    padding-bottom: 60px;
    background-color: var(--deep-green-color);
    overflow: hidden;
    position: relative;
}

.page-blog-top-reputable-slot-apps-2024__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-top-reputable-slot-apps-2024__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-top-reputable-slot-apps-2024__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-top-reputable-slot-apps-2024__hero-title {
    font-size: 3.5em;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.page-blog-top-reputable-slot-apps-2024__hero-description {
    font-size: 1.2em;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.page-blog-top-reputable-slot-apps-2024__cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: var(--button-gradient);
    color: var(--text-main);
    font-size: 1.2em;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-top-reputable-slot-apps-2024__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-top-reputable-slot-apps-2024__cta-button--small {
    padding: 12px 25px;
    font-size: 1em;
}

.page-blog-top-reputable-slot-apps-2024__cta-button--large {
    padding: 20px 50px;
    font-size: 1.3em;
}

/* Benefits Section */
.page-blog-top-reputable-slot-apps-2024__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-blog-top-reputable-slot-apps-2024__benefit-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-blog-top-reputable-slot-apps-2024__benefit-card:hover {
    transform: translateY(-5px);
}

.page-blog-top-reputable-slot-apps-2024__benefit-title {
    font-size: 1.8em;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-top-reputable-slot-apps-2024__benefit-text {
    font-size: 1em;
    color: var(--text-secondary);
}

.page-blog-top-reputable-slot-apps-2024__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 60px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Top Apps Section */
.page-blog-top-reputable-slot-apps-2024__app-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-blog-top-reputable-slot-apps-2024__app-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-top-reputable-slot-apps-2024__app-card:hover {
    transform: translateY(-5px);
}

.page-blog-top-reputable-slot-apps-2024__app-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-blog-top-reputable-slot-apps-2024__app-name {
    font-size: 2em;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: 700;
}

.page-blog-top-reputable-slot-apps-2024__app-description {
    font-size: 0.95em;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-top-reputable-slot-apps-2024__app-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
    width: 100%;
}

.page-blog-top-reputable-slot-apps-2024__app-features li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
}

.page-blog-top-reputable-slot-apps-2024__app-features li::before {
    content: '✔';
    color: var(--glow-color);
    margin-right: 8px;
    font-weight: bold;
}

/* How to Choose Section */
.page-blog-top-reputable-slot-apps-2024__criteria,
.page-blog-top-reputable-slot-apps-2024__avoid {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.page-blog-top-reputable-slot-apps-2024__criteria-subtitle,
.page-blog-top-reputable-slot-apps-2024__avoid-subtitle {
    font-size: 2.2em;
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.page-blog-top-reputable-slot-apps-2024__criteria-list,
.page-blog-top-reputable-slot-apps-2024__avoid-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-blog-top-reputable-slot-apps-2024__criteria-list li,
.page-blog-top-reputable-slot-apps-2024__avoid-list li {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.7;
    padding-left: 25px;
    position: relative;
}

.page-blog-top-reputable-slot-apps-2024__criteria-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.5em;
    top: -2px;
}

.page-blog-top-reputable-slot-apps-2024__avoid-list li::before {
    content: '✗';
    color: #FF4D4D; /* Red for warnings */
    position: absolute;
    left: 0;
    font-size: 1.5em;
    top: -2px;
}

.page-blog-top-reputable-slot-apps-2024__link-button {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--text-main);
    font-size: 1em;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-top-reputable-slot-apps-2024__link-button:hover {
    background-color: var(--secondary-color);
}

/* Tips Section */
.page-blog-top-reputable-slot-apps-2024__tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-blog-top-reputable-slot-apps-2024__tip-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-blog-top-reputable-slot-apps-2024__tip-card:hover {
    transform: translateY(-5px);
}

.page-blog-top-reputable-slot-apps-2024__tip-title {
    font-size: 1.8em;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-top-reputable-slot-apps-2024__tip-text {
    font-size: 1em;
    color: var(--text-secondary);
}

/* Promotions Section */
.page-blog-top-reputable-slot-apps-2024__promo-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.page-blog-top-reputable-slot-apps-2024__promo-image {
    flex: 1;
    min-width: 400px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    width: 100%;
    height: auto;
    display: block;
}

.page-blog-top-reputable-slot-apps-2024__promo-text-block {
    flex: 1;
    color: var(--text-secondary);
}

.page-blog-top-reputable-slot-apps-2024__promo-subtitle {
    font-size: 2em;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 600;
}

.page-blog-top-reputable-slot-apps-2024__promo-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-blog-top-reputable-slot-apps-2024__promo-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05em;
}

.page-blog-top-reputable-slot-apps-2024__promo-list li::before {
    content: '🎁';
    position: absolute;
    left: 0;
    top: 0;
}

.page-blog-top-reputable-slot-apps-2024__promo-reminder {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 0.95em;
}

/* FAQ Section */
.page-blog-top-reputable-slot-apps-2024__faq-list {
    margin-top: 50px;
}

.page-blog-top-reputable-slot-apps-2024__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-top-reputable-slot-apps-2024__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    background-color: var(--deep-green-color);
    border-bottom: 1px solid var(--border-color);
    list-style: none;
    position: relative;
}

.page-blog-top-reputable-slot-apps-2024__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-top-reputable-slot-apps-2024__faq-qtext {
    flex-grow: 1;
}

.page-blog-top-reputable-slot-apps-2024__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: var(--glow-color);
    transition: transform 0.3s ease;
}

.page-blog-top-reputable-slot-apps-2024__faq-item[open] .page-blog-top-reputable-slot-apps-2024__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-top-reputable-slot-apps-2024__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: var(--text-secondary);
    background-color: var(--card-bg);
}

.page-blog-top-reputable-slot-apps-2024__faq-answer p {
    margin: 0;
}

/* Conclusion Section */
.page-blog-top-reputable-slot-apps-2024__conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-top-reputable-slot-apps-2024__section-title {
        font-size: 2.5em;
    }

    .page-blog-top-reputable-slot-apps-2024__hero-title {
        font-size: 3em;
    }

    .page-blog-top-reputable-slot-apps-2024__promo-content {
        flex-direction: column;
    }

    .page-blog-top-reputable-slot-apps-2024__promo-image {
        min-width: unset;
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    /* General */
    .page-blog-top-reputable-slot-apps-2024 {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-top-reputable-slot-apps-2024__section {
        padding: 40px 15px !important;
    }
    .page-blog-top-reputable-slot-apps-2024__section-title {
        font-size: 2em !important;
        margin-bottom: 20px !important;
    }
    .page-blog-top-reputable-slot-apps-2024__section-description {
        font-size: 1em !important;
        margin-bottom: 30px !important;
    }

    /* HERO Section */
    .page-blog-top-reputable-slot-apps-2024__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px !important;
    }
    .page-blog-top-reputable-slot-apps-2024__hero-image-wrapper {
        margin-bottom: 20px !important;
    }
    .page-blog-top-reputable-slot-apps-2024__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog-top-reputable-slot-apps-2024__hero-content {
        padding: 0 15px !important;
    }
    .page-blog-top-reputable-slot-apps-2024__hero-title {
        font-size: 2.2em !important;
        margin-bottom: 15px !important;
    }
    .page-blog-top-reputable-slot-apps-2024__hero-description {
        font-size: 1em !important;
        margin-bottom: 30px !important;
    }

    /* Buttons */
    .page-blog-top-reputable-slot-apps-2024__cta-button,
    .page-blog-top-reputable-slot-apps-2024__link-button,
    .page-blog-top-reputable-slot-apps-2024 a[class*="button"],
    .page-blog-top-reputable-slot-apps-2024 a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        font-size: 1.1em !important;
    }

    /* Product Display (App Cards) */
    .page-blog-top-reputable-slot-apps-2024__app-list {
        grid-template-columns: 1fr !important;
    }
    .page-blog-top-reputable-slot-apps-2024__app-card {
        padding: 20px !important;
    }
    .page-blog-top-reputable-slot-apps-2024__app-logo {
        max-width: 150px !important;
        width: 100% !important;
        height: auto !important;
    }

    /* General Images */
    .page-blog-top-reputable-slot-apps-2024 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-top-reputable-slot-apps-2024__content-image,
    .page-blog-top-reputable-slot-apps-2024__promo-image {
        margin-top: 30px !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Other Content Modules (Benefits, Tips, Promotions, FAQ) */
    .page-blog-top-reputable-slot-apps-2024__benefits-grid,
    .page-blog-top-reputable-slot-apps-2024__tips-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .page-blog-top-reputable-slot-apps-2024__benefit-title,
    .page-blog-top-reputable-slot-apps-2024__tip-title {
        font-size: 1.5em !important;
    }
    .page-blog-top-reputable-slot-apps-2024__criteria,
    .page-blog-top-reputable-slot-apps-2024__avoid {
        padding: 30px 20px !important;
        margin-bottom: 30px !important;
    }
    .page-blog-top-reputable-slot-apps-2024__criteria-subtitle,
    .page-blog-top-reputable-slot-apps-2024__avoid-subtitle,
    .page-blog-top-reputable-slot-apps-2024__promo-subtitle {
        font-size: 1.8em !important;
    }
    .page-blog-top-reputable-slot-apps-2024__promo-content {
        flex-direction: column !important;
        gap: 20px !important;
    }
    .page-blog-top-reputable-slot-apps-2024__faq-question {
        font-size: 1.1em !important;
        padding: 15px 20px !important;
    }
    .page-blog-top-reputable-slot-apps-2024__faq-answer {
        padding: 15px 20px !important;
    }
    .page-blog-top-reputable-slot-apps-2024__conclusion-section {
        padding-bottom: 60px !important;
    }
}