@font-face {
    font-family: 'CaskaydaMono';
    src: url('fonts/ABC Arizona/ABC Arizona Flare Variable/ABCArizonaFlareVariable-Trial.woff2') format('woff2');
    font-weight: 20; /* Light font weight */
    font-style: SemiLight;
}
/* General Styles */
    body {
    margin: 0;
    font-family: 'CaskaydaMono', sans-serif;
    font-weight: 30; /* Ensure light font weight is applied */
    line-height: 1.5; /* Adjust line height for better spacing */
    background: url('/core/media/back5.webp') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    color: #e0e0e0;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
}
/* Button Styles */
        #back-button, #play-audio {
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
        border: none;
        border-radius: 50%;
        background-color: #333;
        color: #fff;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    #back-button img {
        width: 20px;
        filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(1);
    }
/* Glassmorphic Card */
        .card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 35px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 20px;
        width: 300px;
        text-align: center;
        position: absolute;
        left: 10%;
        top: 50%;
        transform: translateY(-50%);
    }
/* Profile Picture */
    .profile-pic {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border: 4px solid rgba(255, 255, 255, 0.3);
        margin: 0 auto;
    }
/* Title and Subtitle */
    h1 {
        font-size: 1.5em;
        color: #ffffff;
        margin: 15px 0;
    }
    h2 {
        font-size: 1em;
        color: #d0d0d0;
        margin-bottom: 20px;
    }
    h3 {
        font-size: 1em;
        color: #d0d0d0;
        margin-bottom: 20px;
    }
    h4 {
        color: #d0d0d0;
        margin-top: 20px;
    }
/* Links */
    .links a {
        display: block;
        background: rgba(255, 255, 255, 0.1);
        color: #d1d1d1;
        text-decoration: none;
        font-weight: bold;
        margin: 10px 0;
        padding: 10px 20px;
        border-radius: 35px;
        transition: all 0.1s ease-in-out;
        border: 1px solid rgba(44, 44, 44, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    .links a:hover {
        background: rgb(53, 53, 53);
        color: #ffffff;
        transform: scale(1.05);
    }
    .button-container {
        position: relative;
        display: inline-block;
    }
    #github-button {
        transition: width 0.3s;
    }
    #option1, #option2 {
        position: absolute;
        top: 0;
        left: 100%;
        margin-left: 10px;
        opacity: 0;
        transition: opacity 0.3s;
    }
    .hidden {
        display: none;
    }
    .hover-text-github span::before {
        content: "GitHub";
    }   
    .hover-text-github:hover span::before {
        content: "NEW: SimpleRPC";
        white-space: pre;   
    }
    .hover-text-blog span::before {
        content: "Blog";
    }
    .hover-text-blog:hover span::before {
        content: "Latest Post: 1 month later...";
    }