body {
    font-family: 'Kanit', sans-serif;
    background-color: #1a1a2e;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 1)), url('https://i.ytimg.com/vi/background-example/maxresdefault.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-bottom: 4px solid #e94560;
}

.profile-container {
    max-width: 800px;
    margin: 0 auto;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #e94560;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
    object-fit: cover;
}

h1 {
    font-size: 3rem;
    margin: 20px 0 10px;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #f0f0f0;
}

main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

section {
    background-color: #24243e;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 2rem;
    color: #e94560;
    border-bottom: 2px solid #4a4a6a;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    font-size: 1rem;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid #4a4a6a;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    border-color: #e94560;
}

.links ul {
    list-style: none;
    padding: 0;
}

.links li {
    margin-bottom: 10px;
}

.links a {
    text-decoration: none;
    color: #e94560;
    font-size: 1.1rem;
    background-color: #1a1a2e;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
}

.links a:hover {
    background-color: #e94560;
    color: #fff;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background-color: #161625;
    color: #a0a0a0;
    font-weight: 300;
}