* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    line-height: 1.6;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    min-height: 100vh;
}
.container { width: 100%; position: relative; min-height: 100vh; }
.profile-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0 20px;
    overflow: hidden;
}
.profile-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70vh;
    background-image: url('/images/main-photo.PNG');
    background-size: cover;
    background-position: center;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.profile-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102,126,234,0.2), rgba(118,75,162,0.2));
    z-index: 2;
}
.profile-content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.profile-name { font-size: 28px; font-weight: 700; margin-bottom: 8px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.profile-tagline { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 25px; max-width: 280px; line-height: 1.4; }
.social-icons { display: flex; gap: 12px; margin-bottom: 25px; flex-wrap: wrap; justify-content: center; }
.social-icon {
    width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); display: flex;
    align-items: center; justify-content: center; color: white; text-decoration: none;
    transition: all 0.3s ease; flex-shrink: 0;
}
.social-icon:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.social-icon svg { width: 22px; height: 22px; fill: currentColor; }
.action-buttons { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; width: 100%; max-width: 280px; }
.action-btn {
    padding: 14px 24px; border-radius: 25px; font-size: 16px; font-weight: 600;
    text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer; text-align: center;
}
.action-btn.primary { background: white; color: #333; }
.action-btn.primary:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.6); font-size: 28px; animation: bounce 2s infinite; z-index: 10;
    cursor: pointer;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}
.content-section { padding: 30px 20px; background: #1a1a1a; }
.section-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; text-align: center; color: white; }
.links-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 25px; }
.link-card {
    background: #2a2a2a; border-radius: 12px; padding: 18px; text-decoration: none;
    color: white; transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.1);
    position: relative; overflow: hidden; display: block;
}
.link-card:hover { transform: translateY(-2px); background: #333; box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.link-content { display: flex; align-items: center; gap: 15px; }
.link-icon {
    width: 38px; height: 38px; border-radius: 8px; background: linear-gradient(45deg, #667eea, #764ba2);
    display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}
.link-text { flex: 1; }
.link-title { font-size: 16px; font-weight: 600; margin-bottom: 3px; }
.link-subtitle { font-size: 13px; color: rgba(255,255,255,0.6); }
.about-section { background: #2a2a2a; margin: 20px 0; padding: 22px 18px; border-radius: 16px; text-align: center; }
.about-text { color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 18px; font-size: 14px; }
.stats { display: flex; justify-content: space-around; margin-top: 18px; }
.stat-item { text-align: center; }
.stat-number { font-size: 22px; font-weight: 700; color: #667eea; display: block; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.collapsible-section {
    max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background: #222; border-radius: 16px; margin: -8px 0 4px 0; padding: 0 20px;
}
.collapsible-section.expanded { max-height: 2000px; padding: 20px; }

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 15px;
}
.portfolio-item {
    background: #2a2a2a; border-radius: 12px; overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer;
    display: block;
    text-decoration: none;
}
.portfolio-item:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }

.portfolio-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    position: relative;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.portfolio-title { padding: 12px; font-size: 14px; font-weight: 600; color: white; text-align: center; }
.portfolio-close {
    position: absolute; top: 10px; right: 15px; background: rgba(255,255,255,0.1);
    border: none; color: white; width: 30px; height: 30px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 16px; transition: background 0.3s ease;
}
.interview-item { background: #2a2a2a; border-radius: 12px; padding: 18px; margin-bottom: 15px; border: 1px solid rgba(255,255,255,0.1); }
.interview-title { font-size: 16px; font-weight: 600; color: white; margin-bottom: 3px; }
.faq-item { background: #2a2a2a; border-radius: 12px; padding: 18px; margin-bottom: 15px; border: 1px solid rgba(255,255,255,0.1); }
.faq-question { font-size: 16px; font-weight: 600; color: white; margin-bottom: 10px; }
.faq-answer { color: rgba(255,255,255,0.8); line-height: 1.5; font-size: 14px; }
a { color: white; text-decoration: none; }
a:hover { color: #ccc; }
@media (max-width: 360px) { .profile-name { font-size: 26px; } }