:root {
    --bg-color: #171717;
    --card-bg-color: rgba(23, 23, 23, 0.9);
    --text-color: #f0f0f0;
    --link-color: #a0a0a0;
    --muted-color: #888;
    --highlight-color: #1a73e8;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: monospace, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    
    background-image: url('/assets/2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter: blur(90%) brightness(0.2) contrast(1.5); 
    
    opacity: 0.95;
    background-attachment: fixed;
}

.container {
    width: 90%;
    max-width: 600px;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.card {
    background-color: var(--card-bg-color);
    backdrop-filter: blur(5px); 
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid #282828;
    width: 100%;
}

.header-content {
    display: flex;
    align-items: stretch;
    gap: 15px;
    margin-bottom: 50px;
}

.profile-pfp {
    width: 80px;
    height: 80px;
    object-fit: cover; 
    border-radius: 5px;
    border: 1px solid #282828;
    float: left;
    margin-right: 15px; 
    margin-bottom: -60px;
}

.text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    height: 50px;
}

.name-title {
    display: flex;
    flex-direction: column;
}

.welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    font-size: 1.5em;
    cursor: pointer;
    transition: opacity 0.5s ease-out;
}

h1 {
    font-size: 1.8em;
    font-weight: 400;
    margin: 0 0 5px 0;
    margin-left: -15px;
}

h2 {
    font-size: 1.03em;
    font-weight: 400;
    margin: 0 0 20px 0;
    margin-left: -13px;
    margin-top: -6px;
}

h2 em {
    font-style: normal;
    font-weight: 700;
}

.pronouns,
.religion,
.age { 
    font-size: 0.5em;
    padding: 2px 4px;
    background-color: #333;
    color: var(--muted-color);
    border-radius: 3px;
    vertical-align: top;
    margin-left: -11px;
    font-weight: normal;
}

.age {
    background-color: #3a3a3a;
}

.bio {
    margin: 0;
    line-height: 1.6;
    align-self: flex-start;
    margin-top: -26px;
}

.bio ** {
    color: var(--link-color);
    font-weight: 400;
}

.section {
    margin-bottom: 30px;
}

.section h3 {
    text-transform: uppercase;
    font-size: 0.8em;
    color: var(--link-color);
    margin-bottom: 10px;
    border-bottom: 1px solid #282828;
    padding-bottom: 5px;
}

.entry {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
}

.entry p {
    margin: 0;
}

.entry .date {
    color: var(--muted-color);
}

.muted {
    color: var(--muted-color);
    font-size: 0.9em;
}

.footer {
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    padding-top: 20px;
    border-top: 1px solid #282828;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8em;
    z-index: 10;
}

.socials a {
    text-decoration: none;
    margin-right: 8px; 
    transition: opacity 0.2s;
}

.socials a:not(:has(img)) {
    color: var(--link-color); 
}

.socials a:not(:has(img)):hover {
    color: var(--highlight-color);
}

.social-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    filter: brightness(0.9); 
}


.socials a:hover .social-icon {
    opacity: 0.7;
    filter: brightness(1.5);
}

.location {
    margin-left: -12px;
    margin-bottom: -5px;
    margin-top: -16px;
    font-size: 0.8em;
}