* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    color: #ffffff;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.official-stamp {
    background: rgba(0, 212, 255, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.4);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0 50px;
    background: linear-gradient(135deg, #0a0e27 0%, #16213e 100%);
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: #b8c6db;
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badges span {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    backdrop-filter: blur(5px);
}

/* Staff Section */
.staff-section {
    padding: 60px 0;
}

.staff-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #fff;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.staff-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.staff-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #00d4ff;
}

.staff-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.staff-card p {
    color: #b8c6db;
    margin-bottom: 20px;
}

.staff-card a {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.staff-card a:hover {
    opacity: 0.9;
}

/* Individual Verification Page */
.verify-section {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.verify-card {
    max-width: 550px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.verified-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00c853, #009624);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}

.staff-photo-wrapper {
    position: relative;
    width: 150px;
    margin: 0 auto 20px;
}

.staff-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #00d4ff;
}

.photo-verify-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #00c853;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid white;
}

.staff-name {
    font-size: 32px;
    text-align: center;
    margin: 15px 0 5px;
}

.staff-role {
    text-align: center;
    color: #00d4ff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.staff-dept {
    text-align: center;
    margin-bottom: 20px;
    color: #b8c6db;
}

.date-badge {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: rgba(0, 212, 255, 0.1);
    padding: 12px;
    border-radius: 50px;
    margin: 20px 0;
    font-size: 14px;
}

.date-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.date-label {
    font-size: 11px;
    color: #b8c6db;
    text-transform: uppercase;
}

.date-value {
    font-weight: 600;
}

.date-divider {
    color: #00d4ff;
}

.qr-container {
    text-align: center;
    margin: 25px 0;
}

.qr-wrapper {
    display: inline-block;
    background: white;
    padding: 15px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.qr-code {
    width: 180px;
    height: 180px;
}

.qr-instruction {
    font-size: 13px;
    color: #b8c6db;
}

.live-verification {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 200, 83, 0.1);
    padding: 15px;
    border-radius: 15px;
    margin: 20px 0;
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.live-icon {
    font-size: 20px;
    animation: pulse 1.5s infinite;
}

.live-text {
    display: flex;
    flex-direction: column;
}

.live-text span {
    font-size: 13px;
    color: #b8c6db;
}

.security-note {
    background: rgba(255, 193, 7, 0.1);
    padding: 12px;
    border-radius: 12px;
    font-size: 12px;
    text-align: center;
    border-left: 3px solid #ffc107;
}

.security-note p {
    color: #ffc107;
}

.back-link-wrapper {
    text-align: center;
    margin-top: 30px;
}

.back-link {
    color: #b8c6db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.back-link:hover {
    color: #00d4ff;
}

/* Footer */
.main-footer {
    background: #060814;
    padding: 50px 0 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: #b8c6db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00d4ff;
}

.footer-copyright p {
    color: #6c7a8e;
    font-size: 12px;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .verify-card {
        padding: 25px;
        margin: 0 15px;
    }
    
    .staff-name {
        font-size: 24px;
    }
    
    .date-badge {
        flex-direction: column;
        gap: 10px;
    }
    
    .date-divider {
        display: none;
    }
}