/* Basic Reset for Clean Look */
body, h1, p, a {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    color: #fff; /* Default text color is white */
}

/* Background and Page Style */
body {
    /* 1. REPLACE 'your-background-image.jpg' with your actual image file name */
    background: url('BG1.jpg') no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Start content near the top */
    padding: 40px 20px; 
}

/* Container for Content (This is the "rest of the page" that should be black/dark) */
.content-container {
    max-width: 400px; 
    width: 100%;
    text-align: center;
    padding: 25px 15px;
    /* Semi-transparent black overlay to make text readable over the background image */
    background-color: rgba(0, 0, 0, 0.85); 
    border-radius: 15px; 
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7); /* Deep shadow */
    backdrop-filter: blur(5px); /* Optional: Frosted glass effect */
    -webkit-backdrop-filter: blur(5px);
}

/* Profile Image Style */
.profile-img {
    width: 110px;
    height: 110px;
    border-radius: 50%; 
    border: 3px solid #FF5090; /* Border color */
    object-fit: cover;
    margin-bottom: 10px;
}

/* Text Styles */
h1 {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 2px;
}

.tagline {
    font-size: 1em;
    margin-bottom: 25px;
    color: #FFB3D8; /* Lighter color to stand out */
    font-weight: 300;
}

/* Button Layout and Style */
.links-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-button {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.2s, transform 0.1s;
    /* Subtle button style over the black background */
    background-color: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
}

/* Hover Effect */
.link-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Special Style for the Main Link */
.main-link {
    background-color: #FF5090; 
    border-color: #FF5090;
    font-weight: 700;
    margin-bottom: 15px; 
    box-shadow: 0 4px 10px rgba(255, 80, 144, 0.4);
}

.main-link:hover {
    background-color: #ff3377;
    border-color: #ff3377;
    transform: translateY(-1px);
}

/* Footer Note */
.footer-note {
    font