/* Page Styles for Terms, Privacy, About */

.page-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--darker-red) 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://static0.makeuseofimages.com/wordpress/wp-content/uploads/2024/06/amd-ryzen-cpu-in-red-light.jpg?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    filter: brightness(0.3);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FF6B6B 50%, #FFFFFF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.page-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background-color: var(--black);
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-intro h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--white);
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.team-section {
    margin: 80px 0;
}

.team-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    border: 2px solid rgba(139, 0, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.3);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
    border: 4px solid var(--primary-red);
    transition: transform 0.3s ease;
}

.team-member:hover .member-avatar {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.6);
}

.member-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}

.member-role {
    font-size: 18px;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.values-section {
    margin-top: 80px;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(139, 0, 0, 0.15);
    border-color: var(--primary-red);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Terms & Privacy Styles */
.terms-content,
.privacy-content {
    padding: 80px 0;
    background-color: var(--black);
}

.terms-section,
.privacy-section {
    max-width: 900px;
    margin: 0 auto 50px;
    background: rgba(139, 0, 0, 0.05);
    border: 1px solid rgba(139, 0, 0, 0.2);
    border-radius: 15px;
    padding: 40px;
}

.terms-section h2,
.privacy-section h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.terms-section p,
.privacy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.terms-section ul,
.privacy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.terms-section li,
.privacy-section li {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.terms-section li::before,
.privacy-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .about-intro h2,
    .team-section h2,
    .values-section h2 {
        font-size: 32px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .terms-section,
    .privacy-section {
        padding: 25px;
    }
}
