body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: url('role.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}
.role-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.role-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    margin-top: 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.roles {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.role-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    text-decoration: none;
}
.role-icon {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
}
.role-btn:hover .role-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.18);
}
.role-label {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    background: rgba(25, 118, 210, 0.8);
    border: 3px solid #fff;
    border-radius: 30px;
    padding: 0.3em 1.5em;
    margin-top: 0.2em;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
}
.guest-link {
    position: absolute;
    right: 2.5rem;
    bottom: 2.5rem;
    color: #0a1833;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
    opacity: 0.85;
}
.guest-link:hover {
    text-decoration: underline;
    opacity: 1;
}
@media (max-width: 1100px) {
    .roles {
        flex-direction: column;
        gap: 2rem;
    }
    .role-title {
        font-size: 2.2rem;
    }
}
