body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0f1419;
    color: #e0e0e0;
}

header {
    background-color: #1a1f2e;
    color: #00d4ff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #00d4ff;
}

header h1 {
    margin: 0;
}

.links {
    display: flex;
    gap: 20px;
    margin: 0;
}

.links a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.links a:hover {
    color: #b366ff;
    text-shadow: 0 0 10px #b366ff;
}

.intro-box {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
    margin: 20px;
    background-color: #1a1f2e;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.intro {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 0;
    text-align: left;
    flex: 1;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.project-container {
    background-color: #1a1f2e;
    padding: 15px;
    border: 2px solid #00d4ff;
    display: flex;
    flex-wrap: wrap;
    border-radius: 15px;
    margin: 20px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.project {
    background-color: #2a3141;
    padding: 10px;
    margin: 10px;
    border-radius: 15px;
    border: 1px solid #00d4ff;
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
    text-decoration: none;
    color: #e0e0e0;
}

.project:hover {
    border-color: #b366ff;
    box-shadow: 0 0 20px rgba(179, 102, 255, 0.3);
}

footer {
    background-color: #1a1f2e;
    color: #00d4ff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #00d4ff;
    margin-top: 40px;
}

.project-detail,
.reflection-container {
    background-color: #1a1f2e;
    padding: 30px;
    margin: 20px;
    border-radius: 15px;
    border: 2px solid #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.project-detail h1,
.reflection-container h1 {
    color: #00d4ff;
}

.back-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
    margin-top: 20px;
}

.back-link:hover {
    color: #b366ff;
    text-shadow: 0 0 10px #b366ff;
}