/* style/resources-99ok-lottery-strategy.css */
.page-resources-99ok-lottery-strategy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.page-resources-99ok-lottery-strategy .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-99ok-lottery-strategy .text-center {
    text-align: center;
}

.page-resources-99ok-lottery-strategy .mt-4 {
    margin-top: 2rem;
}

.page-resources-99ok-lottery-strategy .mb-4 {
    margin-bottom: 2rem;
}

.page-resources-99ok-lottery-strategy .section-title {
    font-size: 2.5rem;
    color: #007BFF;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-99ok-lottery-strategy .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFC107;
    border-radius: 2px;
}

/* Hero Section */
.page-resources-99ok-lottery-strategy .hero-section {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Darker blue gradient for better text contrast */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-99ok-lottery-strategy .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:lottery_background,abstract_numbers,blue_gradient]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-resources-99ok-lottery-strategy .hero-section .container {
    position: relative;
    z-index: 1;
}

.page-resources-99ok-lottery-strategy .hero-section h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    color: #FFFFFF; /* Ensure high contrast */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-99ok-lottery-strategy .hero-section .subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #E0E0E0; /* Slightly off-white for subtitle */
}

.page-resources-99ok-lottery-strategy .hero-cta .btn {
    margin: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-resources-99ok-lottery-strategy .btn-primary {
    background-color: #FFC107;
    color: #000000; /* Black text for high contrast on yellow */
    border: 2px solid #FFC107;
}

.page-resources-99ok-lottery-strategy .btn-primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #000000;
    transform: translateY(-3px);
}

.page-resources-99ok-lottery-strategy .btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-resources-99ok-lottery-strategy .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.page-resources-99ok-lottery-strategy .btn-link {
    color: #007BFF; /* Link color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-99ok-lottery-strategy .btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.page-resources-99ok-lottery-strategy .btn-lg {
    padding: 18px 35px;
    font-size: 1.25rem;
}

/* Content Blocks */
.page-resources-99ok-lottery-strategy .content-block {
    padding: 60px 0;
}

.page-resources-99ok-lottery-strategy .bg-light {
    background-color: #f2f7fc; /* Lighter blue-gray for subtle contrast */
}

.page-resources-99ok-lottery-strategy .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

/* Game Types Section */
.page-resources-99ok-lottery-strategy .grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-99ok-lottery-strategy .game-type-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-99ok-lottery-strategy .game-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-resources-99ok-lottery-strategy .game-type-card h3 {
    color: #007BFF;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.page-resources-99ok-lottery-strategy .game-type-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.page-resources-99ok-lottery-strategy .game-type-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.page-resources-99ok-lottery-strategy .game-type-card ul li {
    margin-bottom: 8px;
    color: #444;
    position: relative;
    padding-left: 25px;
}

.page-resources-99ok-lottery-strategy .game-type-card ul li::before {
    content: '✓';
    color: #FFC107;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* How to Play Section */
.page-resources-99ok-lottery-strategy .step-by-step-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-99ok-lottery-strategy .step-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-99ok-lottery-strategy .step-number {
    background-color: #007BFF;
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: bold;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
}

.page-resources-99ok-lottery-strategy .step-card h3 {
    color: #007BFF;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.page-resources-99ok-lottery-strategy .step-card p {
    color: #555;
    margin-bottom: 20px;
}

/* Strategy Section */
.page-resources-99ok-lottery-strategy .strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.page-resources-99ok-lottery-strategy .strategy-card {
    background-color: #FFFFFF;
    border-left: 5px solid #FFC107;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
    padding: 25px;
    transition: transform 0.2s ease;
}

.page-resources-99ok-lottery-strategy .strategy-card:hover {
    transform: translateY(-3px);
}

.page-resources-99ok-lottery-strategy .strategy-card h3 {
    color: #007BFF;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.page-resources-99ok-lottery-strategy .strategy-card p {
    color: #555;
}

/* Security Section */
.page-resources-99ok-lottery-strategy .security-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* FAQ Section */
.page-resources-99ok-lottery-strategy .faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.page-resources-99ok-lottery-strategy .accordion-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-resources-99ok-lottery-strategy .accordion-header {
    background-color: #007BFF;
    color: #FFFFFF; /* White text for high contrast on blue */
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-resources-99ok-lottery-strategy .accordion-header:hover {
    background-color: #0056b3;
}

.page-resources-99ok-lottery-strategy .accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-resources-99ok-lottery-strategy .accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-99ok-lottery-strategy .accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #fefefe;
    color: #444;
}

.page-resources-99ok-lottery-strategy .accordion-content p {
    padding: 15px 0;
    margin: 0;
}

/* Call to Action Final */
.page-resources-99ok-lottery-strategy .call-to-action-final {
    background-color: #007BFF;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-resources-99ok-lottery-strategy .call-to-action-final .section-title {
    color: #FFFFFF;
}

.page-resources-99ok-lottery-strategy .call-to-action-final .section-title::after {
    background-color: #FFC107;
}

.page-resources-99ok-lottery-strategy .call-to-action-final p {
    font-size: 1.25rem;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

.page-resources-99ok-lottery-strategy .cta-buttons .btn {
    margin: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-99ok-lottery-strategy .hero-section h1 {
        font-size: 3rem;
    }
    .page-resources-99ok-lottery-strategy .hero-section .subtitle {
        font-size: 1.2rem;
    }
    .page-resources-99ok-lottery-strategy .section-title {
        font-size: 2rem;
    }
    .page-resources-99ok-lottery-strategy .grid-3-col, .page-resources-99ok-lottery-strategy .grid-2-col, .page-resources-99ok-lottery-strategy .step-by-step-guide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-resources-99ok-lottery-strategy .hero-section {
        padding: 80px 0;
    }
    .page-resources-99ok-lottery-strategy .hero-section h1 {
        font-size: 2.5rem;
    }
    .page-resources-99ok-lottery-strategy .hero-section .subtitle {
        font-size: 1rem;
    }
    .page-resources-99ok-lottery-strategy .hero-cta .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-resources-99ok-lottery-strategy .content-block {
        padding: 40px 0;
    }
    .page-resources-99ok-lottery-strategy .section-title {
        font-size: 1.8rem;
    }
    .page-resources-99ok-lottery-strategy .game-type-card, .page-resources-99ok-lottery-strategy .step-card, .page-resources-99ok-lottery-strategy .strategy-card {
        padding: 20px;
    }
    .page-resources-99ok-lottery-strategy .accordion-header {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-resources-99ok-lottery-strategy .call-to-action-final p {
        font-size: 1.1rem;
    }
}