body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: radial-gradient(circle, #fce0a2 0%, #b388eb 70%, #9b63cd 100%);
    color: #fce0a2;
    overflow-x: hidden;
}

/* BANNER */
.banner-container {
    width: 100%;
    background-color: #fce0a2; 
    padding: 12px 0;
    position: fixed;
    top: 0;
    overflow: hidden;
    white-space: nowrap;
    z-index: 100;
}

.banner-text {
    display: inline-block;
    font-size: 1.2rem;
    color: #9b63cd;
    animation: slideLeft 15s linear infinite;
}

.banner-text span {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 1.8rem;
    margin: 0 10px;
}

@keyframes slideLeft {
    from { transform: translateX(0%); }
    to { transform: translateX(-50%); } 
}

/* CONTENT LAYOUT */
.content-wrapper {
    max-width: 800px;
    margin: 150px auto 50px auto;
    padding: 0 20px;
    text-align: center;
}

h1 {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.bio-text {
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 300;
    background: rgba(155, 99, 205, 0.2);
    padding: 40px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(252, 224, 162, 0.3);
}

.back-btn {
    position: fixed;
    top: 60px;
    left: 30px;
    color: #fce0a2;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
    z-index: 110;
}

.back-btn:hover {
    color: white;
    transform: translateX(-5px);
}

.small-star {
    width: 40px;
    margin-top: 20px;
    opacity: 0.8;
}