/* style/gambling-platforms-lottery.css */

/* General Page Styling */
.page-gambling-platforms-lottery {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f8f8f8;
}

.page-gambling-platforms-lottery .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-gambling-platforms-lottery h1,
.page-gambling-platforms-lottery h2,
.page-gambling-platforms-lottery h3 {
    color: #0086b3; /* Darker shade of secondary color for good contrast */
    text-align: center;
    margin-bottom: 20px;
}

.page-gambling-platforms-lottery h1 {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gambling-platforms-lottery h2 {
    font-size: 2.2em;
    margin-top: 40px;
    margin-bottom: 30px;
    color: #00BFFF; /* Secondary color for main sections */
}

.page-gambling-platforms-lottery h3 {
    font-size: 1.8em;
    color: #b39700; /* Darker shade of primary color for subsections */
}

.page-gambling-platforms-lottery p {
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
    color: #444;
}

.page-gambling-platforms-lottery strong {
    color: #0086b3;
}

.page-gambling-platforms-lottery .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.1em;
    cursor: pointer;
}

.page-gambling-platforms-lottery .btn-primary {
    background-color: #FFD700; /* Primary color */
    color: #333;
    border: 2px solid #FFD700;
}

.page-gambling-platforms-lottery .btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gambling-platforms-lottery .btn-secondary {
    background-color: transparent;
    color: #00BFFF; /* Secondary color */
    border: 2px solid #00BFFF;
}

.page-gambling-platforms-lottery .btn-secondary:hover {
    background-color: #00BFFF;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gambling-platforms-lottery .text-center {
    text-align: center;
    margin-top: 30px;
}

/* Hero Section */
.page-gambling-platforms-lottery .hero-section {
    background: linear-gradient(135deg, #00BFFF 0%, #FFD700 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-gambling-platforms-lottery .hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-gambling-platforms-lottery .hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-gambling-platforms-lottery .hero-content h1 {
    color: #fff;
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.page-gambling-platforms-lottery .hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #eee;
    text-align: center;
}

.page-gambling-platforms-lottery .hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-gambling-platforms-lottery .hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-top: 30px;
    z-index: 1;
}

.page-gambling-platforms-lottery .hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Section Intro */
.page-gambling-platforms-lottery .section-intro {
    padding: 60px 0;
    background-color: #fff;
}

/* Game Types Section */
.page-gambling-platforms-lottery .section-games-types {
    padding: 60px 0;
    background-color: #f0f8ff; /* Light blue background */
}

.page-gambling-platforms-lottery .game-type-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gambling-platforms-lottery .game-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-gambling-platforms-lottery .game-type-image {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-gambling-platforms-lottery .game-type-card h3 {
    color: #b39700;
    margin-bottom: 15px;
}

.page-gambling-platforms-lottery .game-type-card p {
    color: #555;
    text-align: center;
}

/* Guide Section */
.page-gambling-platforms-lottery .section-guide {
    padding: 60px 0;
    background-color: #fff;
}

.page-gambling-platforms-lottery .guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gambling-platforms-lottery .step-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-gambling-platforms-lottery .step-number {
    background-color: #00BFFF;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.page-gambling-platforms-lottery .step-item h3 {
    color: #b39700;
    margin-bottom: 15px;
}

.page-gambling-platforms-lottery .step-item .btn {
    margin-top: 15px;
}

.page-gambling-platforms-lottery .btn-register {
    background-color: #FFD700;
    color: #333;
    border: 1px solid #FFD700;
}
.page-gambling-platforms-lottery .btn-register:hover {
    background-color: #e6c200;
}

.page-gambling-platforms-lottery .btn-login {
    background-color: #00BFFF;
    color: #fff;
    border: 1px solid #00BFFF;
}
.page-gambling-platforms-lottery .btn-login:hover {
    background-color: #00a0e6;
}

.page-gambling-platforms-lottery .btn-play,
.page-gambling-platforms-lottery .btn-withdraw {
    background-color: #b39700;
    color: #fff;
    border: 1px solid #b39700;
}
.page-gambling-platforms-lottery .btn-play:hover,
.page-gambling-platforms-lottery .btn-withdraw:hover {
    background-color: #998100;
}

.page-gambling-platforms-lottery .guide-image-wrapper {
    margin-top: 50px;
    text-align: center;
}

.page-gambling-platforms-lottery .guide-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Tips Section */
.page-gambling-platforms-lottery .section-tips {
    padding: 60px 0;
    background-color: #f0f8ff;
}

.page-gambling-platforms-lottery .tip-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gambling-platforms-lottery .tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-gambling-platforms-lottery .tip-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-gambling-platforms-lottery .tip-card h3 {
    color: #0086b3;
    margin-bottom: 15px;
}

.page-gambling-platforms-lottery .tip-card p {
    color: #555;
    text-align: center;
}

/* Offers Section */
.page-gambling-platforms-lottery .section-offers {
    padding: 60px 0;
    background-color: #fff;
}

.page-gambling-platforms-lottery .section-offers ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 30px auto;
    font-size: 1.1em;
    color: #444;
}

.page-gambling-platforms-lottery .section-offers ul li {
    background-color: #f9f9f9;
    border-left: 5px solid #FFD700;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-gambling-platforms-lottery .section-offers ul li strong {
    color: #b39700;
}

.page-gambling-platforms-lottery .offer-image-wrapper {
    margin-top: 40px;
    text-align: center;
}

.page-gambling-platforms-lottery .offer-image {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Why Choose Section */
.page-gambling-platforms-lottery .section-why-choose {
    padding: 60px 0;
    background-color: #f0f8ff;
}

.page-gambling-platforms-lottery .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gambling-platforms-lottery .reason-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
}

.page-gambling-platforms-lottery .reason-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-gambling-platforms-lottery .reason-item h3 {
    color: #0086b3;
    margin-bottom: 10px;
}

.page-gambling-platforms-lottery .reason-item p {
    color: #555;
    font-size: 0.95em;
}

/* FAQ Section */
.page-gambling-platforms-lottery .section-faq {
    padding: 60px 0;
    background-color: #fff;
}

.page-gambling-platforms-lottery .faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-gambling-platforms-lottery .faq-question {
    padding: 18px 25px;
    background-color: #00BFFF;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-gambling-platforms-lottery .faq-question:hover {
    background-color: #00a0e6;
}

.page-gambling-platforms-lottery .faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-gambling-platforms-lottery .faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-gambling-platforms-lottery .faq-answer {
    padding: 0 25px;
    background-color: #fefefe;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-gambling-platforms-lottery .faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px;
}

.page-gambling-platforms-lottery .faq-answer p {
    margin: 0;
    color: #555;
}

/* CTA Section */
.page-gambling-platforms-lottery .section-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFD700 0%, #00BFFF 100%);
    color: #fff;
    text-align: center;
}

.page-gambling-platforms-lottery .section-cta h2 {
    color: #fff;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gambling-platforms-lottery .section-cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #eee;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gambling-platforms-lottery .cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-gambling-platforms-lottery .cta-actions .btn-primary {
    background-color: #fff;
    color: #FFD700;
    border-color: #fff;
}

.page-gambling-platforms-lottery .cta-actions .btn-primary:hover {
    background-color: #f0f0f0;
    color: #e6c200;
}

.page-gambling-platforms-lottery .cta-actions .btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.page-gambling-platforms-lottery .cta-actions .btn-secondary:hover {
    background-color: #fff;
    color: #00BFFF;
}

.page-gambling-platforms-lottery .cta-image-wrapper {
    margin-top: 50px;
    text-align: center;
}

.page-gambling-platforms-lottery .cta-image {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gambling-platforms-lottery .hero-content h1 {
        font-size: 2.8em;
    }
    .page-gambling-platforms-lottery h2 {
        font-size: 1.8em;
    }
    .page-gambling-platforms-lottery h3 {
        font-size: 1.5em;
    }
    .page-gambling-platforms-lottery .hero-section .container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-gambling-platforms-lottery .hero-section {
        padding: 60px 0;
    }
    .page-gambling-platforms-lottery .hero-content h1 {
        font-size: 2.2em;
    }
    .page-gambling-platforms-lottery .hero-content p {
        font-size: 1em;
    }
    .page-gambling-platforms-lottery .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-gambling-platforms-lottery .btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-gambling-platforms-lottery h2 {
        font-size: 1.6em;
    }
    .page-gambling-platforms-lottery .guide-steps,
    .page-gambling-platforms-lottery .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .page-gambling-platforms-lottery .game-type-image,
    .page-gambling-platforms-lottery .tip-image {
        height: 180px;
    }
    .page-gambling-platforms-lottery .cta-image {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .page-gambling-platforms-lottery .hero-section {
        min-height: 400px;
    }
    .page-gambling-platforms-lottery .hero-content h1 {
        font-size: 1.8em;
    }
    .page-gambling-platforms-lottery .hero-content p {
        font-size: 0.9em;
    }
    .page-gambling-platforms-lottery .btn {
        width: 100%;
    }
    .page-gambling-platforms-lottery h2 {
        font-size: 1.4em;
    }
    .page-gambling-platforms-lottery h3 {
        font-size: 1.3em;
    }
    .page-gambling-platforms-lottery .faq-question {
        font-size: 0.95em;
        padding: 15px 20px;
    }
    .page-gambling-platforms-lottery .section-cta h2 {
        font-size: 2em;
    }
}