/* General styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-image: url('assets/background3.jpg'); /* Set the new background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
    background-repeat: inherit;
    filter: blur(5px); /* Apply blur effect */
    z-index: -1; /* Place it behind the content */
}

.main-container {
    text-align: center;
    width: 90%;
    max-width: 600px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.container {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    padding: 15px;
}

/* Profile section */
.profile-section {
    margin-bottom: 30px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 15px 0;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-bottom: 15px;
}

.name {
    display: inline-block;
    padding: 10px 20px;
    background-color: #F5B041;
    color: white;
    font-weight: bold;
    border-radius: 20px;
}

.profile-name {
    font-size: 1.8em;
    margin: 10px 0;
    font-weight: bold;
}

.intro-text {
    font-weight: bold;
    margin: 10px 0;
}

.profile-description {
    font-size: 1em;
    margin: 0;
    color: #e0e0e0;
}

.section-title {
    text-align: center;
    margin-top: 32px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
}

.section-title-novels {
    text-align: center;
    margin-top: 32px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
}

/* Links section */
.links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 0;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-button {
    display: block;
    width: 90%; /* Ensures all links have the same width */
    max-width: 350px; /* Optional: Set a maximum width */
    padding: 15px;
    margin: 10px 0;
    text-align: center;
    background-color: #F5B041;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: center; /* Center-aligns the text and icon horizontally */
    padding: 15px 20px;
    background: #fff;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card-2 {
    display: flex;
    align-items: center;
    justify-content: center; /* Center-aligns the text and icon horizontally */
    padding: 15px 20px;
    background: #ffc684;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-button:hover {
    background-color: #E67E22;
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.link-card-2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.link-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px; /* Keeps spacing between the icon and text */
}

/* Footer */
.bottom {
    text-align: center;
    margin-top: 32px;
    font-weight: bold;
    color: #E74C3C;
}

.footer {
    margin-top: 30px;
    font-size: 0.9em;
    color: #e0e0e0;
}

.bottom svg {
    stroke: #E74C3C;
    fill: #E74C3C;
    margin: 0 5px;
}

.artist-credit {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    z-index: 10; /* Ensure it appears above other elements */
}

.artist-credit a {
    color: #F5B041; /* Accent color for the link */
    text-decoration: none;
}

.artist-credit a:hover {
    text-decoration: underline;
}