* {
    scrollbar-width: thin;
}

:root {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
/*  unused - background: #171717; */
    background: #060606;
    text-align: left;
    margin: 0;
    height: 100%;
    overflow: auto;
    padding: 20px;
    padding-top: 0px;
    line-height: 1.5;
    font-family: 'Segoe UI', sans-serif;

    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

h1, h2, h3, h4, h5, h6, p, b, strong, small, i {
    color: rgb(248, 248, 255, 1);
    text-shadow: 0 0 1px #E5E4E2;
}

footer {
    position: relative;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    font-size: 0.86em;
    gap: 5px;
    text-shadow: 0 0 3px #171717;
}

h1 {
    margin-bottom: 40px;
    font-size: 5em; /* six sevenn */
/*    text-shadow: 0 0 10px #E5E4E2; */
}

p {
    font-size: 1.24em;
}

.navbar {
    height: 50px;
    position: sticky;
    top: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-right: 3px;
    padding-left: 20px;
    max-width: 900px;
    margin: 0 auto;


    background-color: rgba(23, 23, 23, 0.7);
    border: 2px solid #2a2a2a;
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.2);
    border-radius: 50px;

    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);

    font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar p {
    font-size: 1.10em;
}

.navbar-left,
.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.a.navbar-right {
    line-height: 1px;
}

.buttons {
    text-align: center;
}

.invite-button { 
    display: inline-flex;
    border: solid 1px rgba(229, 228, 226, 0.4); 
    background-color:#4e63ef; 
    border-radius: 10px; 
    padding: 10px 20px; 
    text-decoration-line: none; 
    transition: all 0.3s ease;
    margin-right: 5px;
} 

.invite-button:hover {
    transform: translateY(-5px); 
    box-shadow: 0 0px 25px rgba(78, 99, 239, 0.7); 
}

.server-button {
    display: inline-flex;
    border: solid 1px rgba(229, 228, 226, 0.2);
    background-color:rgb(73, 73, 73);
    border-radius: 10px; 
    padding: 10px 14px; 
    text-decoration-line: none; 
    transition: all 0.3s ease;
    margin-left: 5px;
}

.server-button:hover {
    transform: translateY(-5px); 
    box-shadow: 0 0px 25px rgba(229, 228, 226, 0.3); 
}

.invite-button-nav {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 50px;
    background-color:#4e63ef;
    color: #E5E4E2;
    text-decoration: none;
    transition: all 0.3s ease;
    border: solid 1px rgba(229, 228, 226, 0.4); 
}

.invite-button-nav:hover {
    box-shadow: 0 0px 25px rgba(78, 99, 239, 0.7);
}


.a.invite-button-nav {
    position: relative;
    color: #E5E4E2;
    text-decoration: none;
    line-height: 1;
    display: inline-block;
}

a.no-underline::after {
    content: none;
}

a.no-underline {
    text-shadow: 0 0px 10px rgba(229, 228, 226, 1);
    transition: all 0.3s ease;
}

a.no-underline:hover {
    text-shadow: 0 0px 30px rgb(248, 248, 255, 1);
}

a.nav-links {
    line-height: 1px;
}

.imrunningoutofclassnames { padding-top: 0px; text-align: center; }

.logo-main {
    width: 347px;
    height: auto;
}

.logo-nav {
    margin-top: 5px;
    height: 30px;
}

#nav-toggle {
    display: none;
}

.burger {
    font-size: 28px;
    padding: 10px;
    cursor: pointer;
    display: none;
}

.navbar-links {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {

    .burger {
        display: block;
        color: #E5E4E2;
    }

    .navbar-links {
        position: absolute;
        top: 60px;
        right: 10px;
        background: #111;
        padding: 15px;
        border-radius: 10px;
        display: none;
        flex-direction: column;
        gap: 15px;
        z-index: 9999;
    }

    #nav-toggle:checked ~ .navbar-links {
        display: flex;
    }

    body {
        padding: 10px;
    }

    .navbar {
        margin: 0 0;
        max-width: 100%;
        width: 100%;
        border-radius: 50px;
        padding-left: 0px;
        padding-right: 0px;
        gap: 10px;
        position: relative;
    }

    .navbar-right {
        display: none;
    }

    .logo-nav {
        height: 24px;
        margin-left: 20px;
    }

    .invite-button-nav {
        padding: 10px 10px;
        font-size: 1em;
    }

    .container {
        max-width: 100%;
        padding-inline: 15px;
    }

    h1 {
        font-size: 2.4em;
        margin-bottom: 15px;
    }

    p {
        font-size: 1.05em;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .invite-button,
    .server-button {
        width: 80%;
        justify-content: center;
        margin-right: 0px;
        margin-left: 0px;
    }

    ul {
        white-space: normal;
        overflow-wrap: break-word;
    }

    li {
        overflow-wrap: break-word;
    }

    footer {
        font-size: 0.75em;
        margin-top: 40px;
    }

    .logo-main {
        width: 180px;
    }
}


/* --- some of these are unsused since i copy pasted the css from my main website and edited it lmao */

li {
    text-align: left;
    color: #E5E4E2;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

a {
    position: relative;
    display: inline-block;
    color: #E5E4E2;
    text-decoration: none;
}

a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.2em;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

a:hover::after {
    transform: scaleX(1);
}

ul {
    list-style: none;
    padding: 0;
    white-space: normal;
}

@keyframes fadeInAnimation {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
}

section {
    margin-bottom: 50px;
}

header {
    padding-top: 0px;
    margin-top: 0px;
}

/* --- custom styles probably idk --- */

.container {
    max-width: 800px;
    min-height: 73vh;
    margin: 0 auto;
    padding: 20px;
    padding-inline: 50px;

    /* --- unused ---
    background: rgba(23, 23, 23, 0.4);
    border-radius: 12px;
    border: 2px solid #444;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    */

    /* blur i guess? doesn't work in chromium but does in firefox, fuck you google */
    /*
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    */
}

/* --- unused replacement for backdrop-filter stolen from my old website's CSS ---
.container::before {
    content: "";
    position: absolute;
    inset: -8px;
    z-index: -1;
    border-radius: inherit;
    background: url("assets/stars3.jpg") center/cover;
    filter: blur(12px);
    opacity: 0.4;
}
*/

.test li:hover {
    transform: translateX(15px);
    display: inline;
}

.donate li {
    font-family: "Space Mono", monospace;
    font-size: 1.10em;
}

.donate li:hover {
    transform: translateX(15px);
}

li {
    text-align: left;
    color: #E5E4E2;
    transition: transform 0.3s ease;
}

.projects li {
    display: block;
    font-size: 1.10em;
}

.projects li:hover {
    transform: translateX(15px);
}

.socials li {
    display: inline-block;
    margin-right: 10px;
    margin-right: 10px;
    font-size: 1.10em;
}

.socials li:hover {
    transform: translateY(-7px) scale(1.2);
}

.socials {
    display: inline-block;
    margin-inline: 0px;
    font-size: 1em;
    transition: transform 0.3s ease;
}

.socials:hover {
    transform: translateY(-5px);
}

.tilt {
    transition: transform 0.3s ease;
    will-change: transform;
    transform-box: fill-box;
}

.tilt:hover {
    transform: rotate(5deg);
}

.align-left.tilt:hover {
  transform: translateY(-50%) rotate(5deg);
}

ul.socials {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

ul.socials li {
    display: inline;
    margin-right: 10px;
}

.emoji {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
}

.pride {
    height: 0.8em;
    vertical-align: -0.05em;
    border-radius: 10%;
}

.align-left {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    height: 200px;
}

.align-bottom-left {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    height: 200px;
}

.credits {
    color: rgb(106, 122, 173);
}

/* copy pasted from https://github.com/biancarosa/lastfm-last-played?tab=readme-ov-file#wanna-use-it  */
.header__inner p {
    margin: 0;
}