/* =============================================================
 * MAJESTIC CASINO - HELP CENTER STYLES
 * ============================================================= */

/* Hero Help Search */
.help-hero {
    background: linear-gradient(135deg, #16191f 0%, #0d0f12 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 45px 24px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.help-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.help-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.help-hero h1 span {
    background: linear-gradient(90deg, #AA7C11, #D4AF37, #F3E5AB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.help-hero p {
    color: #8a909a;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 24px auto;
}

.help-search-container {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.help-search-input {
    width: 100%;
    background: #0d0f12;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 14px 24px 14px 50px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.help-search-input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.help-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
    font-size: 1.1rem;
}

/* Tab Navigation */
.help-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.help-tab {
    background: #16191f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 14px 24px;
    color: #8a909a;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.help-tab:hover {
    color: #fff;
    background: #1c2027;
}

.help-tab.active {
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    color: #0d0f12;
    border-color: transparent;
}

/* Tab Content Areas */
.help-content-wrapper {
    background: #16191f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    min-height: 400px;
}

.help-tab-content {
    display: none;
}

.help-tab-content.active {
    display: block;
    animation: fadeInHelp 0.4s ease forwards;
}

@keyframes fadeInHelp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Accordion FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #0d0f12;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.faq-header {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
}

.faq-question {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.faq-icon {
    color: #d4af37;
    transition: transform 0.3s ease;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-content {
    padding: 0 24px 20px 24px;
    color: #8a909a;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-content p {
    margin-bottom: 12px;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-body {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* Typographic legal contents (Terms / Privacy) */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-section p {
    color: #8a909a;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.legal-section ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.legal-section li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #8a909a;
    line-height: 1.6;
    font-size: 0.95rem;
}

.legal-section li::before {
    content: '•';
    color: #d4af37;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: -2px;
}

/* Responsible Gaming Features layout */
.rg-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
    margin-bottom: 30px;
}

.rg-card {
    background: #0d0f12;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.rg-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.rg-card-icon {
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 16px;
}

.rg-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.rg-card-desc {
    color: #8a909a;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Help Contacts / Support page */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 900px) {
    .contact-section-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    background: #0d0f12;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-row {
    display: flex;
    gap: 16px;
}

.contact-icon-box {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.contact-details p {
    color: #8a909a;
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.contact-details a {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #fff;
}

.contact-form-card {
    background: #0d0f12;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 24px;
}

.contact-form-card .form-group {
    margin-bottom: 16px;
}

.contact-form-card label {
    display: block;
    color: #8a909a;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-input {
    width: 100%;
    background: #16191f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-input:focus {
    outline: none;
    border-color: #d4af37;
    background: #1c2027;
}

textarea.contact-input {
    resize: vertical;
    min-height: 120px;
}
