body, h1, h2, h3, p, li, ul {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: 'Inter', system-ui, sans-serif;
    background: radial-gradient(circle at top left, #4e4a9a 0%, #2d2a4c 35%, #1a1a2f 100%);
    color: #f5f2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.page-container {
    width: min(100%, 960px);
}

.resume-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 80px rgba(5, 5, 15, 0.35);
    border-radius: 28px;
    padding: 42px 36px;
    backdrop-filter: blur(18px);
}

.resume-header {
    text-align: center;
    margin-bottom: 32px;
}

.resume-header h1 {
    font-size: clamp(2.6rem, 4vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.personal-info {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.personal-info p {
    margin: 0;
    font-size: 1rem;
    color: #e8e0ff;
}

.resume-section {
    margin-bottom: 32px;
}

.resume-section h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #dcd0ff;
}

.resume-section p {
    line-height: 1.8;
    color: #e8e0ff;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 18px;
}

.skill-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 20px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.skill-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.28);
}

.skill-item h3 {
    margin-bottom: 10px;
    color: #d6ccff;
    font-size: 1.1rem;
}

.skill-item p {
    margin: 0;
    color: #f2eeff;
    line-height: 1.6;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 10px 16px;
    color: #d6ccff;
    margin-bottom: 24px;
}

.hero-card h1 {
    font-size: clamp(2.6rem, 4vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.hero-subtitle {
    max-width: 720px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e8e0ff;
    margin-bottom: 32px;
}

.status-chip {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.stats-panel {
    margin-bottom: 32px;
}

.stats-panel h2 {
    font-size: 1.15rem;
    margin-bottom: 14px;
    color: #dcd0ff;
}

.stat-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    list-style: none;
}

.stat-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
    font-weight: 600;
    color: #f5f2ff;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.28);
}

.red-value {
    color: #ff8686;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #9f7cff 0%, #64d2ff 100%);
    color: #0a0a1a;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(100, 210, 255, 0.22);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 28px 0;
}

.hero-actions a.secondary-btn {
    opacity: 0.96;
    background: rgba(255, 255, 255, 0.14);
    color: #f5f2ff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-actions a.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 40px rgba(100, 210, 255, 0.18);
}

.primary-btn:focus-visible {
    outline: 2px solid rgba(217, 227, 255, 0.75);
    outline-offset: 3px;
}

.code-snipets {
    margin: 30px 0 0;
    padding: 18px;
    background-color: rgba(19, 17, 41, 0.92);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.button-area {
    display: flex;
    justify-content: center;
    margin: 24px 0 32px;
}

.page-footer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.filters-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 70px rgba(5, 5, 15, 0.24);
    border-radius: 28px;
    padding: 36px 32px;
    backdrop-filter: blur(16px);
}

.card-header {
    max-width: 720px;
    margin-bottom: 32px;
}

.card-header h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin: 18px 0 14px;
}

.filters-grid {
    display: grid;
    gap: 24px;
}

.filter-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 24px;
}

.filter-block h2 {
    margin-bottom: 14px;
    font-size: 1.25rem;
    color: #dcd0ff;
}

.filter-copy {
    margin-bottom: 16px;
    color: #e8e0ff;
    line-height: 1.75;
}

.filter-result {
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fefcff;
    margin-bottom: 12px;
    font-weight: 600;
}

.filter-note {
    color: #b8b1ff;
    font-size: 0.95rem;
}

.filter-grid-two {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin-bottom: 18px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 70px rgba(5, 5, 15, 0.24);
    border-radius: 28px;
    padding: 36px 32px;
    backdrop-filter: blur(16px);
}

.blog-section {
    margin-bottom: 28px;
}

.summary-list {
    list-style: disc;
    margin: 18px 0 0 20px;
    color: #e9e3ff;
    line-height: 1.8;
}

.summary-list li {
    margin-bottom: 10px;
}

.highlight-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.blog-highlight {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 18px 20px;
    color: #f2eeff;
}

.blog-highlight strong {
    display: block;
    margin-bottom: 10px;
    color: #d6ccff;
}