:root {
    --bg: #000;
    --card: #1A1A1A;
    --accent: #FFB43A;
    --text: #f5f5f5;
    --muted: #aaa;
}

* {
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: 0.3s;
}

.container {
    max-width: 1100px;
    margin: auto
}

.cover {
    height: 300px;
    position: relative;
}

.avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    position: absolute;
    bottom: -80px;
    left: 40px;
}

.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    position: absolute;
    bottom: -80px;
    left: 40px;
    object-fit: cover;
}

.profile {
    padding: 100px 30px 30px
}

h1 {
    margin: 0
}

.section {
    backdrop-filter: blur(10px);
    background: rgba(26, 26, 26, 0.6);
    margin: 20px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s;
    text-align: justify;
}

h2 {
    color: var(--accent)
}

.skill {
    margin-bottom: 15px
}

.bar {
    background: #333;
    border-radius: 20px;
    overflow: hidden;
}

.fill {
    height: 20px;
    background: var(--accent);
    width: 0;
}

.hobbies i {
    font-size: 28px;
    margin: 10px;
    transition: 0.3s;
}

.hobbies i:hover {
    transform: scale(1.3);
    cursor: pointer;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    font-size: 13px;
}

.cards a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: 0.3s;
    border: 1px solid transparent;
}

.cards a i {
    font-size: 18px;
    color: var(--accent);
    min-width: 22px;
}

.cards a:hover {
    background: #1f1f1f;
    transform: translateY(-5px) scale(1.02);
    border: 1px solid var(--accent);
    box-shadow: 0 5px 15px rgba(255, 180, 58, 0.2);
}

.cards a:active {
    transform: scale(0.97);
}

.cards a span {
    flex: 1;
}

.timeline {
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.skill-top {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 5px;
}

.percent {
    color: var(--accent);
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    background: #111;
    border: none;
    color: white;
}

form button {
    background: var(--accent);
    border: none;
    padding: 10px;
    cursor: pointer;
}

.applications i{
    color: var(--accent);
}

@media (max-width: 768px) {
    .icons {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .section {
        text-align: left;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #FFB43A;
    border-radius: 10px;
    border: 2px solid #111;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffaa00;
}