/* Profile Picture Styling */
.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--purple);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
/* Dracula Theme Palette */
:root {
    --bg: #282a36;
    --current-line: #44475a;
    --fg: #f8f8f2;
    --comment: #6272a4;
    --cyan: #8be9fd;
    --green: #50fa7b;
    --orange: #ffb86c;
    --pink: #ff79c6;
    --purple: #bd93f9;
    --red: #ff5555;
    --yellow: #f1fa8c;
}

body {
    font-family: 'Fira Code', 'Courier New', monospace; /* Programmer vibes */
    line-height: 1.6;
    margin: 0;
    background-color: var(--bg);
    color: var(--fg);
}

header {
    background: var(--current-line);
    padding: 3rem 1rem;
    text-align: center;
    border-bottom: 2px solid var(--purple);
}

header h1 { color: var(--purple); margin: 0; }
.subtitle { color: var(--cyan); font-weight: bold; }

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

.card {
    background: var(--current-line);
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--pink);
}

/* TD Project Layout */
.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--comment);
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.project-header h3 { color: var(--green); margin: 0; }

.project-content {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.media-box {
    width: 280px;
    height: 160px;
    background: var(--bg);
    border: 1px dashed var(--comment);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--comment);
    border-radius: 8px;
}

.description { flex: 1; min-width: 300px; }

/* Tags & Buttons */
.tag, .dcc-tag {
    background: var(--bg);
    color: var(--yellow);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-right: 5px;
    border: 1px solid var(--yellow);
}

.btn-github {
    display: inline-block;
    margin-top: 15px;
    color: var(--cyan);
    text-decoration: none;
    border: 1px solid var(--cyan);
    padding: 8px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-github:hover {
    background: var(--cyan);
    color: var(--bg);
}

footer {
    text-align: center;
    color: var(--comment);
    padding: 20px;
}