.page-hero {
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, #01040a 0%, #0a1628 100%);
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main, .content-section, .error-container {
    flex: 1;
}

.page-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, #00d2ff, #ffffff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 8s ease-in-out infinite;
}

.page-hero p {
    font-size: 1.2rem;
    color: #a0aec0;
    letter-spacing: 4px;
}

.content-section {
    padding-bottom: 80px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #00d2ff;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 210, 255, 0.2);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #cbd5e0;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 25px 25px;
    color: #a0aec0;
}

.legal-content li {
    font-size: 1rem;
    line-height: 2;
    color: #cbd5e0;
}

.legal-content .update-date {
    color: #718096;
    font-size: 0.9rem;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-grid {
    margin-top: 50px;
}

.closed-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 100, 100, 0.9);
    color: #fff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.hiring-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(90deg, #00d2ff, #0099cc);
    color: #fff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.content-card {
    position: relative;
}

.content-card.highlight-card {
    border-color: #00d2ff;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
}

.contact-section {
    margin-top: 80px;
}

.email-link {
    color: #00d2ff;
    text-decoration: none;
    font-weight: 500;
}

.email-link:hover {
    text-decoration: underline;
}

.qrcode-container {
    margin-top: 20px;
    text-align: center;
}

.qrcode-img {
    max-width: 200px;
    border-radius: 8px;
    border: 2px solid rgba(0, 210, 255, 0.3);
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .page-hero p {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .legal-content h2 {
        font-size: 1.4rem;
    }
    
    .qrcode-img {
        max-width: 180px;
    }
}
