@import url('https://fonts.googleapis.com/css2?family=Gaegu:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:wght@400;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #F6EBFA;
    font-family: 'Mona Sans', sans-serif;
}

.furiosa-wrapper {
    padding: 1.5rem;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    color: #474859;
    width: 100%;
}

.container-links {
    background-color: #fffdf9;
    width: 100%; 
    max-width: 40.5rem; 
    padding: 2.5rem 1.5rem; 
    border-radius: 2.5rem; 
    box-shadow: 0.091rem 0.085rem 0.625rem 0rem rgba(200, 177, 224, 0.4);
    text-align: center;
    box-sizing: border-box;
}

.profile-img {
    width: calc(100% + 3rem);
    max-width: none;
    margin: -2.5rem -1.5rem 1rem -1.5rem;
    height: auto;
    border-radius: 2.5rem 2.5rem 0 0;
    display: block;
    object-fit: cover;
}

@media (min-width: 768px) {
    .furiosa-wrapper {
        padding: 4rem; 
    }
    .container-links {
        padding: 3.75rem 3.125rem; 
    }
    .profile-img {
        width: calc(100% + 6.25rem);
        margin: -3.75rem -3.125rem 1rem -3.125rem;
    }
}

h1 {
    font-family: "Gaegu", sans-serif;
    font-size: 1.75rem;
    margin-bottom: 0.313rem;
    font-weight: normal;
}

.subtitle {
    font-size: 0.9rem;
    max-width: 28rem;
    margin: 0 auto 0.5rem auto; 
}

.links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.938rem; 
}

.link-button {
    width: 100%; 
    max-width: 35rem; 
    display: block;
    padding: 0.938rem; 
    text-decoration: none;
    border-radius: 2rem; 
    font-weight: bold;
    color: #474859;
    transition: transform 0.2s;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.link-button:hover {
    transform: scale(1.03);
}

.btn-etsyshop { 
    background-color: #E1E2FC; 
    color: #8989CC; 
}

.btn-etsyshop:hover { 
    color: #8989CC; 
}

.social-icons {
    margin-top: 1.875rem; 
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.social-icons a {
    color: #E8B3D3;
    font-size: 1.5rem; 
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
}

.social-icons a:hover {
    color: #8989cc;
    transform: rotate(14.25deg);
}

.themes-carousel {
    display: flex;
    overflow-x: auto;
    gap: 0.8rem;
    width: 100%;
    padding: 0.5rem 0 1rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #E8B3D3 transparent;
}

.themes-carousel::-webkit-scrollbar {
    height: 8px;
}
.themes-carousel::-webkit-scrollbar-track {
    background: transparent;
}
.themes-carousel::-webkit-scrollbar-thumb {
    background-color: #E8B3D3;
    border-radius: 10px;
}

.themes-carousel .theme-link {
    scroll-snap-align: center;
    flex: 0 0 auto;
    flex-shrink: 0;
    display: block;
    transition: transform 0.2s;
}
.themes-carousel .theme-link:hover {
    transform: scale(1.03);
}
.themes-carousel img {
    height: 260px; 
    width: auto;
    max-width: none;
    border-radius: 1rem;
    display: block;
}

.themes-carousel .view-more {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    font-weight: bold;
    color: #E8B3D3;
    text-decoration: none;
    flex: 0 0 auto;
    scroll-snap-align: center;
    transition: transform 0.2s;
}

.themes-carousel .view-more:hover {
    transform: scale(1.05);
}
