:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --accent-red: #d32f2f;
    --accent-red-hover: #ff4c4c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--bg-card);
    padding: 60px 0;
    border-bottom: 2px solid var(--accent-red);
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.links a {
    color: var(--text-main);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid var(--accent-red);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.links a:hover {
    background-color: var(--accent-red);
    color: #fff;
}

.email-display {
    background-color: #222;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 4px;
    font-family: monospace;
    border: 1px dashed var(--text-muted);
}

/* Main Content */
main {
    padding: 40px 20px;
}

.card {
    background-color: var(--bg-card);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-red);
}

.card h2 {
    color: var(--accent-red);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.item {
    margin-bottom: 20px;
}

.item h3 {
    font-size: 1.3rem;
}

.item p {
    color: var(--text-muted);
}

ul {
    list-style-position: inside;
    color: var(--text-muted);
}

ul li {
    margin-bottom: 10px;
}

strong {
    color: var(--text-main);
}

/* Skills Section Redesign */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.skill-category {
    flex: 1;
    min-width: 250px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 6px;
}

.skill-category h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-main);
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.styled-list {
    list-style-type: none;
}

.styled-list li {
    padding: 8px 0;
    border-bottom: 1px solid #222;
    position: relative;
    padding-left: 20px;
}

.styled-list li:last-child {
    border-bottom: none;
}

.styled-list li::before {
    content: "▹";
    color: var(--accent-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid #222;
}
