/* Help Page Specific Styles */
body {
    background-color: var(--primary-black) !important;
}

.help-container {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.help-header {
    text-align: center;
    margin-bottom: 60px;
}

.help-header h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.help-header p {
    color: var(--text-grey);
    font-size: 16px;
}

.help-section {
    margin-bottom: 100px;
    scroll-margin-top: 120px;
    /* For smooth anchor scrolling */
}

.section-title-premium {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title-premium::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #333, transparent);
}

/* Accordion Styles */
.accordion-item {
    border-bottom: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.accordion-header {
    width: 100%;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--text-white);
    transition: transform 0.3s ease;
}

/* Vertical line */
.accordion-icon::before {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* Horizontal line */
.accordion-icon::after {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.accordion-item.active .accordion-icon::before {
    transform: translateX(-50%) rotate(90deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content {
    padding-bottom: 30px;
    color: var(--text-grey);
    line-height: 1.6;
    font-size: 15px;
}

/* Support Cards */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.support-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 40px;
    border-radius: 4px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.support-card:hover {
    border-color: var(--accent-green);
}

.support-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.support-card p {
    color: var(--text-grey);
    margin-bottom: 25px;
}

.support-link {
    color: var(--accent-green);
    font-weight: 700;
    text-decoration: underline;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Size Guide Table */
.size-guide-container {
    overflow-x: auto;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    min-width: 600px;
}

.size-table th,
.size-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #1a1a1a;
    font-size: 14px;
}

.size-table th {
    background: #0a0a0a;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-green);
}

.size-table tr:hover {
    background: #050505;
}

/* Guide Content */
.guide-text {
    line-height: 1.8;
    color: var(--text-grey);
    font-size: 15px;
}

.guide-text h4 {
    color: #fff;
    margin: 25px 0 10px;
    font-size: 18px;
}

.guide-text ul {
    list-style: none;
    padding-left: 0;
}

.guide-text li {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.guide-text li::before {
    content: '→';
    color: var(--accent-green);
}

@media (max-width: 768px) {
    .help-header h1 {
        font-size: 32px;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }
}