/* Static Pages - About, Support, Privacy, Terms */

.static-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

@media (max-width: 768px) {
    .static-container {
        padding: 100px 16px 60px;
    }
}

.static-header {
    margin-bottom: 48px;
}

.static-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .static-title {
        font-size: 28px;
    }
}

.static-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .static-subtitle {
        font-size: 16px;
    }
}

.static-card {
    background: rgba(18, 18, 24, 0.6);
    backdrop-filter: blur(40px);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .static-card {
        padding: 24px;
        margin-bottom: 24px;
    }
}

.static-card h2 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .static-card h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

.static-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .static-card h3 {
        font-size: 16px;
    }
}

.static-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .static-card p {
        font-size: 15px;
    }
}

.static-card p:last-child {
    margin-bottom: 0;
}

.static-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.static-card li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.static-card li::before {
    content: "•";
    color: #ff3366;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.static-link {
    color: #ff3366;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.static-link:hover {
    opacity: 0.8;
}

.static-meta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 48px;
}

.static-divider {
    margin: 28px 0;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Team Grid */
.team-grid {
    display: grid;
    gap: 24px;
}

.team-member {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.team-title {
    font-size: 14px;
    color: #ff3366;
    margin-bottom: 12px;
}

.team-bio {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
