/* style/beginner-guide-faq-troubleshooting.css */
.page-beginner-guide-faq-troubleshooting {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f5f5f5;
}

.page-beginner-guide-faq-troubleshooting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-beginner-guide-faq-troubleshooting__hero {
    background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
    color: #fff;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-faq-troubleshooting__hero-content {
    z-index: 10;
    position: relative;
}

.page-beginner-guide-faq-troubleshooting__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-faq-troubleshooting__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #eee;
}

.page-beginner-guide-faq-troubleshooting__hero-button {
    display: inline-block;
    background-color: #FFD700;
    color: #8B0000;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-beginner-guide-faq-troubleshooting__hero-button:hover {
    background-color: #fff;
    color: #8B0000;
    transform: translateY(-3px);
}

.page-beginner-guide-faq-troubleshooting__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.2;
}

.page-beginner-guide-faq-troubleshooting__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(3px);
}

/* General Section Styling */
.page-beginner-guide-faq-troubleshooting__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-faq-troubleshooting__section:nth-of-type(even) {
    background-color: #fcfcfc;
}

.page-beginner-guide-faq-troubleshooting__section-title {
    font-size: 2.5em;
    color: #8B0000;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-beginner-guide-faq-troubleshooting__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-beginner-guide-faq-troubleshooting__section p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.page-beginner-guide-faq-troubleshooting__section ul {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-beginner-guide-faq-troubleshooting__section li {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.page-beginner-guide-faq-troubleshooting__section strong {
    color: #8B0000;
}

/* Accordion Styling */
.page-beginner-guide-faq-troubleshooting__faq-accordion {
    background-color: #fcfcfc;
}

.page-beginner-guide-faq-troubleshooting__accordion-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-beginner-guide-faq-troubleshooting__accordion-header {
    width: 100%;
    background-color: #FFD700;
    color: #8B0000;
    padding: 18px 25px;
    text-align: left;
    font-size: 1.25em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.page-beginner-guide-faq-troubleshooting__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    font-weight: normal;
    transition: transform 0.3s ease;
}

.page-beginner-guide-faq-troubleshooting__accordion-header.active {
    background-color: #8B0000;
    color: #FFD700;
}

.page-beginner-guide-faq-troubleshooting__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-beginner-guide-faq-troubleshooting__accordion-content {
    padding: 0 25px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-beginner-guide-faq-troubleshooting__accordion-content.open {
    max-height: 500px; /* Adjust as needed */
    padding: 25px;
}

.page-beginner-guide-faq-troubleshooting__accordion-content p {
    margin-top: 0;
}

/* Buttons */
.page-beginner-guide-faq-troubleshooting__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-right: 15px;
    margin-top: 15px;
}

.page-beginner-guide-faq-troubleshooting__button--primary {
    background-color: #8B0000;
    color: #FFD700;
    border: 2px solid #8B0000;
}

.page-beginner-guide-faq-troubleshooting__button--primary:hover {
    background-color: #FFD700;
    color: #8B0000;
    border-color: #FFD700;
}

.page-beginner-guide-faq-troubleshooting__button--secondary {
    background-color: #FFD700;
    color: #8B0000;
    border: 2px solid #FFD700;
}

.page-beginner-guide-faq-troubleshooting__button--secondary:hover {
    background-color: #8B0000;
    color: #FFD700;
    border-color: #8B0000;
}

/* Troubleshooting Grid */
.page-beginner-guide-faq-troubleshooting__troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-beginner-guide-faq-troubleshooting__troubleshooting-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
}

.page-beginner-guide-faq-troubleshooting__troubleshooting-item:hover {
    transform: translateY(-5px);
}

.page-beginner-guide-faq-troubleshooting__troubleshooting-heading {
    font-size: 1.5em;
    color: #8B0000;
    margin-bottom: 15px;
}

.page-beginner-guide-faq-troubleshooting__troubleshooting-item p {
    font-size: 1em;
    color: #666;
}

.page-beginner-guide-faq-troubleshooting__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(139, 0, 0, 0.5));
}

/* Contact Support */
.page-beginner-guide-faq-troubleshooting__contact-support {
    text-align: center;
}

.page-beginner-guide-faq-troubleshooting__contact-methods {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Responsible Gambling */
.page-beginner-guide-faq-troubleshooting__responsible-gambling {
    text-align: center;
    background-color: #fefefe;
}

.page-beginner-guide-faq-troubleshooting__image--inline {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Floating Promotion Button */
.page-beginner-guide-faq-troubleshooting__floating-promo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.page-beginner-guide-faq-troubleshooting__floating-button {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #8B0000;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid #8B0000;
}

.page-beginner-guide-faq-troubleshooting__floating-button:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-faq-troubleshooting__floating-icon {
    font-size: 1.5em;
    margin-right: 10px;
    animation: pulse 1.5s infinite;
}

.page-beginner-guide-faq-troubleshooting__floating-text {
    white-space: nowrap;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-beginner-guide-faq-troubleshooting__hero-title {
        font-size: 2.8em;
    }
    .page-beginner-guide-faq-troubleshooting__hero-subtitle {
        font-size: 1.3em;
    }
    .page-beginner-guide-faq-troubleshooting__section-title {
        font-size: 2em;
    }
    .page-beginner-guide-faq-troubleshooting__accordion-header {
        font-size: 1.1em;
    }
    .page-beginner-guide-faq-troubleshooting__troubleshooting-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-beginner-guide-faq-troubleshooting__hero {
        padding: 60px 0;
    }
    .page-beginner-guide-faq-troubleshooting__hero-title {
        font-size: 2.2em;
    }
    .page-beginner-guide-faq-troubleshooting__hero-subtitle {
        font-size: 1.1em;
    }
    .page-beginner-guide-faq-troubleshooting__section {
        padding: 40px 0;
    }
    .page-beginner-guide-faq-troubleshooting__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-beginner-guide-faq-troubleshooting__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-beginner-guide-faq-troubleshooting__accordion-content.open {
        padding: 20px;
    }
    .page-beginner-guide-faq-troubleshooting__button {
        margin-right: 10px;
        margin-top: 10px;
        padding: 10px 20px;
        font-size: 0.95em;
    }
    .page-beginner-guide-faq-troubleshooting__floating-promo {
        bottom: 20px;
        right: 20px;
    }
    .page-beginner-guide-faq-troubleshooting__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    .page-beginner-guide-faq-troubleshooting__floating-icon {
        font-size: 1.2em;
        margin-right: 5px;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-faq-troubleshooting__hero-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-faq-troubleshooting__hero-subtitle {
        font-size: 0.9em;
    }
    .page-beginner-guide-faq-troubleshooting__section-title {
        font-size: 1.5em;
    }
    .page-beginner-guide-faq-troubleshooting__button {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .page-beginner-guide-faq-troubleshooting__contact-methods {
        flex-direction: column;
        gap: 15px;
    }
    .page-beginner-guide-faq-troubleshooting__floating-button {
        padding: 8px 12px;
        font-size: 0.8em;
    }
    .page-beginner-guide-faq-troubleshooting__floating-icon {
        font-size: 1em;
        margin-right: 5px;
    }
}