/* Static Pages Shared Styles */

.static-page-header {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.static-page-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.static-page-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.static-page-section {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 32px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.static-page-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

/* Privacy & Rules Specific */
.static-page-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.static-page-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.static-page-list li:last-child {
    border-bottom: none;
}

.static-page-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.static-page-date {
    font-size: 12px;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

/* About Specific */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.feature-card {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.feature-text {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Contact Specific */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(1, 108, 164, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 108, 164, 0.3);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.info-card {
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
}

.info-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.info-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.info-text {
    font-size: 14px;
    color: var(--text-gray);
}

.info-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}

/* Rules & Terms Specific */
.rules-warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 16px;
    border-radius: 8px;
    margin: 20px 0;
}

.rules-warning strong {
    color: #856404;
    font-weight: 600;
}

.rules-warning p {
    color: #856404;
    margin: 0;
    font-size: 14px;
}

/* Team Specific */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

.team-card {
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 12px;
    color: var(--text-gray);
}

.team-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-stat-value {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

/* Help Specific */
.faq-item {
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--primary-dark);
}

.faq-answer {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-top: 8px;
    display: none;
}

.faq-answer.show {
    display: block;
}

.faq-toggle {
    font-size: 20px;
    color: var(--text-gray);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.help-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.help-link-card {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.2s;
}

.help-link-card:hover {
    background: #e8f4fc;
    transform: translateY(-2px);
}

.help-link-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.help-link-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 768px) {

    .static-page-header,
    .static-page-section {
        padding: 24px;
    }

    .about-features,
    .info-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}