:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --accent-color: #666666;
    --secondary-bg: #f5f5f5;
    --border-color: #e0e0e0;
    --terminal-bg: #1a1a1a;
    --terminal-text: #f5f5f5;
    --terminal-accent: #999999;
}

[data-theme="dark"] {
    --bg-color: #121212;
    --text-color: #f5f5f5;
    --accent-color: #999999;
    --secondary-bg: #1a1a1a;
    --border-color: #333333;
    --terminal-bg: #000000;
    --terminal-text: #f5f5f5;
    --terminal-accent: #666666;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    text-transform: lowercase;
    min-height: 100vh;
    box-sizing: border-box;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

#themeToggle {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.2em;
    padding: 10px;
    transition: transform 0.3s ease;
}

#themeToggle:hover {
    transform: rotate(30deg);
}

header {
    text-align: center;
    padding: 5px 0;
}

header h1, .tagline {
    opacity: 0;
}

main {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 800px;
}

footer {
    width: 100%;
    max-width: 800px;
    padding: 10px 0;
    margin-top: auto;
}

.tagline {
    font-size: 1.1em;
    color: var(--accent-color);
    margin-top: 0px;
}

.terminal {
    background: linear-gradient(145deg, var(--terminal-bg), #000000);
    border-radius: 8px;
    padding: 15px;
    text-align: left;
    font-family: 'Courier New', monospace;
    color: var(--terminal-text);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
}

.terminal-header {
    color: var(--terminal-accent);
    margin-bottom: 10px;
}

.terminal-command {
    color: var(--terminal-text);
}

.terminal-output {
    min-height: 24px;
}

.now-playing {
    margin: 30px 0;
}

.spotify-widget {
    background-color: var(--secondary-bg);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}

.spotify-placeholder {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
}

.projects {
    background: linear-gradient(145deg, var(--secondary-bg), var(--bg-color));
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    opacity: 0;
}

.projects:hover {
    transform: translateY(-2px);
}

.project-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.project-list li {
    opacity: 0;
}

.project-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.project-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.project-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.vibe-check {
    font-style: italic;
    color: var(--accent-color);
    background: linear-gradient(145deg, var(--secondary-bg), var(--bg-color));
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.2em;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    color: var(--accent-color);
}

.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
    animation: glitch 0.1s infinite;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    background-color: rgba(51, 51, 51, 0.1);
    border-radius: 50%;
} 