/* style/blog-lotery92-deposit-withdrawal-guide.css */

:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --background-color: #0D0E12;
    --card-background-color: #17191F;
    --text-main-color: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange-color: #D96800;
    --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
}

.page-blog-lotery92-deposit-withdrawal-guide {
    font-family: Arial, sans-serif;
    color: var(--text-main-color); /* Body background is dark, so text is light */
    background-color: var(--background-color);
    line-height: 1.6;
}

.page-blog-lotery92-deposit-withdrawal-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-blog-lotery92-deposit-withdrawal-guide__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, assuming body handles header offset */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.page-blog-lotery92-deposit-withdrawal-guide__hero-image-container {
    width: 100%;
    max-height: 600px; /* Adjust as needed */
    overflow: hidden;
    margin-bottom: 20px;
}

.page-blog-lotery92-deposit-withdrawal-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-lotery92-deposit-withdrawal-guide__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-lotery92-deposit-withdrawal-guide__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255,165,58,0.5);
}

.page-blog-lotery92-deposit-withdrawal-guide__hero-description {
    font-size: 1.2rem;
    color: var(--text-main-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-lotery92-deposit-withdrawal-guide__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,165,58,0.4);
    border: none;
    cursor: pointer;
}

.page-blog-lotery92-deposit-withdrawal-guide__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,165,58,0.6);
}

.page-blog-lotery92-deposit-withdrawal-guide__cta-button--small {
    padding: 10px 20px;
    font-size: 1rem;
    margin-top: 20px;
}

/* General Section Styling */
.page-blog-lotery92-deposit-withdrawal-guide__introduction-section,
.page-blog-lotery92-deposit-withdrawal-guide__why-secure-section,
.page-blog-lotery92-deposit-withdrawal-guide__deposit-section,
.page-blog-lotery92-deposit-withdrawal-guide__withdrawal-section,
.page-blog-lotery92-deposit-withdrawal-guide__troubleshooting-section,
.page-blog-lotery92-deposit-withdrawal-guide__tips-section,
.page-blog-lotery92-deposit-withdrawal-guide__faq-section,
.page-blog-lotery92-deposit-withdrawal-guide__conclusion-section {
    padding: 60px 0;
}

.page-blog-lotery92-deposit-withdrawal-guide__section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-blog-lotery92-deposit-withdrawal-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-blog-lotery92-deposit-withdrawal-guide__subsection-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: left;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.page-blog-lotery92-deposit-withdrawal-guide__text-block {
    font-size: 1.1rem;
    color: var(--text-main-color);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-lotery92-deposit-withdrawal-guide__list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.page-blog-lotery92-deposit-withdrawal-guide__list-item {
    background-color: var(--card-background-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-blog-lotery92-deposit-withdrawal-guide__list-title {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.page-blog-lotery92-deposit-withdrawal-guide__list--bullets {
    list-style: disc;
    padding-left: 25px;
}

.page-blog-lotery92-deposit-withdrawal-guide__list--bullets .page-blog-lotery92-deposit-withdrawal-guide__list-item {
    background: none;
    border: none;
    box-shadow: none;
    padding: 5px 0;
    margin-bottom: 10px;
    color: var(--text-main-color);
    font-size: 1.1rem;
}

.page-blog-lotery92-deposit-withdrawal-guide__list--bullets .page-blog-lotery92-deposit-withdrawal-guide__list-item strong {
    color: var(--secondary-color);
}

/* Methods Grid */
.page-blog-lotery92-deposit-withdrawal-guide__methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-blog-lotery92-deposit-withdrawal-guide__method-card {
    background-color: var(--card-background-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-lotery92-deposit-withdrawal-guide__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-lotery92-deposit-withdrawal-guide__method-image {
    width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-blog-lotery92-deposit-withdrawal-guide__method-name {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-blog-lotery92-deposit-withdrawal-guide__method-description {
    font-size: 1rem;
    color: var(--text-main-color);
}

/* Step List */
.page-blog-lotery92-deposit-withdrawal-guide__step-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    counter-reset: step-counter;
}

.page-blog-lotery92-deposit-withdrawal-guide__step-item {
    background-color: var(--card-background-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    position: relative;
    padding-left: 80px;
}

.page-blog-lotery92-deposit-withdrawal-guide__step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.page-blog-lotery92-deposit-withdrawal-guide__step-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-blog-lotery92-deposit-withdrawal-guide__step-item p {
    font-size: 1rem;
    color: var(--text-main-color);
    margin-bottom: 0;
}

.page-blog-lotery92-deposit-withdrawal-guide__step-item a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-blog-lotery92-deposit-withdrawal-guide__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 40px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Info Table */
.page-blog-lotery92-deposit-withdrawal-guide__info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background-color: var(--card-background-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-blog-lotery92-deposit-withdrawal-guide__table-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--border-color);
}

.page-blog-lotery92-deposit-withdrawal-guide__table-row:last-child {
    border-bottom: none;
}

.page-blog-lotery92-deposit-withdrawal-guide__table-header,
.page-blog-lotery92-deposit-withdrawal-guide__table-data {
    padding: 15px 20px;
    text-align: center;
    color: var(--text-main-color);
    font-size: 1rem;
}

.page-blog-lotery92-deposit-withdrawal-guide__table-header {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Tips Grid */
.page-blog-lotery92-deposit-withdrawal-guide__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-lotery92-deposit-withdrawal-guide__tip-card {
    background-color: var(--card-background-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-lotery92-deposit-withdrawal-guide__tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-lotery92-deposit-withdrawal-guide__tip-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-blog-lotery92-deposit-withdrawal-guide__tip-title {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-blog-lotery92-deposit-withdrawal-guide__tip-description {
    font-size: 1rem;
    color: var(--text-main-color);
}

/* FAQ Section */
.page-blog-lotery92-deposit-withdrawal-guide__faq-list {
    margin-top: 40px;
}

.page-blog-lotery92-deposit-withdrawal-guide__faq-item {
    background-color: var(--card-background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-lotery92-deposit-withdrawal-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    cursor: pointer;
    list-style: none;
    position: relative;
}

.page-blog-lotery92-deposit-withdrawal-guide__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-lotery92-deposit-withdrawal-guide__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-blog-lotery92-deposit-withdrawal-guide__faq-item[open] .page-blog-lotery92-deposit-withdrawal-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-lotery92-deposit-withdrawal-guide__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.05rem;
    color: var(--text-main-color);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-blog-lotery92-deposit-withdrawal-guide__faq-item[open] .page-blog-lotery92-deposit-withdrawal-guide__faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 0 25px 20px;
}

/* Conclusion Section */
.page-blog-lotery92-deposit-withdrawal-guide__conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-blog-lotery92-deposit-withdrawal-guide__conclusion-section .page-blog-lotery92-deposit-withdrawal-guide__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.15rem;
}

.page-blog-lotery92-deposit-withdrawal-guide__conclusion-section a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-lotery92-deposit-withdrawal-guide__hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    .page-blog-lotery92-deposit-withdrawal-guide__section-title {
        font-size: 2rem;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__subsection-title {
        font-size: 1.6rem;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__step-title {
        font-size: 1.3rem;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__faq-question {
        font-size: 1.1rem;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__method-image,
    .page-blog-lotery92-deposit-withdrawal-guide__tip-image {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .page-blog-lotery92-deposit-withdrawal-guide {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__container,
    .page-blog-lotery92-deposit-withdrawal-guide__hero-content,
    .page-blog-lotery92-deposit-withdrawal-guide__introduction-section,
    .page-blog-lotery92-deposit-withdrawal-guide__why-secure-section,
    .page-blog-lotery92-deposit-withdrawal-guide__deposit-section,
    .page-blog-lotery92-deposit-withdrawal-guide__withdrawal-section,
    .page-blog-lotery92-deposit-withdrawal-guide__troubleshooting-section,
    .page-blog-lotery92-deposit-withdrawal-guide__tips-section,
    .page-blog-lotery92-deposit-withdrawal-guide__faq-section,
    .page-blog-lotery92-deposit-withdrawal-guide__conclusion-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden;
    }

    /* HERO 主图区域 */
    .page-blog-lotery92-deposit-withdrawal-guide__hero-section {
        padding-top: 10px !important; /* Small top padding, assuming body handles header offset */
        padding-bottom: 30px;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    .page-blog-lotery92-deposit-withdrawal-guide__hero-description {
        font-size: 1rem;
    }

    /* 通用图片与容器 */
    .page-blog-lotery92-deposit-withdrawal-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__hero-image-container {
        max-height: 300px;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__method-image,
    .page-blog-lotery92-deposit-withdrawal-guide__tip-image {
        height: 120px; /* Adjust height for mobile */
    }

    /* 按钮与按钮容器 */
    .page-blog-lotery92-deposit-withdrawal-guide__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
        font-size: 1rem !important;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__cta-button--small {
        padding: 10px 15px !important;
        font-size: 0.9rem !important;
    }

    /* 其他内容模块 */
    .page-blog-lotery92-deposit-withdrawal-guide__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__subsection-title {
        font-size: 1.4rem;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__text-block,
    .page-blog-lotery92-deposit-withdrawal-guide__list-item p,
    .page-blog-lotery92-deposit-withdrawal-guide__method-description,
    .page-blog-lotery92-deposit-withdrawal-guide__step-item p,
    .page-blog-lotery92-deposit-withdrawal-guide__table-header,
    .page-blog-lotery92-deposit-withdrawal-guide__table-data,
    .page-blog-lotery92-deposit-withdrawal-guide__tip-description,
    .page-blog-lotery92-deposit-withdrawal-guide__faq-answer {
        font-size: 0.95rem;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__list-title {
        font-size: 1.2rem;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__method-name,
    .page-blog-lotery92-deposit-withdrawal-guide__tip-title {
        font-size: 1.1rem;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__step-item {
        padding-left: 60px;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__step-item::before {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
        left: 15px;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__methods-grid,
    .page-blog-lotery92-deposit-withdrawal-guide__tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__info-table {
        margin: 30px 0;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__table-row {
        grid-template-columns: 1fr;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__table-header,
    .page-blog-lotery92-deposit-withdrawal-guide__table-data {
        padding: 10px 15px;
        text-align: left;
        border-bottom: 1px solid var(--border-color);
    }
    .page-blog-lotery92-deposit-withdrawal-guide__table-row:first-child .page-blog-lotery92-deposit-withdrawal-guide__table-header:last-child,
    .page-blog-lotery92-deposit-withdrawal-guide__table-row:not(:first-child) .page-blog-lotery92-deposit-withdrawal-guide__table-data:last-child {
        border-bottom: none;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__faq-question {
        padding: 15px 20px;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__faq-answer {
        padding: 0 20px 15px;
    }
}

@media (max-width: 480px) {
    .page-blog-lotery92-deposit-withdrawal-guide__hero-title {
        font-size: clamp(1.5rem, 9vw, 2.2rem);
    }
    .page-blog-lotery92-deposit-withdrawal-guide__section-title {
        font-size: 1.5rem;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__subsection-title {
        font-size: 1.2rem;
    }
    .page-blog-lotery92-deposit-withdrawal-guide__cta-button {
        padding: 10px 15px !important;
        font-size: 0.9rem !important;
    }
}