/* style/resources-pg88-deposit-withdrawal-tutorial.css */

:root {
    --page-primary-color: #007bff;
    --page-secondary-color: #ffc107;
    --page-dark-text: #212529;
    --page-light-text: #f8f9fa;
    --page-background-light: #ffffff;
    --page-background-dark: #343a40;
    --page-accent-color: #ff8400; /* Complementary to primary */
}

.page-resources-pg88-deposit-withdrawal-tutorial {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-dark-text);
    background-color: var(--page-background-light);
}

.page-resources-pg88-deposit-withdrawal-tutorial .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-pg88-deposit-withdrawal-tutorial section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-resources-pg88-deposit-withdrawal-tutorial .hero-section {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #0056b3 100%); /* Darker primary for depth */
    color: var(--page-light-text);
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.page-resources-pg88-deposit-withdrawal-tutorial .hero-section h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-light-text);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-pg88-deposit-withdrawal-tutorial .hero-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-pg88-deposit-withdrawal-tutorial .hero-actions .btn {
    margin: 0 10px;
}

.page-resources-pg88-deposit-withdrawal-tutorial .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-resources-pg88-deposit-withdrawal-tutorial .btn-primary {
    background-color: var(--page-secondary-color);
    color: var(--page-dark-text);
}

.page-resources-pg88-deposit-withdrawal-tutorial .btn-primary:hover {
    background-color: #e0a800; /* Slightly darker secondary */
    transform: translateY(-2px);
}

.page-resources-pg88-deposit-withdrawal-tutorial .btn-secondary {
    background-color: var(--page-primary-color);
    color: var(--page-light-text);
    border: 1px solid var(--page-primary-color);
}

.page-resources-pg88-deposit-withdrawal-tutorial .btn-secondary:hover {
    background-color: #0056b3; /* Darker primary */
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-resources-pg88-deposit-withdrawal-tutorial .large-btn {
    padding: 15px 30px;
    font-size: 1.2em;
}

.page-resources-pg88-deposit-withdrawal-tutorial h2 {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 3px solid var(--page-secondary-color);
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-resources-pg88-deposit-withdrawal-tutorial h3 {
    font-size: 1.8em;
    color: var(--page-dark-text);
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid var(--page-secondary-color);
    padding-left: 15px;
}

.page-resources-pg88-deposit-withdrawal-tutorial h4 {
    font-size: 1.4em;
    color: var(--page-primary-color);
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-resources-pg88-deposit-withdrawal-tutorial p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-resources-pg88-deposit-withdrawal-tutorial ul,
.page-resources-pg88-deposit-withdrawal-tutorial ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-resources-pg88-deposit-withdrawal-tutorial ul li,
.page-resources-pg88-deposit-withdrawal-tutorial ol li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources-pg88-deposit-withdrawal-tutorial .link-text {
    color: var(--page-primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-resources-pg88-deposit-withdrawal-tutorial .link-text:hover {
    text-decoration: underline;
}

.page-resources-pg88-deposit-withdrawal-tutorial .icon {
    font-size: 1.2em;
    color: var(--page-secondary-color);
}

.page-resources-pg88-deposit-withdrawal-tutorial .introduction-section,
.page-resources-pg88-deposit-withdrawal-tutorial .important-notes-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-pg88-deposit-withdrawal-tutorial .method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-resources-pg88-deposit-withdrawal-tutorial .method-card {
    background-color: var(--page-background-light);
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-pg88-deposit-withdrawal-tutorial .method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.page-resources-pg88-deposit-withdrawal-tutorial .method-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
}

.page-resources-pg88-deposit-withdrawal-tutorial .steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.page-resources-pg88-deposit-withdrawal-tutorial .steps-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
}

.page-resources-pg88-deposit-withdrawal-tutorial .steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--page-primary-color);
    color: var(--page-light-text);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-resources-pg88-deposit-withdrawal-tutorial .steps-list li strong {
    color: var(--page-primary-color);
    font-size: 1.15em;
}

.page-resources-pg88-deposit-withdrawal-tutorial .tutorial-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-pg88-deposit-withdrawal-tutorial .note {
    background-color: #fff3cd; /* Light yellow */
    border-left: 5px solid #ffc107; /* Secondary color */
    padding: 15px;
    margin: 20px 0;
    color: #856404; /* Dark text for contrast */
    border-radius: 4px;
}

.page-resources-pg88-deposit-withdrawal-tutorial .call-to-action {
    font-size: 1.4em;
    font-weight: bold;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    color: var(--page-primary-color);
}

.page-resources-pg88-deposit-withdrawal-tutorial .faq-section {
    background-color: #f1f7ff; /* Lighter primary background */
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-pg88-deposit-withdrawal-tutorial .faq-item {
    background-color: var(--page-background-light);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-resources-pg88-deposit-withdrawal-tutorial .faq-item h3 {
    color: var(--page-dark-text);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5em;
    border-left: none;
    padding-left: 0;
}

.page-resources-pg88-deposit-withdrawal-tutorial .faq-item ul {
    list-style: disc;
    padding-left: 20px;
}

.page-resources-pg88-deposit-withdrawal-tutorial .cta-final-section {
    background-color: var(--page-primary-color);
    color: var(--page-light-text);
    text-align: center;
    padding: 80px 20px;
    border-radius: 8px;
    margin-top: 40px;
}

.page-resources-pg88-deposit-withdrawal-tutorial .cta-final-section h2 {
    color: var(--page-light-text);
    border-bottom-color: var(--page-secondary-color);
}

.page-resources-pg88-deposit-withdrawal-tutorial .cta-final-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-resources-pg88-deposit-withdrawal-tutorial .cta-final-section .btn {
    margin: 0 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-pg88-deposit-withdrawal-tutorial .hero-section h1 {
        font-size: 2.5em;
    }

    .page-resources-pg88-deposit-withdrawal-tutorial .hero-section p {
        font-size: 1.1em;
    }

    .page-resources-pg88-deposit-withdrawal-tutorial h2 {
        font-size: 2em;
    }

    .page-resources-pg88-deposit-withdrawal-tutorial h3 {
        font-size: 1.5em;
    }

    .page-resources-pg88-deposit-withdrawal-tutorial .method-grid {
        grid-template-columns: 1fr;
    }

    .page-resources-pg88-deposit-withdrawal-tutorial .steps-list li {
        padding-left: 40px;
    }

    .page-resources-pg88-deposit-withdrawal-tutorial .steps-list li::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
    }

    .page-resources-pg88-deposit-withdrawal-tutorial .btn {
        width: 100%;
        margin: 10px 0;
    }

    .page-resources-pg88-deposit-withdrawal-tutorial .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-pg88-deposit-withdrawal-tutorial .cta-final-section .btn {
        width: 100%;
        margin: 10px 0;
    }
}