html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    text-size-adjust: 100%;
    
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    min-height: 100vh;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('https://files.catbox.moe/iy6gjq.png') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

img {
    width: 100%;
    max-width: 100%;
    display: block;
    height: auto;
}

.site {
    width: 100%;
    max-width: 400px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    gap: 15px; 
    animation: popIn 1.25s ease-out;
}

/* index */

.profile {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pfp {
    flex-shrink: 0;
}

.pfp img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.info {
    display: flex;
    flex-direction: column;
}

.text1 {
    flex: 1;
    min-width: 0;
    font-family: 'Zen Dots', sans-serif;
    font-size: 20px;
}

.text2 {
    font-size: 15px;
    margin-top: 2px;
    font-weight: 500;
}

.text3 {
    font-size: 11px;
    font-weight: 600;
}

/* nav */

.topbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back {
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
    background-color: #c1c1c1;
}

.title {
    font-family: 'Zen Dots', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: lowercase;
}

.pager {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prev, .next {
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
    background-color: #c1c1c1;
}

/* about */

.self {
    font-size: 13px;
    width: 100%;
    text-align: left;
}

.aboutmore {
    width: 100%;
    text-align: center;
    margin: 15px;
}

.aboutmore a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    background-color: #c1c1c1;
}

/* more page */

.gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: left;
}

.text {
    font-size: 13px;
    width: 100%;
    text-align: left;
    
}

/* posts page */

.highlights {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.highlight {
    text-decoration: none;
    color: inherit;
    text-align: center;
}

.highlight img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    padding: 3px;
    border: 3px solid #c1c1c1;
}

.highlight p {
    margin-top: 5px;
    font-size: 12px;
}

.post {
    width: 100%;
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

#pinned-posts {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#regular-posts {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 5px;
    filter: grayscale(100%);
}

.postinfo {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}

.caption {
    font-size: 13px;
    font-weight: 700;
}

.meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 11px;
}

.meta1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -10px;
    width: 100%;
    font-size: 11px;
}

.pinned {
    display: flex;
    align-items: center;
}

.pinned svg {
    width: 20px;
    height: 20px;
}

.pinned1 {
    display: flex;
    align-items: center;
}

.pinned1 svg {
    width: 20px;
    height: 20px;
    transform: translateY(-7px);
}

.date1 {
    font-size: 11px;
    opacity: .5;
}

.pagination {
    font-family: 'Zen Dots', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination a {
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-size: 12px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 999px;
    transition:.2s;
}

.pagination a.active {
    background: rgba(255,255,255,.35);
    font-weight: 700;
}

.pagination a.arrow {
    font-weight: 700;
}

.pagination a.disabled {
    opacity: .3;
    pointer-events: none;
}

.sort {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: fit-content;
    margin: auto;
    padding: 4px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.4),
        inset 0 -1px 1px rgba(0,0,0,.05),
        0 8px 32px rgba(0,0,0,.12);
}

.sort::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.35) 0%,
            rgba(255,255,255,.08) 40%,
            transparent 100%
        );
    pointer-events: none;
}

.sort button {
    position: relative;
    z-index: 1;
    border: none;
    background: transparent;
    color: inherit;
    font: inherit;
    padding: 6px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: .25s;
}

.sort button.active {
    background: rgba(255,255,255,.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.5),
        0 2px 8px rgba(0,0,0,.08);
    font-weight: 700;
}

/* posts style */

.post1 {
    width: 100%;
    position: relative;
}

.post1-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post1-header img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.post1-user {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.username {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.loc {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    opacity: .6;
    line-height: 1.2;
}

.loc svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.slider {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    margin-top: 10px;
    position: relative;
    border-radius: 5px;
    scrollbar-width: none;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slides {
    display: flex;
    width: 100%;
}

.slides img {
    width: 100%;
    min-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    position: relative;
    flex-shrink: 0;
    scroll-snap-align: start;
    border-radius: 5px;
    filter: grayscale(100%);
}

video {
    width: 100%;
    min-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    position: relative;
    flex-shrink: 0;
    scroll-snap-align: start;
    border-radius: 5px;
    filter: grayscale(100%);
}

.counter {
    width: fit-content;
    margin: 8px auto 0;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-family: 'Zen Dots', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #000;
    border-radius: 999px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .3);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, .4),
        inset 0 -1px 1px rgba(0, 0, 0, .05),
        0 4px 12px rgba(0, 0, 0, .08);
}

.caption1 {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
}

.date {
    margin-top: 4px;
    font-size: 11px;
    opacity: .5;
}

.thought-text {
    margin-top: -25px;
    line-height: 1.7;
    font-size: 13px;
    white-space: pre-line;
}

.thought-date {
    margin-top: -10px;
    font-size: 11px;
    opacity: .5;
}

.credit {
    font-size: 10px;
    text-align: center;
    width: 100%;
    margin-bottom: -10px;
    margin-top: -10px;
}

.socials {
    margin-top: 5px;
    text-align: center;
    font-size: 12px;
    line-height: 1.7;
    width: 100%;
}

.socials a {
    color: black;
}

.prns {
    font-size: 11px;
    opacity: 0.3;
    font-family: 'Poppins', sans-serif;
    margin-left: 5px;
    font-weight: 600;
}

mark {
    color: inherit;
    background-color: #c1c1c1;
    font-weight: 800;
}

.spoiler {
  filter: blur(5px);
  cursor: pointer;
  transition: filter 0.3s ease;
}

.spoiler:hover,
.spoiler:focus {
  filter: blur(0px);
}


.banner {
    width: 100%;
    height: 110px;
    overflow: hidden;
    position: relative;
    align-items: center;
    border-radius: 5px;
    flex-shrink: 0;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dividerpic {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.dividerpic img {
    width: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(100%);
}

.divider {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.divider span {
    font-size: 15px;
    font-weight: 600;
    color: #c1c1c1;
    text-transform: lowercase;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #c1c1c1;
    border-radius: 999px;
}

.nav {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav a {
    color: black;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    box-shadow: inset 0 -0.625em 0 0 #C1C1C1;
    
}

ul {
    list-style-type: disc;
    width: 100%;
    text-align: left;
    padding-left: 20px;
}

.music-player {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    margin-top5 -10px;
}

.controls {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.controls button {
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.controls svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

#play-btn svg {
    width: 28px;
    height: 28px;
}

.text4 {
    flex: 1;
    min-width: 0;
}

.title2 {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.artist {
    font-size: 11px;
    opacity: .6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cover {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

/* animation */

@keyframes popIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* phone */

@media (max-width: 430px){
    
    .banner {
        height: 95px;
    }

}
