/* =========================================
   YUME.NET
   Main stylesheet
   ========================================= */


/* ---------- RESET ---------- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {

    min-height: 100vh;

    font-family: "Nunito", sans-serif;

    color: #34313b;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255,255,255,.95),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(232,220,250,.75),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #eeeaf2,
            #faf8f8,
            #e6e1eb
        );

    background-attachment: fixed;

    overflow-x: hidden;
}


/* ---------- AMBIENT LIGHT ---------- */

.ambient-glow {

    position: fixed;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(255,255,255,.35);

    filter: blur(90px);

    top: -200px;
    right: -150px;

    pointer-events: none;

    z-index: -1;
}


/* ---------- FLOATING STARS ---------- */

.floating-star {

    position: fixed;

    font-size: 22px;

    opacity: .45;

    pointer-events: none;

    animation: float 7s ease-in-out infinite;

    z-index: 0;
}

.star1 {
    top: 12%;
    left: 5%;
}

.star2 {
    top: 70%;
    left: 7%;
    animation-delay: 2s;
}

.star3 {
    top: 22%;
    right: 6%;
    animation-delay: 1s;
}

.star4 {
    bottom: 10%;
    right: 9%;
    animation-delay: 3s;
}

@keyframes float {

    0%,100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(8deg);
    }

}


/* ---------- SITE ---------- */

.site {

    width: min(1200px, 94%);

    margin: 40px auto;

    position: relative;

    z-index: 2;
}


/* ---------- HEADER ---------- */

.header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 35px 35px 25px;

    background: rgba(255,255,255,.48);

    border: 1px solid rgba(255,255,255,.9);

    border-radius: 25px 25px 0 0;

    backdrop-filter: blur(18px);

    box-shadow:
        0 15px 50px rgba(70,55,80,.08);
}

.tiny-japanese {

    font-size: 11px;

    letter-spacing: 4px;

    opacity: .55;

    margin-bottom: 4px;
}

.logo-area h1 {

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(45px, 8vw, 82px);

    font-weight: 500;

    letter-spacing: -3px;

    line-height: .9;

}

.logo-area h1 span {

    font-weight: 400;

    opacity: .5;

}

.tagline {

    margin-top: 12px;

    font-size: 13px;

    letter-spacing: 2px;

    opacity: .65;
}


/* ---------- STATUS ---------- */

.status {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 2px;

    opacity: .7;
}

.status-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #8ccfa9;

    box-shadow: 0 0 12px rgba(140,207,169,.8);

}


/* ---------- NAV ---------- */

.navigation {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 5px;

    padding: 12px;

    background: rgba(255,255,255,.58);

    border-top: 1px solid rgba(255,255,255,.8);

    border-bottom: 1px solid rgba(255,255,255,.8);

    backdrop-filter: blur(15px);
}

.navigation a {

    color: inherit;

    text-decoration: none;

    padding: 9px 17px;

    border-radius: 30px;

    font-size: 12px;

    letter-spacing: 1px;

    transition: .25s ease;
}

.navigation a span {

    opacity: .55;

    margin-right: 4px;
}

.navigation a:hover,
.navigation a.active {

    background: rgba(255,255,255,.9);

    transform: translateY(-2px);

    box-shadow:
        0 5px 15px rgba(80,60,90,.08);
}


/* ---------- GRID ---------- */

.content-grid {

    display: grid;

    grid-template-columns:
        220px
        minmax(0, 1fr)
        220px;

    gap: 15px;

    padding: 15px;

    background: rgba(255,255,255,.27);

    backdrop-filter: blur(12px);
}


/* ---------- WINDOWS ---------- */

.window {

    background: rgba(255,255,255,.58);

    border: 1px solid rgba(255,255,255,.85);

    border-radius: 14px;

    overflow: hidden;

    margin-bottom: 15px;

    box-shadow:
        0 8px 30px rgba(60,50,70,.055);

    backdrop-filter: blur(12px);

    transition: .25s ease;
}

.window:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 35px rgba(60,50,70,.09);
}


/* ---------- WINDOW TITLE ---------- */

.window-title {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 8px 12px;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.75),
            rgba(242,236,246,.5)
        );

    border-bottom: 1px solid rgba(130,110,140,.12);

    font-size: 10px;

    letter-spacing: 1.5px;

    font-weight: 600;
}

.window-buttons {

    display: flex;

    gap: 5px;

    opacity: .4;
}

.window-buttons span {

    width: 13px;
    height: 13px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(70,60,80,.35);

    font-size: 8px;
}


/* ---------- WINDOW CONTENT ---------- */

.window-content {

    padding: 17px;

    font-size: 13px;

    line-height: 1.7;
}


/* ---------- PROFILE ---------- */

.profile {

    text-align: center;
}

.avatar {

    width: 105px;
    height: 105px;

    margin: 3px auto 13px;

    border-radius: 50%;

    padding: 5px;

    background:
        linear-gradient(
            135deg,
            #fff,
            #e8dfed
        );

    box-shadow:
        0 5px 20px rgba(60,40,80,.12);
}

.avatar-placeholder {

    width: 100%;
    height: 100%;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 35px;

    background:
        radial-gradient(
            circle,
            #fff,
            #ebe3ef
        );
}

.profile h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 20px;

    font-weight: 600;

    margin-bottom: 8px;
}

.profile-text {

    font-size: 11px;

    opacity: .7;

    line-height: 1.7;
}

.profile-info {

    margin-top: 14px;

    text-align: left;

    font-size: 10px;
}

.profile-info div {

    display: flex;

    justify-content: space-between;

    padding: 5px 0;

    border-bottom: 1px dashed rgba(80,70,90,.12);
}

.profile-info span {

    opacity: .5;
}


/* ---------- MUSIC ---------- */

.music-player {

    display: flex;

    align-items: center;

    gap: 12px;
}

.record {

    width: 55px;
    height: 55px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        repeating-radial-gradient(
            circle,
            #38343d 0px,
            #38343d 3px,
            #504b55 4px,
            #38343d 5px
        );

    color: white;

    font-size: 18px;

    animation: spin 7s linear infinite;

    animation-play-state: paused;
}

.record.playing {

    animation-play-state: running;
}

@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}

.song-info {

    flex: 1;

    min-width: 0;
}

.song-info strong {

    display: block;

    font-size: 11px;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.song-info small {

    font-size: 9px;

    opacity: .55;
}

.progress {

    height: 3px;

    background: rgba(50,40,60,.12);

    margin: 9px 0;

    border-radius: 5px;

    overflow: hidden;
}

#progress-bar {

    width: 0%;

    height: 100%;

    background: #777080;
}

.player-controls {

    display: flex;

    gap: 5px;
}

.player-controls button {

    border: 0;

    background: rgba(255,255,255,.65);

    padding: 4px 7px;

    cursor: pointer;

    border-radius: 5px;

    font-size: 9px;

    color: inherit;
}


/* ---------- COUNTER ---------- */

.counter {

    text-align: center;
}

.counter p {

    font-size: 10px;

    opacity: .55;
}

.counter-number {

    display: inline-block;

    margin: 8px 0;

    padding: 5px 9px;

    background: #27242b;

    color: #fff;

    font-family: monospace;

    letter-spacing: 3px;

    font-size: 13px;

    border-radius: 4px;
}

.counter small {

    display: block;

    font-size: 9px;

    opacity: .5;
}


/* ---------- HERO ---------- */

.hero {

    padding: 35px 20px 40px;

    text-align: center;
}

.hero-decoration {

    font-size: 10px;

    letter-spacing: 4px;

    opacity: .35;

    margin-bottom: 25px;
}

.hero h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(42px, 7vw, 70px);

    line-height: .85;

    font-weight: 400;

    letter-spacing: -2px;
}

.hero h2 span {

    font-style: italic;

    opacity: .6;
}

.hero > p:first-of-type {

    margin-top: 22px;

    font-size: 15px;

    opacity: .6;
}

.hero-description {

    max-width: 470px;

    margin: 15px auto;

    font-size: 12px;

    line-height: 1.9;

    opacity: .65;
}

.hero-buttons {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 25px;
}

.hero-buttons a {

    text-decoration: none;

    color: inherit;

    padding: 9px 17px;

    border: 1px solid rgba(80,70,90,.2);

    border-radius: 20px;

    font-size: 11px;

    transition: .25s;
}

.hero-buttons a:hover {

    background: rgba(255,255,255,.8);

    transform: translateY(-2px);
}


/* ---------- TEXT ---------- */

.window-content h3 {

    font-family: "Cormorant Garamond", serif;

    font-size: 25px;

    font-weight: 500;

    margin-bottom: 8px;
}

.window-content p {

    margin-bottom: 10px;
}

.divider {

    text-align: center;

    opacity: .35;

    margin: 20px 0;
}

.quote {

    text-align: center;

    font-family: "Cormorant Garamond", serif;

    font-size: 18px;

    font-style: italic;

    opacity: .65;
}


/* ---------- UPDATES ---------- */

.update {

    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 12px;

    padding: 10px 0;

    border-bottom: 1px dashed rgba(80,70,90,.15);
}

.update:last-child {

    border-bottom: none;
}

.update time {

    font-size: 10px;

    opacity: .45;
}

.update strong {

    font-size: 12px;

    font-weight: 600;
}

.update p {

    font-size: 11px;

    opacity: .6;

    margin-top: 2px;
}


/* ---------- EXPLORE ---------- */

.explore {

    display: flex;

    flex-direction: column;

    gap: 3px;
}

.explore a {

    color: inherit;

    text-decoration: none;

    font-size: 11px;

    padding: 7px 8px;

    border-radius: 6px;

    transition: .2s;
}

.explore a:hover {

    background: rgba(255,255,255,.7);

    padding-left: 13px;
}


/* ---------- CURRENTLY ---------- */

.currently p {

    padding-bottom: 8px;

    margin-bottom: 8px;

    border-bottom: 1px dashed rgba(80,70,90,.12);

    font-size: 10px;
}

.currently strong {

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;

    opacity: .45;
}


/* ---------- STAMPS ---------- */

.stamps {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 6px;
}

.stamp {

    aspect-ratio: 1.6;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    border: 1px dashed rgba(70,60,80,.35);

    background: rgba(255,255,255,.35);

    font-family: monospace;

    font-size: 8px;

    letter-spacing: 1px;

    transform: rotate(-1deg);

    transition: .2s;
}

.stamp:nth-child(even) {

    transform: rotate(2deg);
}

.stamp:hover {

    transform: rotate(0) scale(1.04);
}


/* ---------- RANDOM MESSAGE ---------- */

.random-message {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 16px;

    margin-bottom: 15px;

    background: rgba(255,255,255,.45);

    border: 1px dashed rgba(80,70,90,.2);

    border-radius: 13px;
}

.angel {

    width: 40px;
    height: 40px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.7);

    font-size: 20px;
}

.random-message small {

    font-size: 8px;

    letter-spacing: 2px;

    opacity: .4;
}

.random-message p {

    font-family: "Cormorant Garamond", serif;

    font-size: 16px;

    margin-top: 2px;
}

.random-message button {

    margin-left: auto;

    border: 0;

    background: none;

    cursor: pointer;

    font-size: 20px;

    opacity: .5;
}


/* ---------- FRIEND BOX ---------- */

.friend-box {

    text-align: center;

    padding: 18px;

    border: 1px dashed rgba(70,60,80,.2);

    border-radius: 12px;

    background: rgba(255,255,255,.35);

    font-size: 11px;

    margin-bottom: 15px;
}

.friend-box button {

    margin-top: 10px;

    border: 1px solid rgba(70,60,80,.2);

    background: rgba(255,255,255,.65);

    border-radius: 20px;

    padding: 7px 12px;

    cursor: pointer;

    font-size: 10px;

    color: inherit;
}

#copy-message {

    display: block;

    margin-top: 7px;

    opacity: .5;
}


/* ---------- FOOTER ---------- */

footer {

    text-align: center;

    padding: 30px;

    background: rgba(255,255,255,.45);

    border-radius: 0 0 25px 25px;

    font-size: 10px;

    letter-spacing: 1px;

    opacity: .7;
}

.footer-decoration {

    letter-spacing: 7px;

    margin-bottom: 15px;

    opacity: .45;
}

footer p {

    margin: 4px;
}

.footer-links {

    margin-top: 12px;
}

.footer-links a {

    color: inherit;

    text-decoration: none;
}


/* ---------- MOBILE ---------- */

@media (max-width: 850px) {

    .content-grid {

        grid-template-columns: 1fr;

    }

    .left-column,
    .right-column {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 15px;

    }

    .left-column .window,
    .right-column .window,
    .friend-box {

        margin-bottom: 0;

    }

}

@media (max-width: 560px) {

    .site {

        width: 96%;

        margin: 12px auto;

    }

    .header {

        padding: 25px 20px;

    }

    .status {

        display: none;

    }

    .navigation a {

        padding: 8px 10px;

        font-size: 10px;

    }

    .content-grid {

        padding: 9px;

    }

    .left-column,
    .right-column {

        grid-template-columns: 1fr;

    }

    .hero {

        padding: 30px 10px;

    }

    .hero h2 {

        font-size: 48px;

    }

}

/* =========================================================
   ANGELAHAVEN707
   angelcore / y2k / japanese web / soft personal web
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Zen+Maru+Gothic:wght@400;500;700&display=swap');

/* ---------------------------------------------------------
   VARIABLES
   --------------------------------------------------------- */

:root {
    --white: #fffdfd;
    --cream: #fff9fb;

    --pink: #f3cddd;
    --pink-light: #fceaf2;
    --pink-dark: #c987a7;

    --blue: #cfe9f5;
    --blue-light: #edf9ff;
    --blue-dark: #7bb7d1;

    --lavender: #e7def5;
    --lavender-dark: #a99ac4;

    --text: #756875;
    --text-dark: #554955;
    --muted: #aaa0aa;

    --border: #eadde5;

    --shadow:
        0 5px 18px rgba(180, 150, 175, .14);

    --angel-glow:
        0 0 20px rgba(255, 255, 255, .9);

    --radius: 14px;
}

/* ---------------------------------------------------------
   BASIC
   --------------------------------------------------------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    color: var(--text);
    background:
        radial-gradient(circle at 15% 10%, rgba(255,255,255,.95), transparent 25%),
        radial-gradient(circle at 85% 20%, rgba(240,225,246,.45), transparent 25%),
        linear-gradient(
            135deg,
            #fffefe 0%,
            #fffafd 35%,
            #fdf7fb 70%,
            #f4f8fc 100%
        );

    font-family:
        "Quicksand",
        "Zen Maru Gothic",
        Arial,
        sans-serif;

    font-size: 15px;
    line-height: 1.7;

    min-height: 100vh;
}

/* tiny sparkles */

body::before {
    content: "✦ ｡ﾟ☆ ･ﾟ✧ ｡ﾟ♡ ･ﾟ✦ ｡ﾟ☆";
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;
    z-index: -1;

    color: rgba(213, 178, 205, .20);
    font-size: 25px;
    letter-spacing: 45px;
    line-height: 100px;

    overflow: hidden;
}

/* ---------------------------------------------------------
   SELECTION
   --------------------------------------------------------- */

::selection {
    background: #f1d2e2;
    color: #5c4c58;
}

/* ---------------------------------------------------------
   LINKS
   --------------------------------------------------------- */

a {
    color: #b77c9d;
    text-decoration: none;

    transition:
        color .2s ease,
        text-shadow .2s ease;
}

a:hover {
    color: #8d6280;

    text-shadow:
        0 0 8px rgba(232, 174, 204, .65);
}

/* ---------------------------------------------------------
   PAGE
   --------------------------------------------------------- */

.page {
    width: min(1000px, calc(100% - 30px));
    margin: 35px auto;
}

/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.site-header {
    position: relative;

    padding: 25px 30px 20px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.95),
            rgba(255,246,251,.92)
        );

    border: 1px solid var(--border);
    border-radius: 18px 18px 10px 10px;

    box-shadow:
        0 8px 25px rgba(175, 140, 165, .13),
        inset 0 1px 0 white;

    text-align: center;

    overflow: hidden;
}

/* angelic shine */

.site-header::before {
    content: "";

    position: absolute;

    top: 0;
    left: -30%;

    width: 160%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #f1c7dc,
            #d5edf6,
            #eadcf5,
            transparent
        );

    opacity: .8;
}

.site-title {
    margin: 0;

    color: #ad7d9b;

    font-size: clamp(27px, 5vw, 43px);
    font-weight: 700;

    letter-spacing: 5px;

    text-shadow:
        0 2px 0 white,
        0 0 12px rgba(220, 175, 201, .35);
}

.site-subtitle {
    margin: 2px 0 14px;

    color: #aaa0aa;

    font-size: 12px;
    letter-spacing: 2px;
}

/* ---------------------------------------------------------
   NAVIGATION
   --------------------------------------------------------- */

.main-nav {
    display: flex;

    flex-wrap: wrap;
    justify-content: center;

    gap: 7px;
}

.main-nav a {
    display: inline-block;

    padding: 6px 12px;

    color: #8c7787;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f9f0f6
        );

    border: 1px solid #e8d9e2;
    border-radius: 9px;

    font-size: 12px;

    box-shadow:
        0 2px 5px rgba(190,160,180,.10);

    transition:
        transform .15s ease,
        background .15s ease,
        box-shadow .15s ease;
}

.main-nav a:hover {
    color: #9e6585;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f7e4ee
        );

    transform: translateY(-2px);

    box-shadow:
        0 5px 12px rgba(205, 155, 185, .18);
}

/* ---------------------------------------------------------
   PAGE CONTENT
   --------------------------------------------------------- */

.content {
    margin-top: 15px;

    display: grid;

    grid-template-columns: 1fr 270px;

    gap: 15px;
}

@media (max-width: 760px) {
    .content {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------
   CARDS
   --------------------------------------------------------- */

.card {
    position: relative;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.96),
            rgba(255,248,252,.92)
        );

    border: 1px solid var(--border);
    border-radius: var(--radius);

    padding: 22px;

    box-shadow:
        var(--shadow),
        inset 0 1px 0 white;

    backdrop-filter: blur(5px);
}

/* little corner decoration */

.card::after {
    content: "✧";

    position: absolute;

    top: 8px;
    right: 12px;

    color: #e2bfd2;

    font-size: 13px;
}

/* ---------------------------------------------------------
   HEADINGS
   --------------------------------------------------------- */

h1,
h2,
h3 {
    color: var(--text-dark);

    font-weight: 600;
}

h1 {
    font-size: 28px;
}

h2 {
    margin-top: 0;

    padding-bottom: 9px;

    border-bottom: 1px dashed #ead9e3;

    color: #9c7089;

    font-size: 20px;
}

h3 {
    color: #ae7895;
}

/* page title */

.page-title {
    margin-bottom: 15px;

    color: #a36f8c;

    font-size: 27px;
    font-weight: 700;

    letter-spacing: 2px;

    text-shadow:
        0 1px white,
        0 0 10px rgba(230,190,210,.4);
}

/* ---------------------------------------------------------
   ABOUT ME
   --------------------------------------------------------- */

.profile {
    display: grid;

    grid-template-columns: 150px 1fr;

    gap: 20px;
}

@media (max-width: 600px) {
    .profile {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.profile-photo {
    width: 150px;
    height: 150px;

    object-fit: cover;

    border-radius: 50%;

    border: 5px solid white;

    box-shadow:
        0 0 0 1px #ead6e1,
        0 5px 18px rgba(170,140,160,.2);

    background:
        linear-gradient(
            135deg,
            #fff,
            #f5e3ee,
            #e2f3fa
        );
}

.profile-name {
    margin: 0;

    color: #9e6d88;

    font-size: 25px;
}

.status {
    display: inline-block;

    margin: 4px 0 10px;

    padding: 3px 9px;

    border-radius: 20px;

    color: #789778;

    background: #edf8ed;

    border: 1px solid #d9ecd9;

    font-size: 11px;
}

.info-list {
    padding: 0;

    list-style: none;
}

.info-list li {
    margin: 6px 0;

    padding-left: 4px;
}

.info-list li::before {
    content: "♡ ";

    color: #d69ab5;
}

/* ---------------------------------------------------------
   BLOG / DIARY
   --------------------------------------------------------- */

.blog-entry {
    margin-bottom: 18px;
    padding: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.9),
            rgba(251,243,248,.9)
        );

    border: 1px solid #eadde5;
    border-radius: 11px;

    box-shadow:
        0 3px 10px rgba(180,150,170,.08);
}

.blog-entry:last-child {
    margin-bottom: 0;
}

.blog-title {
    margin: 0 0 2px;

    color: #a16e8b;

    font-size: 18px;
}

.blog-date {
    color: #b8abb5;

    font-size: 11px;

    letter-spacing: 1px;
}

.blog-meta {
    margin: 8px 0;

    color: #aa9ba6;

    font-size: 11px;
}

.blog-meta span {
    display: inline-block;

    margin-right: 6px;
    padding: 2px 7px;

    border-radius: 10px;

    background: #f6edf3;
}

/* ---------------------------------------------------------
   PHOTOS
   --------------------------------------------------------- */

.photo-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(145px, 1fr));

    gap: 12px;
}

.photo-item {
    position: relative;

    padding: 7px;

    background: white;

    border: 1px solid #eadce4;

    box-shadow:
        0 4px 12px rgba(170,140,160,.13);

    transform: rotate(0deg);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.photo-item:nth-child(2n) {
    transform: rotate(1deg);
}

.photo-item:nth-child(3n) {
    transform: rotate(-1deg);
}

.photo-item:hover {
    z-index: 5;

    transform:
        translateY(-5px)
        rotate(0deg)
        scale(1.025);

    box-shadow:
        0 10px 25px rgba(170,140,160,.22);
}

.photo-item img {
    display: block;

    width: 100%;
    aspect-ratio: 1 / 1;

    object-fit: cover;

    background: #faf5f8;
}

.photo-caption {
    padding: 7px 3px 2px;

    color: #91818d;

    font-size: 11px;
    text-align: center;
}

/* ---------------------------------------------------------
   PHOTO ALBUM TITLES
   --------------------------------------------------------- */

.album-title {
    margin: 25px 0 12px;

    color: #a2758d;

    font-size: 16px;
}

.album-title::before {
    content: "♡ ";
    color: #d9a6bc;
}

/* ---------------------------------------------------------
   MUSIC
   --------------------------------------------------------- */

.music-player {
    display: grid;

    grid-template-columns: 125px 1fr;

    gap: 18px;

    align-items: center;

    padding: 15px;

    background:
        linear-gradient(
            135deg,
            #fff,
            #f8edf5
        );

    border: 1px solid #eadce5;
    border-radius: 12px;
}

@media (max-width: 600px) {
    .music-player {
        grid-template-columns: 1fr;
    }
}

.album-cover {
    width: 125px;
    height: 125px;

    object-fit: cover;

    border-radius: 8px;

    border: 4px solid white;

    box-shadow:
        0 0 0 1px #e5d5df,
        0 5px 15px rgba(160,130,150,.18);
}

.song-title {
    margin: 0;

    color: #9f6f8b;

    font-size: 19px;
}

.artist {
    color: #aaa0aa;

    font-size: 12px;
}

audio {
    width: 100%;

    margin-top: 12px;
}

/* playlist */

.playlist {
    margin-top: 15px;
}

.song {
    display: flex;

    align-items: center;

    gap: 10px;

    margin: 6px 0;
    padding: 9px 12px;

    border: 1px solid #eadde5;
    border-radius: 9px;

    background: rgba(255,255,255,.75);

    cursor: pointer;

    transition:
        background .15s ease,
        transform .15s ease;
}

.song:hover {
    background: #fdf0f6;

    transform: translateX(3px);
}

.song-number {
    color: #c59ab0;

    font-size: 11px;
}

/* ---------------------------------------------------------
   LINKS
   --------------------------------------------------------- */

.link-list {
    display: grid;

    gap: 9px;
}

.link-item {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 11px 14px;

    background:
        linear-gradient(
            90deg,
            #fff,
            #fbf1f6
        );

    border: 1px solid #eadde5;
    border-radius: 9px;

    transition:
        transform .15s ease,
        box-shadow .15s ease;
}

.link-item:hover {
    transform: translateX(4px);

    box-shadow:
        0 5px 13px rgba(190,150,175,.14);
}

.link-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #f8dce9,
            #e5f3fa
        );

    color: white;

    box-shadow:
        inset 0 1px white;
}

/* ---------------------------------------------------------
   88x31 BUTTONS
   --------------------------------------------------------- */

.button88 {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 88px;
    height: 31px;

    margin: 4px;

    color: #856878;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f6dfea 50%,
            #e7f5fa
        );

    border: 1px solid #d9c2d0;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .5px;

    box-shadow:
        inset 1px 1px white,
        2px 2px 0 rgba(190,160,180,.15);

    text-shadow:
        0 1px white;
}

.button88:hover {
    color: #a35f83;

    transform: translateY(-1px);

    box-shadow:
        0 3px 8px rgba(180,140,165,.2);
}

/* ---------------------------------------------------------
   WEBRING
   --------------------------------------------------------- */

.webring {
    margin-top: 20px;
    padding: 13px;

    text-align: center;

    border: 1px dashed #dfc9d5;

    background:
        rgba(255,250,253,.75);

    font-size: 11px;
}

.webring-title {
    display: block;

    margin-bottom: 5px;

    color: #a2768e;

    font-weight: 700;
}

/* ---------------------------------------------------------
   GUESTBOOK
   --------------------------------------------------------- */

.guestbook-form {
    padding: 15px;

    background: #fffafd;

    border: 1px solid #eadde5;
    border-radius: 11px;
}

label {
    display: block;

    margin-bottom: 4px;

    color: #967989;

    font-size: 12px;
    font-weight: 600;
}

input,
textarea,
select {
    width: 100%;

    padding: 9px 11px;

    margin-bottom: 12px;

    color: var(--text);

    background: white;

    border: 1px solid #e2d3dd;
    border-radius: 8px;

    font-family: inherit;
    font-size: 13px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #d7a7bf;

    box-shadow:
        0 0 0 3px rgba(231,190,210,.20);
}

textarea {
    min-height: 130px;

    resize: vertical;
}

button,
.submit-button {
    padding: 8px 17px;

    color: #806274;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f4e2eb
        );

    border: 1px solid #dbc5d1;
    border-radius: 8px;

    font-family: inherit;
    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    box-shadow:
        inset 0 1px white,
        0 3px 8px rgba(180,140,165,.10);

    transition:
        transform .15s ease,
        box-shadow .15s ease;
}

button:hover,
.submit-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 5px 12px rgba(180,140,165,.18);
}

/* messages */

.guestbook-entry {
    position: relative;

    margin-top: 12px;
    padding: 14px 16px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #fbf3f7
        );

    border: 1px solid #eadde5;
    border-radius: 10px;
}

.guestbook-name {
    color: #a06e89;

    font-weight: 700;
}

.guestbook-date {
    color: #b8abb5;

    font-size: 10px;
}

.guestbook-message {
    margin-top: 7px;

    color: #746775;

    font-size: 13px;
}

/* ---------------------------------------------------------
   SIDEBAR
   --------------------------------------------------------- */

.sidebar {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.side-box {
    padding: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.95),
            rgba(250,242,247,.92)
        );

    border: 1px solid var(--border);
    border-radius: 12px;

    box-shadow:
        0 4px 14px rgba(180,150,170,.10);
}

.side-title {
    margin: 0 0 8px;

    color: #a2738c;

    font-size: 14px;

    letter-spacing: 1px;
}

/* ---------------------------------------------------------
   DIVIDERS
   --------------------------------------------------------- */

.divider {
    height: 1px;

    margin: 20px 0;

    border: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            #e6cdd9,
            #dcecf2,
            transparent
        );
}

/* cute divider */

.angel-divider {
    margin: 18px 0;

    color: #c99db5;

    text-align: center;

    font-size: 13px;
    letter-spacing: 7px;
}

/* ---------------------------------------------------------
   TAGS
   --------------------------------------------------------- */

.tag {
    display: inline-block;

    margin: 3px;

    padding: 3px 8px;

    color: #947285;

    background: #faedf4;

    border: 1px solid #ead8e2;
    border-radius: 20px;

    font-size: 10px;
}

/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */

.site-footer {
    margin-top: 15px;
    padding: 18px;

    color: #aaa0aa;

    background:
        rgba(255,255,255,.75);

    border: 1px solid #eadde5;
    border-radius: 12px;

    text-align: center;

    font-size: 11px;
}

.site-footer .heart {
    color: #d897b5;

    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* ---------------------------------------------------------
   LITTLE ANGEL EFFECT
   --------------------------------------------------------- */

.sparkle {
    color: #d7abc0;

    animation: sparkle 2.5s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: .5;
    }

    50% {
        opacity: 1;
        text-shadow:
            0 0 8px #f4d9e7;
    }
}

/* ---------------------------------------------------------
   MARQUEE / UPDATE BAR
   --------------------------------------------------------- */

.update-bar {
    overflow: hidden;

    padding: 6px 0;

    color: #9b7a8c;

    background:
        linear-gradient(
            90deg,
            #fff,
            #f9eaf2,
            #eef8fb,
            #fff
        );

    border-top: 1px dashed #dfcbd7;
    border-bottom: 1px dashed #dfcbd7;

    font-size: 11px;
    white-space: nowrap;
}

/* ---------------------------------------------------------
   ONLINE INDICATOR
   --------------------------------------------------------- */

.online-dot {
    display: inline-block;

    width: 7px;
    height: 7px;

    margin-right: 4px;

    border-radius: 50%;

    background: #a8d5a8;

    box-shadow:
        0 0 7px rgba(130,190,130,.8);
}

/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 600px) {

    .page {
        width: calc(100% - 16px);

        margin: 12px auto;
    }

    .site-header {
        padding: 20px 15px;
    }

    .site-title {
        font-size: 26px;

        letter-spacing: 3px;
    }

    .main-nav {
        gap: 5px;
    }

    .main-nav a {
        padding: 5px 8px;

        font-size: 11px;
    }

    .card {
        padding: 16px;
    }

    .photo-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .music-player {
        padding: 12px;
    }
}

/* ---------------------------------------------------------
   EXTRA OLD-WEB DETAILS
   --------------------------------------------------------- */

.pixel-text {
    font-family:
        "Courier New",
        monospace;

    font-size: 11px;

    letter-spacing: 1px;
}

.mini-note {
    padding: 8px 10px;

    color: #998b96;

    background: #fff8fb;

    border-left: 3px solid #e4bfd2;

    font-size: 11px;
}

.center {
    text-align: center;
}

.small {
    font-size: 11px;
}

.muted {
    color: #aaa0aa;
}