* {
    color: #f5f5f5;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0a0a0a;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px 80px;
}

.pfp {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

h1 {
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 10px;
    color: #f5f5f5;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.bio {
    color: #b0b0b0;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    max-width: 500px;
    line-height: 1.5;
    font-weight: 300;
}

.socials {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.socials a {
    opacity: 0.6;
    transition: opacity 0.2s;
}

.socials a:hover {
    opacity: 1;
}

.socials svg {
    width: 20px;
    height: 20px;
    fill: #f5f5f5;
}

/* Update the socials section */
.socials img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

/* Update the card-cta section */
.card-cta img {
    margin-left: 8px;
    width: 14px;
    height: 14px;
}

.about-btn {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f5f5f5;
    text-decoration: none;
    border: 1px solid #f5f5f5;
    padding: 10px 24px;
    transition: background 0.2s, color 0.2s;
}

.about-btn:hover {
    background: #f5f5f5;
    color: #0a0a0a;
}

/* Project Grid */
.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
    padding: 0 20px;
}

.project-card {
    background: #111111;
    border: 1px solid #222;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.card-media {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #050505;
    position: relative;
}

.card-media img,
.card-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Temporary gradient placeholders - replace with actual media */
.gradient-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.gradient-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.gradient-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.gradient-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
    color: #f5f5f5;
}

.card-description {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
    font-weight: 300;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f5f5f5;
    text-decoration: none;
    border: 1px solid #f5f5f5;
    padding: 10px 16px;
    transition: background 0.2s, color 0.2s;
    align-self: flex-start;
}

.card-cta:hover {
    background: #f5f5f5;
    color: #0a0a0a;
}

.card-cta svg {
    margin-left: 8px;
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.card-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Show poster while loading */
.card-media video:not([src]) {
    background: #050505;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 40px 20px 60px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .bio {
        font-size: 14px;
    }
    
    .projects {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .pfp {
        width: 100px;
        height: 100px;
    }
    
    body {
        padding: 10px;
    }
}

.card-cta img {
    margin-left: 8px;
    width: 14px;
    height: 14px;
    filter: invert(1);  /* This will make black arrows white */
}

.card-cta:hover img {
    filter: invert(0);  /* This will make them black on hover */
}