body {
    background-color: #fbfaff;
    color: #9667e0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2ebfb;
    height: 80px;
    z-index: 10;
}

.header-title {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
    color: #9667e0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 15px;
    background: transparent;
}

.header-title:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #b56de5 0%, #d298f8 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(181, 109, 229, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}