﻿/* =========================================================
   SHRiTVI ALBUM
   FUTURISTIC MEMORY VAULT
   LAVENDER + PURPLE THEME
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;
    background: #09040f;
    color: #fff;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}


button,
input {
    font-family: inherit;
}


button {
    -webkit-tap-highlight-color: transparent;
}


a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   BACKGROUND
========================================================= */

.album-background {
    position: fixed;
    inset: 0;
    z-index: -10;
    overflow: hidden;
    background: radial-gradient( circle at 20% 20%, rgba(144,80,210,.16), transparent 30% ), radial-gradient( circle at 80% 75%, rgba(225,90,190,.13), transparent 30% ), #09040f;
}


/* =========================================================
   GRID
========================================================= */

.album-grid-background {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image: linear-gradient( rgba(191,120,255,.18) 1px, transparent 1px ), linear-gradient( 90deg, rgba(191,120,255,.18) 1px, transparent 1px );
    background-size: 45px 45px;
    mask-image: linear-gradient( to bottom, #000, transparent 85% );
}


/* =========================================================
   NEON ORBS
========================================================= */

.album-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}


.album-orb-one {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    background: rgba(153,87,220,.25);
    animation: albumOrbOne 12s ease-in-out infinite;
}


.album-orb-two {
    width: 350px;
    height: 350px;
    right: -150px;
    top: 35%;
    background: rgba(226,91,190,.17);
    animation: albumOrbTwo 15s ease-in-out infinite;
}


.album-orb-three {
    width: 260px;
    height: 260px;
    left: 25%;
    bottom: -150px;
    background: rgba(122,91,235,.16);
    animation: albumOrbThree 18s ease-in-out infinite;
}


@keyframes albumOrbOne {

    0%, 100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(70px,60px);
    }
}


@keyframes albumOrbTwo {

    0%, 100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(-80px,-40px);
    }
}


@keyframes albumOrbThree {

    0%, 100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(50px,-60px);
    }
}


/* =========================================================
   PARTICLES
========================================================= */

.album-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}


.album-particle {
    position: absolute;
    bottom: -20px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #d9a4ff;
    box-shadow: 0 0 10px #c477ff;
    animation: albumParticleRise linear infinite;
}


@keyframes albumParticleRise {

    from {
        transform: translateY(0) scale(.5);
        opacity: 0;
    }

    15% {
        opacity: .8;
    }

    85% {
        opacity: .8;
    }

    to {
        transform: translateY(-110vh) scale(1.2);
        opacity: 0;
    }
}


/* =========================================================
   PAGE
========================================================= */

.album-page {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 22px 50px;
}


/* =========================================================
   SYSTEM STATUS
========================================================= */

.album-system-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 4px 0 45px;
    color: #927ea0;
    font-family: "Orbitron", sans-serif;
    font-size: 8px;
    letter-spacing: 1.5px;
}


.album-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b975ff;
    box-shadow: 0 0 12px #bd76ff;
    animation: albumStatusPulse 1.5s ease-in-out infinite;
}


@keyframes albumStatusPulse {

    50% {
        opacity: .35;
        transform: scale(.7);
    }
}


.album-status-line {
    width: 35px;
    height: 1px;
    background: linear-gradient( 90deg, transparent, #654879 );
}


/* =========================================================
   HERO
========================================================= */

.album-hero {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 55px;
}


.album-hero-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 21px;
    color: #fff;
    font-size: 23px;
    background: linear-gradient( 135deg, #7142a6, #d261b4 );
    box-shadow: 0 0 40px rgba(191,104,232,.28);
    animation: albumHeroFloat 3s ease-in-out infinite;
}


@keyframes albumHeroFloat {

    0%, 100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-7px) rotate(3deg);
    }
}


.album-hero-kicker {
    display: block;
    margin-bottom: 12px;
    color: #b58ed0;
    font-family: "Orbitron", sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
}


.album-hero h1 {
    margin-bottom: 15px;
    color: #fff;
    font-family: "Orbitron", sans-serif;
    font-size: clamp( 34px, 7vw, 65px );
    line-height: 1.1;
    letter-spacing: -1px;
}


    .album-hero h1 span {
        display: block;
        color: #d49aff;
        text-shadow: 0 0 30px rgba(193,117,255,.35);
    }


.album-hero p {
    max-width: 450px;
    margin: 0 auto;
    color: #9f8da9;
    font-size: 14px;
    line-height: 1.7;
}


.album-memory-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}


    .album-memory-line span {
        width: 70px;
        height: 1px;
        background: linear-gradient( 90deg, transparent, #7d5a91 );
    }


        .album-memory-line span:last-child {
            background: linear-gradient( 90deg, #7d5a91, transparent );
        }


    .album-memory-line i {
        color: #db8fca;
        font-size: 12px;
        text-shadow: 0 0 15px #e177c4;
    }


/* =========================================================
   ACCESS SECTION
========================================================= */

.album-access-section {
    display: flex;
    justify-content: center;
    margin-bottom: 90px;
}


.album-access-card-main {
    position: relative;
    width: min( 500px, 100% );
    padding: 42px 30px 30px;
    text-align: center;
    border: 1px solid rgba(196,143,236,.22);
    border-radius: 30px;
    background: linear-gradient( 145deg, rgba(42,20,59,.88), rgba(17,8,27,.92) );
    box-shadow: 0 30px 100px rgba(0,0,0,.40), inset 0 1px rgba(255,255,255,.04);
    backdrop-filter: blur(12px);
}


    .album-access-card-main::before {
        content: "";
        position: absolute;
        top: 0;
        left: 15%;
        width: 70%;
        height: 1px;
        background: linear-gradient( 90deg, transparent, #c278ff, #ec86ce, transparent );
        box-shadow: 0 0 20px #bc72ff;
    }


/* =========================================================
   AI LOCK
========================================================= */

.album-ai-lock {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}


.album-ai-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(203,137,255,.35);
}


.album-ring-one {
    animation: albumRingRotate 8s linear infinite;
}


.album-ring-two {
    inset: 10px;
    border: 1px dashed rgba(255,132,214,.38);
    animation: albumRingRotateReverse 6s linear infinite;
}


@keyframes albumRingRotate {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes albumRingRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0);
    }
}


.album-ai-core {
    position: absolute;
    inset: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient( 135deg, #7645a6, #d15eaf );
    box-shadow: 0 0 30px rgba(208,96,178,.30);
    color: #fff;
    font-size: 19px;
}


/* =========================================================
   ACCESS TEXT
========================================================= */

.album-access-label {
    display: block;
    margin-bottom: 13px;
    color: #a988bd;
    font-family: "Orbitron", sans-serif;
    font-size: 8px;
    letter-spacing: 2.5px;
}


.album-access-card-main h2 {
    margin-bottom: 13px;
    font-family: "Orbitron", sans-serif;
    font-size: clamp( 20px, 5vw, 28px );
}


    .album-access-card-main h2 span {
        color: #d398ff;
    }


.album-access-card-main > p {
    max-width: 390px;
    margin: 0 auto 25px;
    color: #9d8ba8;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   PHONE
========================================================= */

.album-phone-box {
    height: 56px;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 16px;
    border: 1px solid rgba(199,147,235,.25);
    border-radius: 15px;
    background: rgba(255,255,255,.035);
    transition: border .3s ease, box-shadow .3s ease;
}


    .album-phone-box:focus-within {
        border-color: rgba(208,137,255,.65);
        box-shadow: 0 0 25px rgba(185,104,245,.13);
    }


.album-country-code {
    color: #d2b5e4;
    font-family: "Orbitron", sans-serif;
    font-size: 12px;
}


.album-phone-divider {
    width: 1px;
    height: 22px;
    margin: 0 13px;
    background: rgba(255,255,255,.13);
}


.album-phone-box input {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
}


    .album-phone-box input::placeholder {
        color: #67566f;
    }


/* =========================================================
   ERROR
========================================================= */

.album-input-error {
    display: none;
    margin-top: 9px;
    color: #ff86cf;
    font-size: 11px;
    text-align: left;
}


    .album-input-error.show {
        display: block;
    }


/* =========================================================
   UNLOCK BUTTON
========================================================= */

.album-unlock-btn {
    position: relative;
    width: 100%;
    height: 55px;
    margin-top: 15px;
    border: 0;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient( 135deg, #8653cc, #cb63b3 );
    font-family: "Orbitron", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    box-shadow: 0 12px 35px rgba(159,81,204,.25);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}


    .album-unlock-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 17px 40px rgba(159,81,204,.38);
    }


    .album-unlock-btn:active {
        transform: scale(.98);
    }


.album-unlock-normal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.album-unlock-loading {
    display: none;
}


.album-unlock-btn.loading
.album-unlock-normal {
    display: none;
}


.album-unlock-btn.loading
.album-unlock-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


/* =========================================================
   SECURITY
========================================================= */

.album-security-note {
    margin-top: 18px;
    color: #75617e;
    font-size: 9px;
    line-height: 1.5;
}


    .album-security-note i {
        margin-right: 5px;
        color: #9d73b5;
    }


/* =========================================================
   MEMORY SECTION
========================================================= */

.album-memory-section {
    margin-bottom: 70px;
}


.album-memory-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}


.album-section-label {
    display: block;
    margin-bottom: 10px;
    color: #a984bc;
    font-family: "Orbitron", sans-serif;
    font-size: 8px;
    letter-spacing: 2.5px;
}


.album-memory-header h2 {
    font-family: "Orbitron", sans-serif;
    font-size: clamp( 23px, 5vw, 35px );
}


    .album-memory-header h2 span {
        color: #d19aff;
    }


.album-memory-counter {
    min-width: 70px;
    text-align: right;
}


    .album-memory-counter strong {
        display: block;
        color: #d7a0ff;
        font-family: "Orbitron", sans-serif;
        font-size: 25px;
    }


    .album-memory-counter small {
        color: #806d89;
        font-size: 7px;
        letter-spacing: 1.5px;
    }


/* =========================================================
   MEMORY STATUS
========================================================= */

.album-memory-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    color: #806e89;
    font-family: "Orbitron", sans-serif;
    font-size: 7px;
    letter-spacing: 1px;
}


.album-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d781c7;
    box-shadow: 0 0 10px #e578c9;
}


.album-intro-divider {
    width: 25px;
    height: 1px;
    background: #4e3b59;
}


/* =========================================================
   PHOTO GRID
========================================================= */

.album-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}


/* =========================================================
   PHOTO CARD
========================================================= */

.album-photo-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(201,153,235,.17);
    background: #170c21;
    box-shadow: 0 12px 35px rgba(0,0,0,.30);
    transition: transform .35s cubic-bezier(.22,1,.36,1), border .35s ease, box-shadow .35s ease;
}


    .album-photo-card:hover {
        transform: translateY(-6px);
        border-color: rgba(214,151,255,.55);
        box-shadow: 0 20px 50px rgba(126,70,163,.25), 0 0 25px rgba(202,118,239,.10);
    }


    .album-photo-card img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .6s cubic-bezier(.22,1,.36,1), filter .4s ease;
    }


    .album-photo-card:hover img {
        transform: scale(1.06);
        filter: brightness(1.08);
    }


/* =========================================================
   PHOTO NUMBER
========================================================= */

.album-photo-number {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    min-width: 30px;
    padding: 5px 7px;
    border-radius: 8px;
    color: #e8cfff;
    background: rgba(19,8,29,.70);
    border: 1px solid rgba(224,174,255,.22);
    backdrop-filter: blur(7px);
    font-family: "Orbitron", sans-serif;
    font-size: 7px;
    letter-spacing: 1px;
}


/* =========================================================
   PHOTO OVERLAY
========================================================= */

.album-photo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46,17,59,.20);
    opacity: 0;
    transition: opacity .35s ease;
}


    .album-photo-overlay i {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        background: rgba(116,61,157,.72);
        border: 1px solid rgba(232,193,255,.40);
        box-shadow: 0 0 25px rgba(207,130,255,.30);
        transform: scale(.7);
        transition: transform .35s ease;
    }


.album-photo-card:hover
.album-photo-overlay {
    opacity: 1;
}


    .album-photo-card:hover
    .album-photo-overlay i {
        transform: scale(1);
    }


/* =========================================================
   END
========================================================= */

.album-end-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin: 35px auto 14px;
}


    .album-end-decoration span {
        width: 60px;
        height: 1px;
        background: linear-gradient( 90deg, transparent, #60476d );
    }


        .album-end-decoration span:last-child {
            background: linear-gradient( 90deg, #60476d, transparent );
        }


    .album-end-decoration i {
        color: #d784c8;
        font-size: 11px;
    }


.album-end-text {
    color: #716078;
    text-align: center;
    font-family: "Orbitron", sans-serif;
    font-size: 7px;
    letter-spacing: 1.5px;
}


/* =========================================================
   FOOTER
========================================================= */

.album-footer {
    padding: 35px 10px 15px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.05);
}


.album-footer-symbol {
    margin-bottom: 7px;
    color: #b77be3;
    font-size: 15px;
}


.album-footer strong {
    display: block;
    color: #d3a1ee;
    font-family: "Orbitron", sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
}


.album-footer span {
    display: block;
    margin-top: 7px;
    color: #67566f;
    font-size: 7px;
    letter-spacing: 1.5px;
}


/* =========================================================
   ACCESS DENIED POPUP
   UNIQUE CLASSES
========================================================= */

.album-access-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease, visibility .35s ease;
}


    .album-access-popup.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }


/* =========================================================
   POPUP BACKDROP
========================================================= */

.album-access-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8,3,18,.86);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}


/* =========================================================
   POPUP CARD
========================================================= */

.album-access-card {
    position: relative;
    z-index: 2;
    width: min(440px, 100%);
    padding: 38px 25px 25px;
    text-align: center;
    border-radius: 28px;
    background: linear-gradient( 145deg, #29143d, #13091e );
    border: 1px solid rgba(211,167,255,.32);
    box-shadow: 0 30px 100px rgba(0,0,0,.65), 0 0 55px rgba(155,108,255,.20);
    transform: translateY(30px) scale(.85);
    opacity: 0;
    transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .35s ease;
    overflow: hidden;
}


    .album-access-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 12%;
        width: 76%;
        height: 2px;
        background: linear-gradient( 90deg, transparent, #c777ff, #ff8dde, transparent );
        box-shadow: 0 0 18px #bd70ff;
    }


.album-access-popup.show
.album-access-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}


/* =========================================================
   CLOSE
========================================================= */

.album-access-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    color: #bca9c9;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}


    .album-access-close:hover {
        background: rgba(255,255,255,.14);
        color: #fff;
        transform: rotate(90deg);
    }


/* =========================================================
   DENIED ICON
========================================================= */

.album-denied-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 21px;
    color: #fff;
    font-size: 23px;
    background: linear-gradient( 135deg, #7540a5, #d55baa );
    box-shadow: 0 0 35px rgba(213,91,177,.35);
    animation: albumDeniedPulse 2s ease-in-out infinite;
}


@keyframes albumDeniedPulse {

    0%, 100% {
        box-shadow: 0 0 25px rgba(213,91,177,.25);
    }

    50% {
        box-shadow: 0 0 45px rgba(213,91,177,.50);
    }
}


/* =========================================================
   DENIED STATUS
========================================================= */

.album-denied-status {
    display: block;
    color: #ff91d5;
    font-family: "Orbitron", sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(255,110,205,.45);
}


/* =========================================================
   POPUP TITLE
========================================================= */

.album-access-card h2 {
    margin: 13px 0 15px;
    color: #fff;
    font-family: "Orbitron", sans-serif;
    font-size: clamp( 18px, 5vw, 24px );
    letter-spacing: .5px;
}


/* =========================================================
   POPUP MESSAGE
========================================================= */

.album-access-card p {
    max-width: 370px;
    margin: 0 auto 25px;
    color: #aa98b8;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.75;
}


    .album-access-card p strong {
        color: #dca7ff;
        font-weight: 600;
    }


/* =========================================================
   OK BUTTON
========================================================= */

.album-ok-btn {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient( 135deg, #8e58d2, #cf6db8 );
    font-family: "Orbitron", sans-serif;
    font-size: 9px;
    letter-spacing: 1.5px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 35px rgba(180,90,205,.25);
    transition: transform .3s ease, box-shadow .3s ease;
}


    .album-ok-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(180,90,205,.42);
    }


    .album-ok-btn:active {
        transform: scale(.97);
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .album-page {
        padding: 18px 16px 40px;
    }


    .album-system-status {
        margin-bottom: 35px;
    }


    .album-hero {
        margin-bottom: 45px;
    }


    .album-access-section {
        margin-bottom: 70px;
    }


    .album-photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .album-page {
        padding: 15px 12px 35px;
    }


    .album-system-status {
        margin-bottom: 30px;
        font-size: 7px;
    }


    .album-status-line {
        width: 20px;
    }


    .album-hero {
        margin-bottom: 40px;
    }


    .album-hero-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 20px;
    }


    .album-hero-kicker {
        font-size: 7px;
        letter-spacing: 2px;
    }


    .album-hero p {
        font-size: 12px;
    }


    .album-access-card-main {
        padding: 35px 18px 25px;
        border-radius: 24px;
    }


    .album-ai-lock {
        width: 85px;
        height: 85px;
    }


    .album-ai-core {
        inset: 22px;
    }


    .album-memory-header {
        align-items: center;
    }


        .album-memory-header h2 {
            font-size: 21px;
        }


    .album-memory-counter strong {
        font-size: 20px;
    }


    .album-memory-status {
        flex-wrap: wrap;
        font-size: 6px;
    }


    .album-photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }


    .album-photo-card {
        border-radius: 14px;
    }


    .album-photo-number {
        top: 7px;
        left: 7px;
        font-size: 6px;
        min-width: 27px;
    }


    .album-photo-overlay {
        opacity: 1;
        align-items: flex-end;
        justify-content: flex-end;
        padding: 8px;
        background: linear-gradient( transparent 60%, rgba(15,5,22,.35) );
    }


        .album-photo-overlay i {
            width: 31px;
            height: 31px;
            font-size: 10px;
            transform: scale(1);
        }


    .album-access-popup {
        padding: 14px;
    }


    .album-access-card {
        padding: 35px 19px 22px;
        border-radius: 24px;
    }


    .album-denied-icon {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        font-size: 20px;
    }


    .album-access-card h2 {
        font-size: 17px;
    }


    .album-access-card p {
        font-size: 12px;
        line-height: 1.7;
    }


    .album-ok-btn {
        height: 50px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 350px) {

    .album-photo-grid {
        gap: 7px;
    }


    .album-memory-header h2 {
        font-size: 19px;
    }


    .album-memory-counter {
        min-width: 55px;
    }


        .album-memory-counter strong {
            font-size: 17px;
        }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
/* =========================================================
   LOCKED MEMORY AREA
========================================================= */

.album-locked-area {
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 15px;
    padding: 45px 20px;
    border-radius: 25px;
    border: 1px solid rgba(201,153,235,.16);
    background: linear-gradient( 145deg, rgba(42,20,59,.55), rgba(17,8,27,.65) );
    overflow: hidden;
}


    .album-locked-area::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at center, rgba(190,116,255,.08), transparent 55% );
        pointer-events: none;
    }


/* Big Lock */

.album-big-lock {
    position: relative;
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
    background: linear-gradient( 135deg, #7141a2, #c85daa );
    box-shadow: 0 0 25px rgba(195,112,245,.25), 0 0 70px rgba(210,90,180,.10);
    animation: albumLockPulse 2.5s ease-in-out infinite;
}


    .album-big-lock::before {
        content: "";
        position: absolute;
        inset: -12px;
        border-radius: 50%;
        border: 1px solid rgba(204,139,255,.22);
        animation: albumLockRing 5s linear infinite;
    }


@keyframes albumLockPulse {

    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 25px rgba(195,112,245,.25);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(195,112,245,.45);
    }
}


@keyframes albumLockRing {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* Label */

.album-locked-label {
    color: #a984bc;
    font-family: "Orbitron", sans-serif;
    font-size: 8px;
    letter-spacing: 2.5px;
}


/* Heading */

.album-locked-area h3 {
    margin: 12px 0 10px;
    color: #fff;
    font-family: "Orbitron", sans-serif;
    font-size: clamp( 18px, 4vw, 25px );
}


    .album-locked-area h3 span {
        color: #d39aff;
    }


/* Description */

.album-locked-area p {
    max-width: 390px;
    color: #95829f;
    font-size: 12px;
    line-height: 1.7;
}


/* Mobile */

@media (max-width: 480px) {

    .album-locked-area {
        min-height: 270px;
        padding: 35px 18px;
    }


    .album-big-lock {
        width: 70px;
        height: 70px;
        font-size: 21px;
    }
}
/* =========================================================
   HOME BUTTON
========================================================= */

.album-home-btn {
    position: fixed;
    top: 18px;
    left: 18px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    color: #dcb8f3;
    background: rgba(35, 16, 49, .78);
    border: 1px solid rgba(205, 148, 245, .25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: "Orbitron", sans-serif;
    font-size: 8px;
    letter-spacing: 1.2px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
    transition: all .3s ease;
}


    .album-home-btn i {
        font-size: 12px;
        color: #d28cff;
    }


    .album-home-btn:hover {
        color: #fff;
        border-color: rgba(220,160,255,.55);
        background: rgba(65, 30, 82, .85);
        box-shadow: 0 0 25px rgba(190,110,255,.20);
        transform: translateY(-2px);
    }


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .album-home-btn {
        top: 12px;
        left: 12px;
        width: 40px;
        height: 40px;
        padding: 0;
        justify-content: center;
        border-radius: 12px;
    }


        .album-home-btn span {
            display: none;
        }


        .album-home-btn i {
            font-size: 13px;
        }
}