:root {
    --bg-color: #0f172a;
    --text-color: #f8fafc;
    --accent-color: #38bdf8;
    --card-bg: #1e293b;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
header {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(180deg, #020617 0%, var(--bg-color) 100%);
}

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

header h1 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

header h1 a:hover {
    color: var(--accent-color);
}

.tagline {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Layout */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

main {
    flex: 1;
}

section {
    padding: 60px 0;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
}

/* Index Page Specifics */
.about-text {
    font-size: 1.1rem;
    max-width: 800px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.card p {
    font-size: 0.95rem;
    color: #cbd5e1;
}

.role-date {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 10px;
    display: block;
}

/* Work in Progress Page Specifics */
.wip-header {
    padding: 30px 20px;
}

.wip-header h1 {
    font-size: 1.8rem;
}

.wip-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.wip-icon {
    font-size: 6rem;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 0 25px rgba(56, 189, 248, 0.15);
    font-family: monospace;
}

.wip-message {
    font-size: 2rem;
    margin-bottom: 15px;
    border: none;
}

.wip-description {
    color: #cbd5e1;
    max-width: 500px;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Buttons and Links */
.btn {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    text-decoration: none;
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    margin-top: auto;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Animations */
.blink {
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0.3; }
}