@import url(https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap);@import url(https://fonts.googleapis.com/css2?family=Ysabeau+SC:wght@1..1000&display=swap);*{margin:0;padding:0;box-sizing:border-box;font-family:"Nunito",sans-serif}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-track{background:var(--bg-elements)}::-webkit-scrollbar-thumb{background:var(--primary);border-radius:4px}::-webkit-scrollbar-thumb:hover{background:#ffae5d}:root{--bg-dark:#121212;--bg-elements:#1e1e1e;--bg-elements-light:#2a2a2a;--primary:#ff9e44;--primary-glow:rgba(255,158,68,.15);--text-primary:#f5f5f5;--text-secondary:#aaa;--transition:all .3s ease}body{background-color:var(--bg-dark);color:var(--text-primary);line-height:1.5;overflow-x:hidden}@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}.animate{opacity:0;animation:fadeIn .56s cubic-bezier(.22,1,.36,1) forwards}.delay-1{animation-delay:.04s}.delay-2{animation-delay:.08s}.delay-3{animation-delay:.12s}.delay-4{animation-delay:.16s}.delay-5{animation-delay:.2s}header{display:flex;justify-content:space-between;align-items:center;padding:1rem 5%;background-color:var(--bg-elements);box-shadow:0 4px 20px rgba(0,0,0,.25);position:sticky;top:0;z-index:100}.logo{font-size:2rem;font-weight:700;color:var(--primary);text-decoration:none;letter-spacing:1px;font-family:"Ysabeau SC",sans-serif}.nav-links{display:flex;gap:2rem;align-items:center}.nav-links a{color:var(--text-primary);text-decoration:none;font-weight:500;transition:var(--transition);padding:.5rem 1rem;border-radius:4px}.nav-links a:hover{color:var(--primary);background:var(--primary-glow)}.user-menu{position:relative;display:inline-block}.avatar{width:40px;height:40px;border-radius:50%;overflow:hidden;cursor:pointer;transition:var(--transition);border:2px solid transparent}.avatar:hover{border-color:var(--primary);transform:scale(1.05)}.avatar img{width:100%;height:100%;object-fit:cover}.dropdown{position:absolute;top:100%;right:0;background-color:var(--bg-elements-light);width:200px;border-radius:8px;padding:.5rem 0;box-shadow:0 10px 25px rgba(0,0,0,.2);opacity:0;visibility:hidden;transform:translateY(10px);transition:var(--transition);z-index:101}.user-menu:hover .dropdown{opacity:1;visibility:visible;transform:translateY(0)}.dropdown a{display:flex;align-items:center;gap:.75rem;padding:.75rem 1.5rem;color:var(--text-primary);text-decoration:none;transition:var(--transition)}.dropdown a:hover{background-color:var(--primary-glow);color:var(--primary)}.dropdown a i{width:20px;text-align:center}.main{max-width:1000px;margin:0 auto;padding:2rem .8rem}.photo-viewer{max-width:100%;padding:1.5rem;display:flex;flex-direction:column;gap:1.2rem;background:var(--bg-elements);border-radius:12px;box-shadow:0 8px 30px rgba(0,0,0,.35);animation:fadeIn .56s cubic-bezier(.22,1,.36,1) forwards;overflow:visible}.image-container{width:100%;max-height:65vh;overflow:hidden;border-radius:8px;background-color:var(--bg-elements-light);box-shadow:0 6px 15px rgba(0,0,0,.25);border:1px solid var(--primary-glow)}.main-image{width:100%;max-height:65vh;object-fit:contain;display:block;transition:var(--transition)}.main-image:hover{transform:none}.photo-info{display:flex;flex-direction:column;gap:1rem;padding:0 .8rem}.author-info{display:flex;align-items:center;gap:.8rem}.author-info .avatar-container{position:relative;display:inline-block;border-radius:50%}.author-info .avatar-frame{width:40px;height:40px;border-radius:50%;overflow:hidden}.author-info .author-avatar{width:100%;height:100%;object-fit:cover;border-radius:50%}.author-info .avatar-container.online::after{content:'';position:absolute;bottom:1px;right:1px;width:10px;height:10px;background:#4caf50;border-radius:50%;border:1px solid var(--text-primary);z-index:10}.author-info .avatar-container.offline::after{content:'';position:absolute;bottom:1px;right:1px;width:10px;height:10px;background:#ccc;border-radius:50%;border:1px solid var(--text-primary);z-index:10}.author-info a{color:var(--text-primary);text-decoration:none;font-size:1rem;font-weight:600;transition:var(--transition)}.author-info a:hover{color:var(--primary)}.user-badges{display:flex;flex-wrap:wrap;gap:8px;margin-top:8px}.user-badge{background:var(--primary);color:var(--bg-dark);border-radius:16px;padding:.4rem .8rem;font-size:.75rem;transition:var(--transition);font-weight:600;box-shadow:0 2px 6px rgba(255,158,68,.3);max-width:100px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:inline-block;border:1px solid rgba(255,255,255,.2)}.no-badge{color:var(--text-secondary);font-size:.8rem;font-style:italic;margin-top:8px}.photo-caption{color:var(--text-primary);font-size:1rem;line-height:1.5;padding:.4rem 0}.photo-meta{display:flex;align-items:center;gap:.8rem;flex-wrap:wrap;position:relative;z-index:100}.like-button,.favorite-button,.share-button,.download-button,.delete-button{background:var(--bg-elements-light);border:none;border-radius:18px;padding:5px 10px;display:flex;align-items:center;gap:4px;cursor:pointer;color:var(--text-primary);font-size:.85rem;font-weight:500;backdrop-filter:blur(5px);transition:var(--transition)}.like-button.liked{background:var(--primary);color:var(--bg-dark)}.like-button.liked .heart-icon{color:#e0245e}.favorite-button.favorited{background:var(--primary);color:var(--bg-dark)}.like-button:hover,.favorite-button:hover,.share-button:hover,.download-button:hover,.delete-button:hover{background:var(--primary-glow);transform:translateY(-2px);box-shadow:0 3px 10px rgba(255,158,68,.25)}.heart-icon,.favorite-icon,.share-icon,.download-icon,.delete-icon{font-size:.95rem}.photo-date{color:var(--text-secondary);font-size:.9rem;animation:fadeIn .56s cubic-bezier(.22,1,.36,1) forwards;animation-delay:.12s;text-align:right;margin-left:auto}.photo-navigation{display:flex;justify-content:center;gap:.8rem;margin-top:1rem;position:relative;z-index:50}.nav-button{background:var(--primary);border:none;border-radius:18px;padding:.5rem 1.2rem;cursor:pointer;color:var(--bg-dark);font-size:.85rem;font-weight:600;transition:var(--transition);box-shadow:0 3px 10px rgba(0,0,0,.2)}.nav-button:hover{background:#ffae5d;transform:translateY(-2px);box-shadow:0 5px 12px rgba(255,158,68,.25)}.download-modal{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.7);z-index:1000;align-items:center;justify-content:center;opacity:0;transition:opacity .3s ease}.download-modal.show{display:flex;opacity:1}.download-modal__content{background:var(--bg-elements);border-radius:12px;padding:1.5rem;max-width:400px;width:90%;box-shadow:0 8px 30px rgba(0,0,0,.35);animation:fadeIn .56s cubic-bezier(.22,1,.36,1) forwards;position:relative}.download-modal__title{font-size:1.2rem;color:var(--text-primary);font-weight:600;margin-bottom:1rem;text-align:center}.download-modal__options{display:flex;flex-direction:column;gap:.5rem;margin-bottom:1rem}.download-modal__option{display:flex;align-items:center;justify-content:space-between;padding:.8rem 1rem;color:var(--text-primary);text-decoration:none;font-size:.9rem;font-weight:500;background:var(--bg-elements-light);border-radius:8px;transition:var(--transition)}.download-modal__option:hover:not(.disabled) {background:var(--primary-glow);color:var(--primary)}.download-modal__option.disabled{color:var(--text-secondary);cursor:not-allowed;opacity:.6}.download-modal__option .unavailable{color:#f44;font-size:.8rem;font-weight:400}.download-modal__close{background:var(--primary);border:none;border-radius:18px;padding:.6rem 1.5rem;cursor:pointer;color:var(--bg-dark);font-size:.9rem;font-weight:600;transition:var(--transition);box-shadow:0 3px 10px rgba(0,0,0,.2);width:100%}.download-modal__close:hover{background:#ffae5d;transform:translateY(-2px);box-shadow:0 5px 12px rgba(255,158,68,.25)}.photo-comments{max-width:100%;padding:1.5rem;background:var(--bg-elements);border-radius:12px;box-shadow:0 10px 28px rgba(0,0,0,.22);animation:fadeIn .56s cubic-bezier(.22,1,.36,1) forwards}.photo-comments__title{margin:0 0 1rem;color:var(--text-primary);font-size:1.35rem;font-weight:650;line-height:1.25}.photo-comments__count{color:var(--text-secondary);font-size:.9em;font-weight:500}.photo-comments__form{margin-bottom:1rem;padding:.85rem;background:rgba(255,255,255,.025);border:1px solid rgba(255,255,255,.08);border-radius:10px}.photo-comments__textarea,.photo-comment__edit-textarea{display:block;width:100%;min-height:84px;padding:.7rem .8rem;border:1px solid rgba(255,255,255,.14);border-radius:8px;outline:none;background:var(--bg-elements-light);color:var(--text-primary);font:inherit;font-size:.9rem;line-height:1.5;resize:vertical;transition:border-color 180ms cubic-bezier(.22,1,.36,1) , box-shadow 180ms cubic-bezier(.22,1,.36,1)}.photo-comments__textarea:focus,.photo-comment__edit-textarea:focus{border-color:var(--primary);box-shadow:0 0 0 3px var(--primary-glow)}.photo-comments__form-controls,.photo-comment__edit-controls{display:flex;align-items:center;gap:.55rem;margin-top:.65rem}.photo-comments__submit,.photo-comment__save{min-height:36px;padding:.45rem 1.05rem;border:0;border-radius:8px;background:var(--primary);color:var(--bg-dark);cursor:pointer;font:inherit;font-size:.86rem;font-weight:700;transition:background-color 180ms cubic-bezier(.22,1,.36,1) , transform 180ms cubic-bezier(.22,1,.36,1)}.photo-comments__submit:hover,.photo-comment__save:hover{background:#ffae5d;transform:translateY(-1px)}.photo-comments__submit:disabled,.photo-comment__save:disabled,.photo-comment__action:disabled{cursor:wait;opacity:.6}.photo-comments__message{min-height:1.25rem;margin-top:.45rem;color:var(--text-secondary);font-size:.8rem}.photo-comment__edit-status{margin-top:.35rem;color:#ff9a9a;font-size:.8rem}.photo-comment__edit-status:empty{display:none}.photo-comments__message.is-success{color:#9dce9f}.photo-comments__message.is-error{color:#ff9a9a}.photo-comments__notice{margin:.75rem 0 1rem;padding:.75rem .85rem;border-radius:8px;background:rgba(255,255,255,.035);color:var(--text-secondary);font-size:.88rem;text-align:center}.photo-comments__notice a,.photo-comment__author{color:var(--text-primary);text-decoration:none}.photo-comments__notice a:hover,.photo-comment__author:hover{color:var(--primary)}.photo-comments__list{display:flex;flex-direction:column}.photo-comment{display:grid;grid-template-columns:42px minmax(0,1fr);gap:.8rem;padding:.95rem 0;border-top:1px solid rgba(255,255,255,.08);transition:opacity 180ms cubic-bezier(.22,1,.36,1) , transform 180ms cubic-bezier(.22,1,.36,1) , background-color 360ms cubic-bezier(.22,1,.36,1)}.photo-comment:first-child{border-top:0}.photo-comment__avatar-frame.avatar-frame{width:42px;height:42px;min-width:42px;border-radius:50%}.photo-comment__avatar-link{display:block;width:100%;height:100%;border-radius:inherit;overflow:hidden}.photo-comment__avatar{display:block;width:100%;height:100%;border-radius:50%;object-fit:cover}.photo-comment__body{min-width:0}.photo-comment__header{display:flex;align-items:baseline;justify-content:space-between;flex-wrap:wrap;gap:.25rem .65rem;position:static;top:auto;z-index:auto;width:auto;min-width:0;min-height:0;margin:0 0 .25rem;padding:0;border:0;border-radius:0;background:transparent;box-shadow:none}.photo-comment__author{overflow-wrap:anywhere;font-size:.92rem;font-weight:700;line-height:1.35}.photo-comment__date{color:var(--text-secondary);font-size:.76rem;white-space:nowrap}.photo-comment__text{margin:0;color:var(--text-primary);overflow-wrap:anywhere;word-break:normal;font-size:.9rem;line-height:1.55}.photo-comment__actions{display:flex;align-items:center;gap:.35rem;margin-top:.35rem}.photo-comment__action,.photo-comment__cancel{min-height:28px;padding:.15rem .1rem;border:0;background:transparent;color:var(--text-secondary);cursor:pointer;font:inherit;font-size:.78rem;line-height:1.2;transition:color 180ms cubic-bezier(.22,1,.36,1)}.photo-comment__action:hover,.photo-comment__cancel:hover{color:var(--primary)}.photo-comment__action--delete:hover{color:#ff9a9a}.photo-comment__action-separator{color:#666;font-size:.8rem}.photo-comment__editor{margin-top:.55rem}.photo-comment__editor[hidden]{display:none}.photo-comment__edit-textarea{min-height:76px}.photo-comment.is-editing .photo-comment__text,.photo-comment.is-editing .photo-comment__actions{display:none}.photo-comments__empty{padding:1.2rem .9rem;border-top:1px solid rgba(255,255,255,.08);color:var(--text-secondary);font-size:.88rem;text-align:center}.photo-comments__sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.photo-comment.is-new,.photo-comment.is-updated{animation:photo-comment-arrive 420ms cubic-bezier(.22,1,.36,1)}.photo-comment.is-removing{opacity:0;transform:translateY(-4px)}@keyframes photo-comment-arrive {
    from {
        opacity: 0;
        transform: translateY(-6px);
        background: var(--primary-glow);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        background: transparent;
    }
}.related-posts-section{max-width:100%;padding:1.5rem;background:var(--bg-elements);border-radius:12px;box-shadow:0 8px 30px rgba(0,0,0,.35);animation:fadeIn .56s cubic-bezier(.22,1,.36,1) forwards;margin-top:1.5rem}.related-posts__title{font-size:1.4rem;color:var(--text-primary);margin-bottom:1rem;font-weight:600}.related-posts{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}.related-post{aspect-ratio:1;border-radius:8px;overflow:hidden;position:relative;background-color:var(--bg-elements-light);box-shadow:0 5px 15px rgba(0,0,0,.2);transition:var(--transition)}.related-post:hover{transform:translateY(-5px);box-shadow:0 8px 25px rgba(255,158,68,.2)}.related-post:hover .post-image{transform:scale(1.05)}.post-image{width:100%;height:100%;background-size:cover;background-position:center;transition:var(--transition)}.subscribers-only-placeholder{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;text-align:center;background:var(--bg-elements-light);border-radius:8px}.subscribers-only-placeholder i{font-size:2rem;color:#ffd700;margin-bottom:.5rem}.subscribers-only-placeholder p{font-size:.9rem;color:var(--text-primary)}.subscribers-only{position:absolute;top:10px;left:10px;color:#ffd700;font-size:1rem;background:rgba(0,0,0,.7);padding:.2rem;border-radius:50%}.post-author{position:absolute;bottom:3px;right:10px}.post-author .author-avatar{width:40px;height:40px;border-radius:50%;border:2px solid var(--bg-dark);object-fit:cover}.related-posts__empty{color:var(--text-secondary);font-size:.9rem;text-align:center;padding:1rem;background:var(--bg-elements-light);border-radius:8px}footer{background-color:var(--bg-elements);padding:2rem 5%;margin-top:4rem;text-align:center}.copyright{color:var(--text-secondary);font-size:.9rem}@media (max-width:992px){.main{padding:1.5rem .8rem}.photo-viewer{padding:1rem}.image-container{max-height:60vh}.photo-comments{padding:1rem}.related-posts-section{padding:1rem;margin-top:1rem}.related-posts{grid-template-columns:repeat(2,1fr)}}@media (max-width:768px){.nav-links a:not(:last-child) {display:none}.photo-info{padding:0 .5rem}.author-info .avatar-frame{width:36px;height:36px}.author-info .avatar-container.online::after,.author-info .avatar-container.offline::after{width:8px;height:8px;bottom:1px;right:1px}.user-badges{gap:6px;margin-top:6px}.user-badge{padding:3px 6px;font-size:.75rem}.no-badge{font-size:.75rem;margin-top:6px}.author-info a{font-size:.9rem}.photo-meta{gap:.6rem;justify-content:flex-start}.like-button,.favorite-button,.share-button,.download-button,.delete-button{padding:4px 8px;font-size:.8rem}.heart-icon,.favorite-icon,.share-icon,.download-icon,.delete-icon{font-size:.9rem}.photo-date{font-size:.85rem;text-align:center;margin-left:0;width:100%}.photo-navigation{flex-direction:row;gap:.6rem}.nav-button{padding:.4rem 1rem;font-size:.8rem}.photo-comments__textarea{min-height:90px;font-size:.85rem}.photo-comment__text{font-size:.85rem}.photo-comment__date{font-size:.75rem}.photo-comment__avatar-frame.avatar-frame{width:36px;height:36px;min-width:36px}.photo-comment{grid-template-columns:36px minmax(0,1fr)}.related-posts{grid-template-columns:repeat(2,1fr)}.related-post .post-author .author-avatar{width:36px;height:36px}.download-modal__content{padding:1rem;max-width:350px}.download-modal__title{font-size:1.1rem}.download-modal__option{font-size:.85rem;padding:.6rem .8rem}.download-modal__option .unavailable{font-size:.75rem}.download-modal__close{font-size:.85rem;padding:.5rem 1rem}}@media (max-width:576px){.main{padding:1rem .5rem}.photo-viewer{padding:.8rem;border-radius:8px}.image-container{max-height:55vh}.photo-comments{padding:.8rem}.related-posts-section{padding:.8rem;margin-top:.8rem}.related-posts__title{font-size:1.2rem}.related-posts{grid-template-columns:1fr}.related-post .post-author .author-avatar{width:32px;height:32px}.subscribers-only-placeholder i{font-size:1.8rem}.subscribers-only-placeholder p{font-size:.8rem}.subscribers-only{font-size:.9rem}.author-info .avatar-frame{width:32px;height:32px}.author-info .avatar-container.online::after,.author-info .avatar-container.offline::after{width:6px;height:6px}.user-badges{gap:5px;margin-top:5px}.user-badge{padding:2px 5px;font-size:.7rem}.no-badge{font-size:.7rem;margin-top:5px}.author-info a{font-size:.85rem}.photo-caption{font-size:.9rem}.photo-date{font-size:.8rem}.photo-comments__title{font-size:1.2rem}.photo-comment__avatar-frame.avatar-frame{width:32px;height:32px;min-width:32px}.photo-comment{grid-template-columns:32px minmax(0,1fr);gap:.65rem}.like-button,.favorite-button,.share-button,.download-button,.delete-button{padding:3px 6px;font-size:.75rem}.heart-icon,.favorite-icon,.share-icon,.download-icon,.delete-icon{font-size:.85rem}.nav-button{padding:.3rem .8rem;font-size:.75rem}.download-modal__content{padding:.8rem;max-width:300px}.download-modal__title{font-size:1rem}.download-modal__option{font-size:.8rem;padding:.5rem .6rem}.download-modal__option .unavailable{font-size:.7rem}.download-modal__close{font-size:.8rem;padding:.4rem .8rem}}@media (max-width:430px){.photo-comments{padding:.75rem;border-radius:10px}.photo-comments__form{padding:.7rem}.photo-comments__textarea,.photo-comment__edit-textarea{min-height:78px;padding:.65rem .7rem;font-size:16px}.photo-comment{padding:.85rem 0}.photo-comment__header{display:grid;gap:.1rem}.photo-comment__date{white-space:normal}.photo-comment__action,.photo-comment__cancel{min-height:36px}.photo-comments__submit,.photo-comment__save{min-height:40px}}body.view-record-page .photo-viewer,body.view-record-page .photo-date,body.view-record-page .photo-comments,body.view-record-page .related-posts-section,body.view-record-page .download-modal__content{animation-duration:.56s;animation-timing-function:cubic-bezier(.22,1,.36,1)}body.view-record-page .main-image-link{display:block;border-radius:inherit;cursor:zoom-in}body.view-record-page .main-image{height:auto;transition:none}body.view-record-page .main-image:hover{transform:none}body.view-record-page .author-info,body.view-record-page .user-badges{min-width:0}body.view-record-page .author-info{flex-wrap:wrap}body.view-record-page .user-badge{max-width:min(100px,100%)}body.view-record-page .photo-meta{gap:.55rem}body.view-record-page .photo-delete-form{display:flex;margin:0}body.view-record-page .like-button,body.view-record-page .favorite-button,body.view-record-page .share-button,body.view-record-page .download-button,body.view-record-page .delete-button{min-height:42px;padding:.48rem .78rem;display:inline-flex;justify-content:center;gap:.38rem;flex:0 0 auto;white-space:nowrap;line-height:1.1;transition:color .22s cubic-bezier(.22,1,.36,1) , background-color .22s cubic-bezier(.22,1,.36,1) , border-color .22s cubic-bezier(.22,1,.36,1) , box-shadow .22s cubic-bezier(.22,1,.36,1) , transform .22s cubic-bezier(.22,1,.36,1) , opacity .18s cubic-bezier(.22,1,.36,1)}body.view-record-page .like-button:active,body.view-record-page .favorite-button:active,body.view-record-page .share-button:active,body.view-record-page .download-button:active,body.view-record-page .delete-button:active{animation:none;transform:translateY(0)}body.view-record-page .like-button.is-loading,body.view-record-page .favorite-button.is-loading,body.view-record-page .share-button.is-loading{opacity:.64;cursor:wait}body.view-record-page .like-button.is-loading:hover,body.view-record-page .favorite-button.is-loading:hover,body.view-record-page .share-button.is-loading:hover{transform:none;box-shadow:none}body.view-record-page .delete-button{color:#d8b8b8;background:rgba(255,90,90,.045);border:1px solid rgba(255,107,107,.32);box-shadow:none}body.view-record-page .delete-button:hover{color:#ff8585;background:rgba(255,90,90,.11);border-color:rgba(255,107,107,.7);box-shadow:0 3px 10px rgba(125,20,20,.18);transform:translateY(-1px)}body.view-record-page .delete-button:focus-visible{color:#ff8585;background:rgba(255,90,90,.11);border-color:rgba(255,107,107,.7)}body.view-record-page .photo-actions-status{flex:1 0 100%;color:#ffb36b;font-size:.82rem;line-height:1.35}body.view-record-page .photo-navigation{margin-top:1rem}body.view-record-page .nav-button{min-height:44px;padding:.62rem 1.2rem;display:inline-flex;align-items:center;justify-content:center;text-decoration:none;line-height:1.1;transition:color .22s cubic-bezier(.22,1,.36,1) , background-color .22s cubic-bezier(.22,1,.36,1) , box-shadow .22s cubic-bezier(.22,1,.36,1) , transform .22s cubic-bezier(.22,1,.36,1)}body.view-record-page .photo-comments{margin-top:1.15rem}body.view-record-page .download-modal{transition:opacity .22s cubic-bezier(.22,1,.36,1)}body.view-record-page .download-modal__option.disabled{pointer-events:none}body.view-record-page .like-button:focus-visible,body.view-record-page .favorite-button:focus-visible,body.view-record-page .share-button:focus-visible,body.view-record-page .download-button:focus-visible,body.view-record-page .delete-button:focus-visible,body.view-record-page .nav-button:focus-visible,body.view-record-page .main-image-link:focus-visible,body.view-record-page .download-modal__option:focus-visible,body.view-record-page .download-modal__close:focus-visible,body.view-record-page .password-form input:focus-visible,body.view-record-page .password-form button:focus-visible{outline:3px solid var(--primary);outline-offset:3px;box-shadow:0 0 0 3px rgba(18,18,18,.88)}body.view-record-page .main-image-link:focus-visible{outline-offset:-4px;box-shadow:inset 0 0 0 3px rgba(18,18,18,.88)}html:has(body.view-record-page #picnic-cookie-consent:not([hidden])) {scroll-padding-bottom: calc(12rem + env(safe-area-inset-bottom, 0px))}body.view-record-page:has(#picnic-cookie-consent:not([hidden])) .main {padding-bottom: calc(12rem + env(safe-area-inset-bottom, 0px))}@media (max-width:992px){body.view-record-page .main-image{max-height:60vh}}@media (max-width:768px){body.view-record-page .main-image{max-height:60vh}body.view-record-page .like-button,body.view-record-page .favorite-button,body.view-record-page .share-button,body.view-record-page .download-button,body.view-record-page .delete-button{min-height:42px;padding:.48rem .68rem;font-size:.78rem}body.view-record-page .nav-button{min-height:44px;padding:.62rem 1rem}}@media (max-width:576px){body.view-record-page .main-image{max-height:55vh}}@media (max-width:520px){html:has(body.view-record-page #picnic-cookie-consent:not([hidden])) {scroll-padding-bottom: calc(19rem + env(safe-area-inset-bottom, 0px))}body.view-record-page:has(#picnic-cookie-consent:not([hidden])) .main {padding-bottom: calc(19rem + env(safe-area-inset-bottom, 0px))}}@media (max-width:430px){body.view-record-page .photo-meta{gap:.5rem}body.view-record-page .photo-navigation{width:100%}body.view-record-page .nav-button{flex:1 1 8rem;max-width:12rem;min-height:44px;padding:.62rem .8rem;font-size:.78rem}body.view-record-page .user-badges{gap:4px}body.view-record-page .user-badge{max-width:100%;overflow-wrap:anywhere;text-overflow:clip;white-space:normal}}@media (prefers-reduced-motion:reduce){html:has(body.view-record-page) {scroll-behavior:auto}body.view-record-page .animate,body.view-record-page .photo-viewer,body.view-record-page .photo-date,body.view-record-page .photo-comments,body.view-record-page .photo-comment,body.view-record-page .photo-comment.is-new,body.view-record-page .photo-comment.is-updated,body.view-record-page .related-posts-section,body.view-record-page .download-modal__content,body.view-record-page .photo-comments__submit,body.view-record-page .photo-comment__save{animation:none!important;opacity:1;transform:none!important}body.view-record-page .main-image,body.view-record-page .like-button,body.view-record-page .favorite-button,body.view-record-page .share-button,body.view-record-page .download-button,body.view-record-page .delete-button,body.view-record-page .nav-button,body.view-record-page .download-modal,body.view-record-page .download-modal__option,body.view-record-page .download-modal__close,body.view-record-page .related-post,body.view-record-page .post-image,body.view-record-page .photo-comment{transition:none!important}body.view-record-page .like-button:hover,body.view-record-page .favorite-button:hover,body.view-record-page .share-button:hover,body.view-record-page .download-button:hover,body.view-record-page .delete-button:hover,body.view-record-page .nav-button:hover,body.view-record-page .related-post:hover,body.view-record-page .related-post:hover .post-image{transform:none!important}}