:root {
    --woke-primary: #ff4d8d;
    --woke-secondary: #7b5cff;
    --woke-accent: #00d9ff;
    --woke-bg: #fafafa;
    --woke-text: #2d3436;
    --woke-muted: #636e72;
    --woke-gradient: linear-gradient(135deg, #ff4d8d, #7b5cff);
    --woke-shadow: 0 4px 15px rgba(123, 92, 255, 0.2);
    --woke-border: rgba(123, 92, 255, 0.2);
}

body {
    background-color: var(--woke-bg);
    color: var(--woke-text);
    font-family: 'Poppins', sans-serif;
}

.terminal {
    background: white;
    border: none;
    border-radius: 20px;
    box-shadow: var(--woke-shadow);
}

.terminal-header {
    background: white;
    border-bottom: 2px solid var(--woke-border);
    border-radius: 20px 20px 0 0;
}

.terminal-title {
    color: var(--woke-primary);
    font-family: 'Futura', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.back-button {
    background: var(--woke-gradient);
    border: none;
    color: white;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--woke-shadow);
}

.matrix-button {
    background: var(--woke-gradient);
    border: none;
    color: white;
    border-radius: 30px;
    font-family: 'Futura', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(123, 92, 255, 0.1);
}

.matrix-button:hover {
    box-shadow: 0 5px 20px rgba(123, 92, 255, 0.4);
    background-image: linear-gradient(135deg, #ff6ba1, #8d73ff);
}

.skill-item, .project-item {
    color: var(--woke-text);
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
}

.skill-item:before, .project-item:before {
    content: '✨';
    color: var(--woke-secondary);
}

.contact-button {
    background: var(--woke-gradient);
    border: none;
    color: white;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--woke-shadow);
}

.footer {
    background: white;
    border-top: 2px solid var(--woke-border);
}

.theme-options {
    background: white;
    border-radius: 15px;
    box-shadow: var(--woke-shadow);
}

.theme-option span {
    color: var(--woke-muted);
    font-family: 'Poppins', sans-serif;
    border-radius: 20px;
}

.theme-option input:checked + span {
    background: var(--woke-gradient);
    color: white;
    font-weight: 500;
}

.social-link {
    color: var(--woke-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    position: relative;
}

.social-link:hover {
    color: var(--woke-primary);
}

.social-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--woke-gradient);
    transition: width 0.3s ease;
}

.social-link:hover::after {
    width: 100%;
}

/* Additional Typography */
.terminal-content h2 {
    color: var(--woke-primary);
    font-family: 'Futura', sans-serif;
    font-weight: 600;
    margin-bottom: 30px;
}

.terminal-content h3 {
    background: var(--woke-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
}

.terminal-content p {
    line-height: 1.8;
    color: var(--woke-text);
}

/* Card containers */
.skill-list, .project-list {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: var(--woke-shadow);
    transition: all 0.3s ease;
}

.skill-list:hover, .project-list:hover {
    box-shadow: 0 8px 25px rgba(123, 92, 255, 0.25);
    transform: translateY(-2px);
}

/* Items within cards */
.skill-item, .project-item {
    color: var(--woke-text);
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    padding: 12px 25px 12px 35px;
    margin: 8px 0;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(123, 92, 255, 0.03);
}

.skill-item:hover, .project-item:hover {
    background: rgba(123, 92, 255, 0.08);
    padding-left: 40px;
}

.skill-item:before, .project-item:before {
    content: '✨';
    color: var(--woke-secondary);
    position: absolute;
    left: 12px;
}

/* Contact section */
.contact-bar {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    box-shadow: var(--woke-shadow);
} 