/* 1. RESET AND BACKGROUND */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden; 
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: radial-gradient(circle, #fce0a2 0%, #b388eb 70%, #9b63cd 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.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%); } 
}

/* 3. SOCIAL LINKS CONTAINER */
.socials-wrapper {
    text-align: center;
    z-index: 30;
}

h1 {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 3.5rem;
    color: #fce0a2;
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 2.2rem;
    color: #9b63cd;
    background: #fce0a2;
    text-decoration: none;
    margin: 15px 0;
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.star-icon {
    width: 30px;
    height: auto;
    margin-right: 15px;
    transition: transform 0.4s ease;
}

.social-link:hover {
    transform: scale(1.08) rotate(-1.5deg);
    background: white;
    color: #b388eb;
    box-shadow: 0 10px 25px rgba(155, 99, 205, 0.4);
}

.social-link:hover .star-icon {
    transform: rotate(45deg) scale(1.2);
}

/* 4. BACK BUTTON */
.back-btn {
    position: absolute;
    top: 65px;
    left: 30px;
    color: #fce0a2;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s ease;
}

.back-btn:hover {
    color: white;
}