/* style/resources-23win-slot-tips.css */
.page-resources-23win-slot-tips {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey text for dark background */
    background-color: #1A1A2E; /* Main dark background */
}

.page-resources-23win-slot-tips .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-23win-slot-tips .hero-section {
    background: linear-gradient(135deg, #1A1A2E, #33334d);
    padding: 100px 0 60px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-resources-23win-slot-tips .hero-section h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E9B824; /* Accent color for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-23win-slot-tips .hero-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-resources-23win-slot-tips .cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-23win-slot-tips .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.2s ease;
    white-space: nowrap;
}

.page-resources-23win-slot-tips .btn-primary {
    background-color: #E9B824; /* Accent color for primary button */
    color: #1A1A2E; /* Dark text for accent background */
    border: 2px solid #E9B824;
}

.page-resources-23win-slot-tips .btn-primary:hover {
    background-color: #f7d247;
    transform: translateY(-3px);
}

.page-resources-23win-slot-tips .btn-secondary {
    background-color: transparent;
    color: #E9B824; /* Accent color for secondary button text */
    border: 2px solid #E9B824;
}

.page-resources-23win-slot-tips .btn-secondary:hover {
    background-color: #E9B824;
    color: #1A1A2E;
    transform: translateY(-3px);
}

.page-resources-23win-slot-tips .btn-link {
    background: none;
    border: none;
    color: #E9B824;
    padding: 5px 0;
    font-size: 1em;
    text-decoration: underline;
}

.page-resources-23win-slot-tips .btn-link:hover {
    color: #f7d247;
}

.page-resources-23win-slot-tips .content-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(233, 184, 36, 0.1);
}

.page-resources-23win-slot-tips .content-section:last-of-type {
    border-bottom: none;
}

.page-resources-23win-slot-tips h2 {
    font-size: 2.5em;
    color: #E9B824; /* Accent color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-23win-slot-tips h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E9B824;
    border-radius: 2px;
}

.page-resources-23win-slot-tips h3 {
    font-size: 1.8em;
    color: #FFFFFF; /* White for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-23win-slot-tips p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-resources-23win-slot-tips ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-resources-23win-slot-tips ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1.05em;
}

.page-resources-23win-slot-tips .image-wrapper {
    margin: 40px auto;
    text-align: center;
}

.page-resources-23win-slot-tips .image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-23win-slot-tips .image-wrapper.small-image {
    width: 120px;
    height: 120px;
    margin: 20px auto;
}

.page-resources-23win-slot-tips .image-wrapper.small-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    box-shadow: none;
}

.page-resources-23win-slot-tips .tip-item {
    background-color: #2A2A4A; /* Slightly lighter dark background for tip items */
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-resources-23win-slot-tips .tip-item:hover {
    transform: translateY(-5px);
}

.page-resources-23win-slot-tips .tip-item h3 {
    color: #E9B824;
    margin-top: 0;
}

.page-resources-23win-slot-tips .faq-item {
    background-color: #2A2A4A;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.page-resources-23win-slot-tips .faq-item h3 {
    color: #E9B824;
    margin-top: 0;
    font-size: 1.5em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-resources-23win-slot-tips .faq-item p {
    margin-top: 15px;
    padding-left: 10px;
    border-left: 3px solid #E9B824;
    display: none; /* Hidden by default, JS will toggle */
}

.page-resources-23win-slot-tips .faq-item.active p {
    display: block;
}

.page-resources-23win-slot-tips .cta-center {
    text-align: center;
    margin-top: 30px;
}

.page-resources-23win-slot-tips .cta-final-section {
    background-color: #1A1A2E;
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-resources-23win-slot-tips .cta-final-section h2 {
    color: #E9B824;
}

.page-resources-23win-slot-tips .cta-final-section p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-23win-slot-tips .hero-section h1 {
        font-size: 2.5em;
    }

    .page-resources-23win-slot-tips .hero-section p {
        font-size: 1em;
    }

    .page-resources-23win-slot-tips .btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-23win-slot-tips h2 {
        font-size: 2em;
    }

    .page-resources-23win-slot-tips h3 {
        font-size: 1.5em;
    }

    .page-resources-23win-slot-tips .content-section {
        padding: 40px 0;
    }

    .page-resources-23win-slot-tips .cta-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-23win-slot-tips .hero-section h1 {
        font-size: 2em;
    }

    .page-resources-23win-slot-tips .hero-section p {
        font-size: 0.9em;
    }

    .page-resources-23win-slot-tips .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-resources-23win-slot-tips h2 {
        font-size: 1.8em;
    }

    .page-resources-23win-slot-tips h3 {
        font-size: 1.3em;
    }

    .page-resources-23win-slot-tips p,
    .page-resources-23win-slot-tips ul li {
        font-size: 0.95em;
    }
}