* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
    padding: 40px;
    line-height: 1.6;
}

.cv-wrapper {
    max-width: 1100px;
    margin: auto;
    position: relative;
}

header {
    margin-bottom: 40px;
    position: relative;
}

.name-title {
    font-size: 72px;
    font-weight: 900;
    opacity: 0.15;
    line-height: 1;
}

header h2 {
    font-size: 22px;
    margin-top: 10px;
    font-weight: 500;
}

.contact {
    margin-top: 15px;
    font-size: 16px;
    opacity: 0.85;
}

.contact a {
    color: #41ff6a;
    text-decoration: none;
}

.section {
    margin-top: 40px;
}

.section h3 {
    color: #41ff6a;
    font-size: 22px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
    border-radius: 10px;
    backdrop-filter: blur(3px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

ul {
    margin-left: 20px;
    list-style-type: disc;
}

li {
    margin-bottom: 6px;
    font-size: 15px;
}

.tech {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 42px;
    font-weight: bold;
    border-radius: 6px;
    margin: 4px;
    background: #1a1a1a;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    text-align: center;
}

.two-col {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.two-col .card {
    flex: 1 1 calc(50% - 25px);
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .two-col .card {
        flex: 1 1 100%;
    }
}

a {
    color: #41ff6a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-bottom: 15px;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

p {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 15px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
    font-size: 15px;
}

li ul {
    margin-top: 5px;
    margin-left: 20px;
    list-style-type: square;
}

li ul li {
    list-style-type: circle;
    margin-bottom: 6px;
    font-size: 14px;
}

.highlight {
    background-color: rgba(65, 255, 106, 0.2);
    padding: 2px 4px;
    border-radius: 4px;
}

footer {
    text-align: center;
    margin-top: 60px;
    font-size: 14px;
    color: #888;
}

footer a {
    color: #41ff6a;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: #41ff6a;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #32cc52;
}