:root {
    --bg: #0a0a0a;
    --fg: #e5e5e5;
    --accent1: #4d18b8;
    --accent2: #7a32e6;
    --accent-hover: #9b5cff;
    --radius: 12px;
    --transition: .25s ease;
}

body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: var(--bg);
    color: var(--fg);
}

.header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(6px);
    padding: 12px 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #1a1a1a;
}

@media (max-width: 600px) {
    .header {
        justify-content: center;
    }
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.logo span {
    background: linear-gradient(
        90deg,
        var(--accent1),
        var(--accent2),
        var(--accent1)
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientFlow 3s ease-in-out infinite alternate;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 100% center;
    }
}

@keyframes shine {
    0% { left: -120%; }
    40% { left: 120%; }
    100% { left: 120%; }
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-buttons a {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    color: var(--fg);
    text-decoration: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.contact-buttons a:hover {
    filter: brightness(1.2);
}

.wrap {
    max-width: 820px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

p {
    opacity: .85;
    margin-bottom: 2em;
    line-height: 1.6;
    font-size: 1.1rem;
}

h2 {
    margin: 1.8em 0 .8em;
    font-size: 1.6rem;
    color: var(--accent2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.skills {
    display: flex;
    flex-direction: column;
    margin-bottom: 2em;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #1a1a1a;
}

.skill {
    background: #111;
    padding: 14px 20px;
    text-align: left;
    font-size: 1rem;
    border-bottom: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill:last-child {
    border-bottom: none;
}

.skill i {
    color: var(--accent2);
    width: 20px;
    text-align: center;
}

.footer {
    opacity: .5;
    font-size: .9rem;
    margin: 60px 0 30px;
    text-align: center;
}
