* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

.profile-img {
    width: 160px !important;
    height: 160px !important;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #0066cc;
    box-shadow: 0 0 30px rgba(0, 102, 204, 0.5);
    margin-bottom: 1.5rem;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: url('assets/images/webp/hero-bg.webp') center/cover no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 30, 0.85);
}

.hero-content {
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 3rem;
    color: #00ccff;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
}

.tagline {
    font-size: 1.4rem;
    color: #00ccff;
    margin: 1rem 0;
}

.subtitle {
    font-size: 1.1rem;
    color: #aaa;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    margin: 12px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.primary {
    background: #0066cc;
    color: white;
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.5);
}

.primary:hover {
    background: #0088ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 136, 255, 0.6);
}

section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #00ccff;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.3);
}

.job {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #0066cc;
}

.job h3 {
    color: #00ccff;
    margin-bottom: 0.5rem;
}

.job ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.job li {
    margin-bottom: 0.6rem;
}

footer {
    background: #0a0a16;
    color: #666;
    text-align: center;
    padding: 3rem;
    font-size: 0.9rem;
}

footer a {
    color: #00ccff;
}

@media (max-width: 768px) {
    .profile-img {
        width: 140px !important;
        height: 140px !important;
    }

    h1 {
        font-size: 2.4rem;
    }
}