/* style/newbie-guide-withdrawal.css */
.page-newbie-guide-withdrawal {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f5f5f5; /* Light text on dark background */
    background-color: #0A1931;
}

.page-newbie-guide-withdrawal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-newbie-guide-withdrawal-hero {
    background: linear-gradient(135deg, #0A1931 0%, #1a3a61 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-newbie-guide-withdrawal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract_lines,digital_pattern,subtle_texture]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-newbie-guide-withdrawal-hero > div {
    position: relative;
    z-index: 1;
}

.page-newbie-guide-withdrawal-title {
    font-size: 3.2em;
    color: #E6B325; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-newbie-guide-withdrawal-subtitle {
    font-size: 1.3em;
    color: #ccc;
    margin-bottom: 40px;
}

.page-newbie-guide-withdrawal-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(230, 179, 37, 0.1);
}

.page-newbie-guide-withdrawal-section:last-of-type {
    border-bottom: none;
}

.page-newbie-guide-withdrawal-section-title {
    font-size: 2.5em;
    color: #E6B325; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-newbie-guide-withdrawal-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E6B325;
    border-radius: 2px;
}

.page-newbie-guide-withdrawal p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #f5f5f5;
}

.page-newbie-guide-withdrawal ul,
.page-newbie-guide-withdrawal ol {
    list-style-position: inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #f5f5f5;
}

.page-newbie-guide-withdrawal ul li,
.page-newbie-guide-withdrawal ol li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-newbie-guide-withdrawal-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    text-align: center;
}

.page-newbie-guide-withdrawal-btn-primary {
    background-color: #E6B325; /* Gold button */
    color: #0A1931;
    border: 2px solid #E6B325;
}

.page-newbie-guide-withdrawal-btn-primary:hover {
    background-color: #ffc43a;
    border-color: #ffc43a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 179, 37, 0.4);
}

.page-newbie-guide-withdrawal-btn-secondary {
    background-color: transparent;
    color: #E6B325;
    border: 2px solid #E6B325;
    margin-left: 15px;
}

.page-newbie-guide-withdrawal-btn-secondary:hover {
    background-color: #E6B325;
    color: #0A1931;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 179, 37, 0.4);
}

.page-newbie-guide-withdrawal-link-inline {
    color: #E6B325;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-newbie-guide-withdrawal-link-inline:hover {
    color: #ffc43a;
    text-decoration: underline;
}

.page-newbie-guide-withdrawal-highlight {
    color: #E6B325;
    font-weight: bold;
}

/* Conditions Section */
.page-newbie-guide-withdrawal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-newbie-guide-withdrawal-card {
    background-color: #1a2a41; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid rgba(230, 179, 37, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-newbie-guide-withdrawal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(230, 179, 37, 0.3);
}

.page-newbie-guide-withdrawal-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2) drop-shadow(0 0 5px rgba(230, 179, 37, 0.5));
}

.page-newbie-guide-withdrawal-card-title {
    font-size: 1.5em;
    color: #E6B325;
    margin-bottom: 15px;
}

.page-newbie-guide-withdrawal-card p {
    font-size: 1em;
    color: #ccc;
}

.page-newbie-guide-withdrawal-cta-box {
    background-color: #1a2a41;
    border: 1px solid #E6B325;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-newbie-guide-withdrawal-cta-box p {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #fff;
}

/* Step-by-Step Guide */
.page-newbie-guide-withdrawal-step-by-step {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.page-newbie-guide-withdrawal-step-item {
    display: flex;
    align-items: flex-start;
    background-color: #1a2a41;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(230, 179, 37, 0.2);
}

.page-newbie-guide-withdrawal-step-number {
    font-size: 3em;
    font-weight: bold;
    color: #E6B325;
    margin-right: 30px;
    flex-shrink: 0;
    line-height: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-newbie-guide-withdrawal-step-content {
    flex-grow: 1;
}

.page-newbie-guide-withdrawal-step-title {
    font-size: 1.8em;
    color: #E6B325;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-newbie-guide-withdrawal-step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(230, 179, 37, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Why FB88 Section */
.page-newbie-guide-withdrawal-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-newbie-guide-withdrawal-feature-item {
    background-color: #1a2a41;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(230, 179, 37, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-newbie-guide-withdrawal-feature-item:hover {
    transform: translateY(-5px);
    background-color: #2a3d54;
}

.page-newbie-guide-withdrawal-feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(1.2) drop-shadow(0 0 5px rgba(230, 179, 37, 0.5));
}

.page-newbie-guide-withdrawal-feature-item h4 {
    font-size: 1.3em;
    color: #E6B325;
    margin-bottom: 10px;
}

.page-newbie-guide-withdrawal-feature-item p {
    font-size: 0.95em;
    color: #ccc;
}

/* FAQs Accordion */
.page-newbie-guide-withdrawal-accordion {
    margin-top: 30px;
}

.page-newbie-guide-withdrawal-accordion-item {
    margin-bottom: 15px;
    border: 1px solid rgba(230, 179, 37, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background-color: #1a2a41;
}

.page-newbie-guide-withdrawal-accordion-header {
    background-color: #2a3d54; /* Darker blue for header */
    color: #E6B325;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-newbie-guide-withdrawal-accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-newbie-guide-withdrawal-accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-newbie-guide-withdrawal-accordion-header:hover {
    background-color: #3a4d64;
}

.page-newbie-guide-withdrawal-accordion-content {
    padding: 0 25px;
    background-color: #0A1931;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-newbie-guide-withdrawal-accordion-content p {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 0;
    color: #ccc;
}

/* List with checkmark icons */
.page-newbie-guide-withdrawal-list-checked {
    list-style: none;
    padding-left: 0;
}

.page-newbie-guide-withdrawal-list-checked li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1.1em;
    color: #f5f5f5;
}

.page-newbie-guide-withdrawal-list-checked li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    top: 0;
    color: #E6B325;
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-newbie-guide-withdrawal-title {
        font-size: 2.5em;
    }

    .page-newbie-guide-withdrawal-section-title {
        font-size: 2em;
    }

    .page-newbie-guide-withdrawal-grid,
    .page-newbie-guide-withdrawal-features-grid {
        grid-template-columns: 1fr;
    }

    .page-newbie-guide-withdrawal-step-item {
        flex-direction: column;
        text-align: center;
    }

    .page-newbie-guide-withdrawal-step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .page-newbie-guide-withdrawal-cta-box .page-newbie-guide-withdrawal-btn {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .page-newbie-guide-withdrawal-title {
        font-size: 2em;
    }

    .page-newbie-guide-withdrawal-subtitle {
        font-size: 1em;
    }

    .page-newbie-guide-withdrawal-section-title {
        font-size: 1.8em;
    }

    .page-newbie-guide-withdrawal-btn {
        padding: 12px 20px;
        font-size: 1em;
    }
}