/* style/resources-payment-methods-88king.css */

/* Variables for consistent styling */
:root {
    --88king-gold: #FFD700;
    --88king-red: #8B0000;
    --88king-dark-bg: #1a1a1a;
    --88king-text-light: #f0f0f0;
    --88king-text-dark: #333333;
    --88king-accent-blue: #0028ff; /* Complementary to gold */
    --88king-accent-cyan: #74ffff; /* Complementary to red */
}

.page-resources-payment-methods-88king {
    font-family: 'Arial', sans-serif;
    color: var(--88king-text-light);
    background-color: var(--88king-dark-bg);
    line-height: 1.6;
    padding-bottom: 50px; /* Space for sticky footer or general bottom padding */
}

.page-resources-payment-methods-88king__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-payment-methods-88king__hero {
    background: linear-gradient(135deg, var(--88king-red) 0%, var(--88king-gold) 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.page-resources-payment-methods-88king__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.page-resources-payment-methods-88king__hero-title {
    font-size: 3.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-resources-payment-methods-88king__hero-subtitle {
    font-size: 1.4em;
    color: #EEEEEE;
    margin-bottom: 30px;
}

.page-resources-payment-methods-88king__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
}

.page-resources-payment-methods-88king__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-resources-payment-methods-88king__section {
    padding: 60px 0;
    text-align: center;
}

.page-resources-payment-methods-88king__section:nth-of-type(even) {
    background-color: #222222;
}

.page-resources-payment-methods-88king__section-title {
    font-size: 2.5em;
    color: var(--88king-gold);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-payment-methods-88king__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--88king-red);
    border-radius: 2px;
}

.page-resources-payment-methods-88king__text {
    font-size: 1.1em;
    color: var(--88king-text-light);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-resources-payment-methods-88king__text--highlight {
    font-style: italic;
    color: var(--88king-gold);
    text-align: center;
    margin-top: 30px;
}

.page-resources-payment-methods-88king__method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-payment-methods-88king__method-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-payment-methods-88king__method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-payment-methods-88king__method-title {
    font-size: 1.8em;
    color: var(--88king-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-payment-methods-88king__method-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #333333; /* For better contrast with images */
    padding: 10px;
}

.page-resources-payment-methods-88king__method-description {
    color: #cccccc;
    margin-bottom: 20px;
}

.page-resources-payment-methods-88king__method-details h4 {
    color: var(--88king-red);
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-resources-payment-methods-88king__method-details ol {
    list-style-type: decimal;
    padding-left: 20px;
    color: #e0e0e0;
}

.page-resources-payment-methods-88king__method-details li {
    margin-bottom: 8px;
}

.page-resources-payment-methods-88king__method-details p {
    margin-top: 15px;
    font-size: 0.95em;
    color: #b0b0b0;
}

.page-resources-payment-methods-88king__important-notes .page-resources-payment-methods-88king__note-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-payment-methods-88king__note-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    padding-top: 80px; /* Space for icon */
}

.page-resources-payment-methods-88king__note-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--88king-red);
    border-radius: 50%;
    padding: 10px;
}

.page-resources-payment-methods-88king__note-title {
    font-size: 1.5em;
    color: var(--88king-gold);
    margin-bottom: 15px;
}

.page-resources-payment-methods-88king__note-item p {
    color: #cccccc;
}

.page-resources-payment-methods-88king__why-choose .page-resources-payment-methods-88king__advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-payment-methods-88king__advantage-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-resources-payment-methods-88king__advantage-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
    background-color: var(--88king-gold);
    border-radius: 50%;
    padding: 10px;
}

.page-resources-payment-methods-88king__advantage-item h3 {
    font-size: 1.6em;
    color: var(--88king-red);
    margin-bottom: 15px;
}

.page-resources-payment-methods-88king__advantage-item p {
    color: #cccccc;
}

.page-resources-payment-methods-88king__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
}

.page-resources-payment-methods-88king__faq-item {
    background-color: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-payment-methods-88king__faq-question {
    font-size: 1.3em;
    color: var(--88king-gold);
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333333;
    border-bottom: 1px solid #444444;
    transition: background-color 0.3s ease;
}

.page-resources-payment-methods-88king__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: var(--88king-red);
    transition: transform 0.3s ease;
}

.page-resources-payment-methods-88king__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-payment-methods-88king__faq-answer {
    padding: 0 25px;
    color: #cccccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-resources-payment-methods-88king__faq-answer.open {
    max-height: 300px; /* Adjust as needed based on content */
    padding: 15px 25px 20px;
}

.page-resources-payment-methods-88king__cta-final {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--88king-gold), var(--88king-red));
    color: #FFFFFF;
    text-align: center;
}

.page-resources-payment-methods-88king__cta-content .page-resources-payment-methods-88king__section-title {
    color: #FFFFFF;
}

.page-resources-payment-methods-88king__cta-content .page-resources-payment-methods-88king__section-title::after {
    background-color: #FFFFFF;
}

.page-resources-payment-methods-88king__cta-content .page-resources-payment-methods-88king__text {
    color: #EEEEEE;
    text-align: center;
    margin-bottom: 40px;
}

.page-resources-payment-methods-88king__cta-button {
    display: inline-block;
    background-color: var(--88king-dark-bg);
    color: var(--88king-gold);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid var(--88king-gold);
}

.page-resources-payment-methods-88king__cta-button:hover {
    background-color: var(--88king-gold);
    color: var(--88king-dark-bg);
    transform: translateY(-5px) scale(1.05);
    border-color: var(--88king-dark-bg);
}

.page-resources-payment-methods-88king__cta-button--large {
    padding: 18px 40px;
    font-size: 1.4em;
}

.page-resources-payment-methods-88king__cta-button--secondary {
    background-color: transparent;
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.page-resources-payment-methods-88king__cta-button--secondary:hover {
    background-color: #FFFFFF;
    color: var(--88king-red);
    border-color: var(--88king-red);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-payment-methods-88king__hero-title {
        font-size: 2.8em;
    }
    .page-resources-payment-methods-88king__hero-subtitle {
        font-size: 1.2em;
    }
    .page-resources-payment-methods-88king__section-title {
        font-size: 2em;
    }
    .page-resources-payment-methods-88king__method-grid,
    .page-resources-payment-methods-88king__note-list,
    .page-resources-payment-methods-88king__advantages {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-resources-payment-methods-88king__hero {
        padding: 60px 0;
    }
    .page-resources-payment-methods-88king__hero-title {
        font-size: 2.2em;
    }
    .page-resources-payment-methods-88king__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-payment-methods-88king__section {
        padding: 40px 0;
    }
    .page-resources-payment-methods-88king__section-title {
        font-size: 1.8em;
    }
    .page-resources-payment-methods-88king__text {
        font-size: 1em;
    }
    .page-resources-payment-methods-88king__method-grid,
    .page-resources-payment-methods-88king__note-list,
    .page-resources-payment-methods-88king__advantages {
        grid-template-columns: 1fr;
    }
    .page-resources-payment-methods-88king__method-card,
    .page-resources-payment-methods-88king__note-item,
    .page-resources-payment-methods-88king__advantage-item {
        padding: 20px;
    }
    .page-resources-payment-methods-88king__note-icon {
        width: 50px;
        height: 50px;
        top: 15px;
    }
    .page-resources-payment-methods-88king__note-item {
        padding-top: 70px;
    }
    .page-resources-payment-methods-88king__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-resources-payment-methods-88king__cta-button--large {
        font-size: 1.2em;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .page-resources-payment-methods-88king__hero-title {
        font-size: 1.8em;
    }
    .page-resources-payment-methods-88king__hero-subtitle {
        font-size: 0.9em;
    }
    .page-resources-payment-methods-88king__section-title {
        font-size: 1.5em;
    }
    .page-resources-payment-methods-88king__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-resources-payment-methods-88king__faq-answer {
        padding: 10px 20px 15px;
    }
    .page-resources-payment-methods-88king__cta-button {
        width: 100%;
        margin: 10px 0;
    }
    .page-resources-payment-methods-88king__cta-button--large {
        width: 100%;
    }
}