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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: #bb86fc;
    margin-bottom: 5px;
    text-shadow: 0 0 10px #bb86fc66;
}

h2 {
    color: #03dac6;
    margin-bottom: 10px;
}

#about {
    text-align: center;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 15px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
}

#projects {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-areas:
        "proj1 proj2"
        "proj3 proj4";
    gap: 20px;
    justify-content: center;
}

.project {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 15px;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);

    border: 1px solid rgba(255, 255, 255, 0.2);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    margin-bottom: 10px;
}

.project img {
    border-radius: 10px;
    margin-bottom: 10px;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(187, 134, 252, 0.7);
    border-color: rgba(187, 134, 252, 0.4);
}

#skills {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2em;
    color: #03dac6;
}

#contact {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2em;
    color: #bb86fc;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #aaaaaa;
}

a {
    color: #bb86fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #03dac6;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-areas:
            "proj1"
            "proj2"
            "proj3"
            "proj4";
    }
}