/* style/resources-v9bet-common-issues.css */
.page-resources-v9bet-common-issues {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-resources-v9bet-common-issues__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-v9bet-common-issues__hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Adjusted gradient for better contrast */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-v9bet-common-issues__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%230062cc" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" opacity="0.1"/></svg>') top left;
    background-size: 20px 20px;
    opacity: 0.2;
}

.page-resources-v9bet-common-issues__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.page-resources-v9bet-common-issues__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.page-resources-v9bet-common-issues__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-resources-v9bet-common-issues__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-resources-v9bet-common-issues__button--primary {
    background-color: #ffc107; /* Secondary color for CTA */
    color: #000000; /* High contrast for text */
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-resources-v9bet-common-issues__button--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-resources-v9bet-common-issues__button--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-resources-v9bet-common-issues__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffc107;
    color: #ffc107;
    transform: translateY(-2px);
}

.page-resources-v9bet-common-issues__button--download {
    background-color: #28a745; /* Green for download */
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.page-resources-v9bet-common-issues__button--download:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

.page-resources-v9bet-common-issues__button--contact {
    background-color: #007bff;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.page-resources-v9bet-common-issues__button--contact:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

/* Introduction Section */
.page-resources-v9bet-common-issues__introduction {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}

.page-resources-v9bet-common-issues__introduction p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #555;
}

.page-resources-v9bet-common-issues__intro-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-resources-v9bet-common-issues__faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.page-resources-v9bet-common-issues__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-resources-v9bet-common-issues__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    border-radius: 2px;
}

.page-resources-v9bet-common-issues__accordion {
    margin-top: 30px;
}

.page-resources-v9bet-common-issues__accordion-item {
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.page-resources-v9bet-common-issues__accordion-header {
    padding: 20px 30px;
    background-color: #007bff; /* Primary color for header */
    color: #ffffff;
    font-size: 1.4em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-resources-v9bet-common-issues__accordion-header:hover {
    background-color: #0056b3;
}

.page-resources-v9bet-common-issues__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-resources-v9bet-common-issues__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-v9bet-common-issues__accordion-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #fefefe;
}

.page-resources-v9bet-common-issues__accordion-content.active {
    max-height: 1000px; /* Adjust as needed for content height */
    padding: 20px 30px;
}

.page-resources-v9bet-common-issues__qa-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.page-resources-v9bet-common-issues__qa-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-resources-v9bet-common-issues__qa-item h4 {
    font-size: 1.2em;
    color: #0056b3; /* Darker primary for sub-questions */
    margin-bottom: 10px;
}

.page-resources-v9bet-common-issues__qa-item p {
    font-size: 1em;
    color: #444;
}

.page-resources-v9bet-common-issues__image-inline {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.page-resources-v9bet-common-issues__call-to-action {
    background-color: #007bff;
    color: #ffffff;
    padding: 50px 30px;
    text-align: center;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.page-resources-v9bet-common-issues__call-to-action p {
    font-size: 1.3em;
    margin-bottom: 20px;
}

.page-resources-v9bet-common-issues__call-to-action p:first-of-type {
    font-weight: bold;
    font-size: 1.5em;
}

/* Floating CTA */
.page-resources-v9bet-common-issues__floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.page-resources-v9bet-common-issues__floating-button {
    background-color: #ffc107; /* Secondary color for floating CTA */
    color: #000000;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-v9bet-common-issues__floating-button:hover {
    background-color: #e0a800;
    transform: scale(1.05);
}

.page-resources-v9bet-common-issues__floating-icon {
    font-size: 1.5em;
    line-height: 1;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-v9bet-common-issues__hero-title {
        font-size: 2.8em;
    }
    .page-resources-v9bet-common-issues__hero-subtitle {
        font-size: 1.3em;
    }
    .page-resources-v9bet-common-issues__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-v9bet-common-issues__section-title {
        font-size: 2em;
    }
    .page-resources-v9bet-common-issues__accordion-header {
        font-size: 1.2em;
        padding: 15px 20px;
    }
    .page-resources-v9bet-common-issues__accordion-content.active {
        padding: 15px 20px;
    }
    .page-resources-v9bet-common-issues__qa-item h4 {
        font-size: 1.1em;
    }
    .page-resources-v9bet-common-issues__call-to-action p {
        font-size: 1.1em;
    }
    .page-resources-v9bet-common-issues__call-to-action p:first-of-type {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-resources-v9bet-common-issues__hero-title {
        font-size: 2.2em;
    }
    .page-resources-v9bet-common-issues__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-v9bet-common-issues__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-v9bet-common-issues__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-resources-v9bet-common-issues__section-title {
        font-size: 1.8em;
    }
    .page-resources-v9bet-common-issues__accordion-header {
        font-size: 1.1em;
        padding: 12px 15px;
    }
    .page-resources-v9bet-common-issues__accordion-content.active {
        padding: 12px 15px;
    }
    .page-resources-v9bet-common-issues__floating-cta {
        bottom: 15px;
        right: 15px;
    }
    .page-resources-v9bet-common-issues__floating-button {
        padding: 12px 20px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-resources-v9bet-common-issues__hero-title {
        font-size: 1.8em;
    }
    .page-resources-v9bet-common-issues__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-v9bet-common-issues__button {
        width: 90%;
    }
    .page-resources-v9bet-common-issues__section-title {
        font-size: 1.6em;
    }
    .page-resources-v9bet-common-issues__accordion-header {
        font-size: 1em;
        padding: 10px 12px;
    }
    .page-resources-v9bet-common-issues__accordion-content.active {
        padding: 10px 12px;
    }
    .page-resources-v9bet-common-issues__call-to-action p {
        font-size: 1em;
    }
    .page-resources-v9bet-common-issues__call-to-action p:first-of-type {
        font-size: 1.1em;
    }
    .page-resources-v9bet-common-issues__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
    }
}