/* =========================================================
   melegek.hu - profile.css
   Profil, keresés, képek, privát galéria, verified profil és felhasználói interakciók.
   Forrás: korábbi /assets/css/style.css
   Refaktor típusa: moduláris bontás redesign nélkül
   ========================================================= */

.profile-card {
    max-width: 860px;
    margin: 0 auto;
}

.profile-grid {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.profile-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.03);
}

.profile-label {
    color: var(--muted);
    font-weight: 700;
}

.profile-value {
    color: var(--text);
}

.profile-bio {
    line-height: 1.7;
    min-height: 40px;
}

.requests-list {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.request-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    background: rgba(255,255,255,.03);
}

.request-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.request-meta {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: .95rem;
}

.request-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.request-actions form {
    margin: 0;
}

.user-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.user-photo-card {
    position: relative;
}

.user-photo-thumb {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
}

.locked-thumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(194,24,91,.18), rgba(123,31,162,.18)),
        rgba(255,255,255,.04);
}

.locked-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,.04);
}

.locked-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 1;
    text-align: center;
    padding: 12px;
}

.locked-icon {
    font-size: 1.4rem;
}

.locked-text {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text);
}

.photo-card-profile {
    border-color: rgba(194,24,91,.35);
    box-shadow: 0 0 0 1px rgba(194,24,91,.18), var(--shadow);
}

.photo-lock {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 16px;
    font-weight: 700;
    color: var(--text);
    backdrop-filter: blur(8px);
}

.location-group {
    position: relative;
    position: relative;
}

.location-results {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 30;
    background: rgba(14, 18, 28, 0.98);
    border: 1px solid rgba(115, 140, 255, 0.25);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    backdrop-filter: blur(8px);
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 40;
    background: rgba(14, 18, 28, 0.98);
    border: 1px solid rgba(115, 140, 255, 0.25);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.location-result-item {
    display: block;
    width: 100%;
    padding: 12px 14px;
    background: transparent;
    border: 0;
    color: #eaf0ff;
    text-align: left;
    cursor: pointer;
    font: inherit;
    display: block;
    width: 100%;
    padding: 12px 14px;
    background: transparent;
    border: 0;
    color: #eaf0ff;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

.location-result-item:hover {
    background: rgba(115, 140, 255, 0.12);
    background: rgba(115, 140, 255, 0.12);
}

.profile-layout {
    display: grid;
    gap: 20px;
}

.profile-main-card {
    padding: 22px;
    border-radius: 18px;
    background: rgba(16, 22, 35, 0.92);
    border: 1px solid rgba(115, 140, 255, 0.16);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.profile-meta {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.profile-meta-item {
    color: #eaf0ff;
}

.profile-about h3 {
    margin-top: 0;
}

.profile-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 14px;
}

.photo-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(7, 11, 20, 0.9);
    border: 1px solid rgba(115, 140, 255, 0.12);
    min-height: 210px;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.photo-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
}

.photo-locked {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(194,24,91,.16), rgba(123,31,162,.16)),
        rgba(255,255,255,.04);
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: rgba(234, 240, 255, 0.8);
    padding: 16px;
    background: linear-gradient(135deg, rgba(35, 44, 68, 0.95), rgba(19, 24, 39, 0.95));
}

.photo-lock-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.photo-lock-text {
    font-size: 14px;
}

.access-request-box {
    margin-top: 18px;
}

.blocked-list {
    display: grid;
    gap: 14px;
}

.blocked-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(7, 11, 20, 0.72);
    border: 1px solid rgba(115, 140, 255, 0.12);
}

.blocked-item-main {
    flex: 1;
    min-width: 0;
}

.blocked-item-name {
    font-size: 18px;
    font-weight: 700;
    color: #eaf0ff;
    margin-bottom: 4px;
}

.blocked-item-username {
    color: rgba(234, 240, 255, 0.72);
    margin-bottom: 8px;
}

.blocked-item-meta {
    color: rgba(234, 240, 255, 0.84);
    font-size: 14px;
    margin-top: 4px;
}

.blocked-item-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 180px;
}

.blocked-item-actions form {
    margin: 0;
}

.profile-section {
    margin-bottom: 24px;
}

.autocomplete-results {
    margin-top: 8px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    background: rgba(15, 15, 22, 0.96);
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0,0,0,0.28);
    display: none;
}

.autocomplete-results.is-open {
    display: block;
}

.autocomplete-item {
    padding: 10px 14px;
    cursor: pointer;
    color: #e8e8ef;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.15s ease, color 0.15s ease;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: linear-gradient(135deg, rgba(255, 0, 153, 0.12), rgba(0, 174, 255, 0.12));
    color: #fff;
}

.search-page {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.search-hero,
.search-filter-card,
.empty-results-card {
    padding: 24px;
}

.search-subtitle {
    margin-top: 8px;
    color: rgba(255,255,255,0.72);
    max-width: 760px;
}

.search-actions {
    justify-content: flex-end;
}

.results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.results-header h2 {
    margin: 0;
}

.results-count {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 0, 153, 0.16), rgba(0, 174, 255, 0.16));
    border: 1px solid rgba(255,255,255,0.10);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.search-profile-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03)),
        rgba(14, 16, 24, 0.96);
    box-shadow: 0 14px 38px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.04);
    transition: transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.search-profile-card:hover {
    transform: translateY(-4px);
    border-color: rgba(140, 98, 255, 0.22);
    box-shadow: 0 20px 44px rgba(0,0,0,0.34),
        0 0 24px rgba(140, 98, 255, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.search-profile-photo-wrap {
    position: relative;
    height: 320px;
    background: rgba(255,255,255,0.03);
}

.search-profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.search-profile-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.60);
    font-weight: 700;
    letter-spacing: 0.2px;
    background: radial-gradient(circle at top left, rgba(255,0,153,0.12), transparent 40%),
        radial-gradient(circle at bottom right, rgba(0,174,255,0.12), transparent 42%),
        rgba(17, 18, 27, 0.96);
}

.search-profile-body {
    padding: 20px;
}

.search-profile-top {
    margin-bottom: 12px;
}

.search-profile-name {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.15;
    color: #fff;
}

.search-profile-location {
    color: rgba(255,255,255,0.70);
    font-size: 14px;
}

.search-profile-county {
    color: rgba(255,255,255,0.50);
}

.search-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.profile-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #e8eaf7;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.profile-tag-primary {
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 0, 153, 0.28), rgba(0, 174, 255, 0.22));
    border-color: rgba(255,255,255,0.12);
}

.search-profile-about {
    margin: 0 0 18px;
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
    min-height: 74px;
}

.search-profile-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.form-group select,
.search-form select,
.profile-edit-form select,
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    min-height: 46px;
    padding: 10px 42px 10px 14px;
    border-radius: 12px;
    color: #f3f5ff;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
        rgba(18, 20, 30, 0.96);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04),
        0 8px 20px rgba(0,0,0,0.20);
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.form-group select:hover,
.search-form select:hover,
.profile-edit-form select:hover,
select:hover {
    border-color: rgba(255,255,255,0.16);
}

.form-group select:focus,
.search-form select:focus,
.profile-edit-form select:focus,
select:focus {
    border-color: rgba(132, 182, 255, 0.42);
    box-shadow: 0 0 0 3px rgba(86, 145, 255, 0.12),
        0 10px 24px rgba(0,0,0,0.24);
}

.form-group select option,
.search-form select option,
.profile-edit-form select option,
select option {
    color: #f3f5ff;
    background: #161a25;
}

.flirt-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.flirt-status {
    margin-top: 10px;
    font-weight: 700;
}

.flirt-status.accepted {
    color: #4ade80;
}

.flirt-status.rejected {
    color: #f87171;
}

.flirt-page {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.flirt-results-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.search-profile-photo-link {
    display: block;
    text-decoration: none;
}

.profile-name-link {
    color: #fff;
    text-decoration: none;
}

.profile-name-link:hover {
    color: #fff;
    text-decoration: underline;
}

.messages-page {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.messages-hero h1 {
    margin: 0 0 8px;
}

.messages-subtitle {
    margin: 0;
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
}

.messages-empty-card {
    text-align: center;
    padding: 30px 24px;
}

.messages-empty-card h2 {
    margin: 0 0 10px;
}

.messages-empty-card p {
    margin: 0 0 18px;
    color: rgba(255,255,255,0.74);
}

.messages-list-item:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.06);
    border-color: rgba(0, 140, 255, 0.28);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.messages-list-avatar {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(135deg, rgba(20,132,255,0.95), rgba(94,92,230,0.95));
    box-shadow: 0 10px 24px rgba(20,132,255,0.22);
}

.messages-list-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    display: flex;
    align-items: center;
    gap: 14px;
}

.messages-list-body {
    min-width: 0;
    flex: 1;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.messages-list-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.messages-list-name {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.messages-list-time {
    font-size: 12px;
    color: rgba(255,255,255,0.58);
    white-space: nowrap;
    color: rgba(255,255,255,0.62);
    font-size: 12px;
    white-space: nowrap;
}

.messages-list-preview {
    color: rgba(255,255,255,0.76);
    line-height: 1.5;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.45;
}

.messages-list-item * {
    text-decoration: none;
}

.messages-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ===== FLIRTS ===== */


.flirt-page {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flirt-hero h1 {
    margin: 0 0 8px;
}

.flirt-subtitle {
    margin: 0;
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
}

.flirt-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.flirt-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.flirt-section-head h2 {
    margin: 0;
}

.flirt-count-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.flirt-locked-card {
    text-align: center;
    padding: 34px 24px;
}

.flirt-locked-count {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    color: #fff;
}

.flirt-locked-card h2 {
    margin: 0 0 10px;
}

.flirt-locked-text {
    margin: 0 0 20px;
    color: rgba(255,255,255,0.76);
}

.flirt-empty-card {
    text-align: center;
}

.flirt-empty-card h3 {
    margin: 0 0 10px;
}

.flirt-empty-card p {
    margin: 0;
    color: rgba(255,255,255,0.74);
}

.flirt-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.flirt-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

.flirt-card-main {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.flirt-card-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
}

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

.flirt-card-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(135deg, #1484ff, #5e5ce6);
}

.flirt-card-body {
    flex: 1;
    min-width: 0;
}

.flirt-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.flirt-card-name {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.flirt-card-time {
    font-size: 12px;
    color: rgba(255,255,255,0.62);
    white-space: nowrap;
}

.flirt-card-status {
    font-size: 14px;
    color: rgba(255,255,255,0.76);
}

.flirt-card-status span {
    color: #fff;
    font-weight: 700;
}

.flirt-card-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.flirt-card-actions form {
    margin: 0;
}

/* ===== MESSAGES UNREAD HIGHLIGHT ===== */


.messages-list-item.is-unread {
    border-color: rgba(20,132,255,0.30);
    background: linear-gradient(180deg, rgba(20,132,255,0.08), rgba(255,255,255,0.04));
    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.14),
        0 0 0 1px rgba(20,132,255,0.08);
}

.messages-list-avatar-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.messages-unread-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #28a8ff;
    border: 2px solid rgba(11,11,18,0.95);
    box-shadow: 0 0 0 4px rgba(40,168,255,0.12);
}

.messages-list-name.is-unread {
    color: #ffffff;
    font-weight: 800;
}

.messages-list-preview.is-unread {
    color: rgba(255,255,255,0.92);
}

.landing-profile-card {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.landing-profile-photo-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    background: linear-gradient(180deg, #e2e8f0, #cbd5e1);
    overflow: hidden;
}

.landing-profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landing-profile-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-weight: 700;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.landing-profile-age {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}

.landing-profile-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.landing-profile-name {
    margin: 0;
    font-size: 1.08rem;
    color: #0f172a;
}

.landing-profile-location {
    color: #64748b;
    font-size: 0.95rem;
}

.landing-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.landing-profile-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 0.84rem;
    font-weight: 600;
}

.landing-profile-about {
    margin: 0;
    color: #334155;
    line-height: 1.65;
    font-size: 0.95rem;
}

.landing-profile-about-empty {
    color: #94a3b8;
}

.landing-profile-actions {
    margin-top: auto;
    padding-top: 4px;
}

.landing-profile-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.landing-profile-photo-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    background: linear-gradient(180deg, #e2e8f0, #cbd5e1);
    overflow: hidden;
}

.landing-profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landing-profile-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-weight: 700;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.landing-profile-age {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}

.landing-profile-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.landing-profile-name {
    margin: 0;
    font-size: 1.08rem;
    color: #0f172a;
}

.landing-profile-location {
    color: #64748b;
    font-size: 0.95rem;
}

.landing-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.landing-profile-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 0.84rem;
    font-weight: 600;
}

.landing-profile-about {
    margin: 0;
    color: #334155;
    line-height: 1.65;
    font-size: 0.95rem;
}

.landing-profile-about-empty {
    color: #94a3b8;
}

.landing-profile-actions {
    margin-top: auto;
    padding-top: 4px;
}

.profile-hero-card {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr;
    gap: 24px;
    padding: 28px;
}

.profile-hero-main {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.profile-avatar-wrap {
    flex-shrink: 0;
}

.profile-avatar-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    box-shadow: 0 18px 36px rgba(139, 92, 246, 0.32);
}

.profile-hero-content {
    flex: 1;
}

.profile-hero-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.profile-hero-title-row h1 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.profile-hero-location {
    color: #aab3d5;
    margin-bottom: 14px;
    font-size: 1rem;
}

.profile-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.profile-tag-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: #eef2ff;
    font-weight: 600;
    font-size: 0.92rem;
}

.profile-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.profile-hero-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-status-box {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.profile-status-label {
    display: block;
    color: #aab3d5;
    margin-bottom: 8px;
    font-size: 0.92rem;
}

.profile-status-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.profile-status-sub {
    display: block;
    margin-top: 8px;
    color: #aab3d5;
}

.profile-progress {
    margin-top: 12px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
}

.profile-progress-bar {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

.profile-bio-card,
.profile-info-card {
    padding: 26px;
}

.profile-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

.profile-section-head h2 {
    margin: 4px 0 0;
}

.profile-bio-text {
    line-height: 1.85;
    color: #eef2ff;
    font-size: 1rem;
}

.profile-empty-box {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px dashed rgba(255,255,255,0.14);
    color: #aab3d5;
}

.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.profile-data-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.profile-data-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.profile-label {
    color: #aab3d5;
    font-weight: 600;
    min-width: 140px;
}

.profile-value {
    color: #fff;
    text-align: right;
    flex: 1;
}

.profile-view-page {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-view-hero {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr;
    gap: 24px;
    padding: 28px;
}

.profile-view-hero-main {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.profile-view-avatar-wrap {
    flex-shrink: 0;
}

.profile-view-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
    box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}

.profile-view-avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    box-shadow: 0 18px 36px rgba(139, 92, 246, 0.32);
}

.profile-view-hero-content {
    flex: 1;
}

.profile-view-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.profile-view-title-row h1 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.profile-view-username {
    color: #aab3d5;
    margin-bottom: 8px;
}

.profile-view-location {
    color: #aab3d5;
    margin-bottom: 14px;
    font-size: 1rem;
}

.profile-view-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.profile-view-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.profile-view-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-side-box {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.profile-side-label {
    display: block;
    color: #aab3d5;
    margin-bottom: 8px;
    font-size: 0.92rem;
}

.profile-side-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.profile-view-bio-card,
.profile-access-card {
    padding: 26px;
}

.profile-view-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
}

.profile-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.profile-photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    min-height: 180px;
}

.profile-photo-img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
}

.profile-photo-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.82);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
}

.profile-photo-locked {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #aab3d5;
    gap: 8px;
    text-align: center;
    padding: 16px;
}

.profile-photo-lock-icon {
    font-size: 1.8rem;
}

.profile-photo-lock-text {
    font-weight: 700;
}

.profile-access-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.profile-view-grid {
    display: grid;
    gap: 24px;
}

.profile-view-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-profile-card-featured {
    position: relative;
    border: 1px solid rgba(139, 92, 246, 0.22);
    box-shadow: 0 18px 40px rgba(139, 92, 246, 0.12);
}

.landing-profile-card-featured {
    position: relative;
    border: 1px solid rgba(236, 72, 153, 0.22);
    box-shadow: 0 18px 40px rgba(236, 72, 153, 0.10);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.photo-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: 0.2s;
}

.photo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}

.photo-image img {
    width: 100%;
    border-radius: 10px;
}

.photo-meta {
    margin-top: 10px;
    font-size: 0.85rem;
    opacity: 0.85;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.photo-type {
    font-weight: 700;
    color: #7dd3fc;
}

.photo-delete-form {
    margin-top: 10px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.photo-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 14px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: 0.2s;

    height: 100%;
}

.photo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}

.photo-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
}

.photo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-meta {
    font-size: 0.85rem;
    opacity: 0.9;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.photo-type {
    font-weight: 700;
    color: #7dd3fc;
}

.photo-size,
.photo-date {
    color: rgba(255,255,255,0.72);
}

.photo-delete-form {
    margin-top: auto;
}

.photo-delete-form .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.landing-profile-photo-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
}

.landing-profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-profile-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 12px;
    border-radius: 16px;

    background: rgba(10, 15, 30, 0.85);
    border: 1px solid rgba(255,255,255,0.06);

    transition: 0.2s;
}

.landing-profile-card:hover {
    transform: translateY(-2px);
}

.landing-profile-actions .btn {
    width: 100%;
    padding: 10px;
    font-size: 13px;
}

.landing-profile-tag {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 999px;
}

.landing-profile-name {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.landing-profile-actions .btn {
    width: 100%;
    padding: 11px;
    font-size: 13px;

    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 10px;

    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    transition: 0.2s;
}

.landing-profile-actions .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.35);
}

.landing-profile-photo-wrap:hover img {
    transform: scale(1.05);
    transition: 0.3s;
}

.landing-profile-card {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
        rgba(10, 15, 30, 0.85);

    border: 1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(6px);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Név – fő fókusz */

.landing-profile-name {
    color: #ffffff;
}

/* Hely */

.landing-profile-location {
    color: rgba(255,255,255,0.65);
}

/* Bio */

.landing-profile-about {
    color: rgba(255,255,255,0.75);
}

/* Üres bio */

.landing-profile-about-empty {
    color: rgba(255,255,255,0.45);
}

.landing-profile-card {
    transition: 0.25s ease;
}

.landing-profile-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.45),
        0 0 0 1px rgba(59,130,246,0.15),
        0 0 20px rgba(59,130,246,0.15);
}

.landing-profile-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;

    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.06),
        transparent 40%
    );

    pointer-events: none;
}

.landing-profile-photo {
    transition: transform 0.4s ease;
}

.landing-profile-photo-wrap:hover .landing-profile-photo {
    transform: scale(1.06);
}

.landing-profile-photo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1),
        rgba(0,0,0,0.4)
    );

    pointer-events: none;
}

.landing-profile-card {
    position: relative;
}

.landing-profile-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;

    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.06),
        transparent 40%
    );

    pointer-events: none;
}

.landing-profile-meta-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0 14px;
}

.landing-profile-meta-top,
.landing-profile-meta-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.landing-profile-meta-bottom {
    min-height: 28px;
}

.landing-profile-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.78);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

/* ===== HOME PROFILE CARDS – FINAL ===== */


.home-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 30px;
}

.profile-card-modern {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(15,18,30,0.95);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    cursor: pointer;
}

.profile-card-modern:hover {
    transform: translateY(-6px);
    border-color: rgba(140, 98, 255, 0.3);
    box-shadow: 0 28px 60px rgba(0,0,0,0.45),
                0 0 30px rgba(140, 98, 255, 0.15);
}

.profile-card-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.profile-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,10,15,0.95) 10%,
        rgba(10,10,15,0.4) 50%,
        rgba(10,10,15,0.1) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    transition: background .3s ease;
}

.profile-card-modern:hover .profile-card-overlay {
    background: linear-gradient(
        to top,
        rgba(10,10,15,0.98),
        rgba(10,10,15,0.55),
        rgba(10,10,15,0.2)
    );
}

/* TEXT */

.profile-card-name {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.profile-card-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 10px;
}

/* CTA */

.profile-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all .25s ease;
}

.profile-card-modern:hover .profile-card-actions {
    opacity: 1;
    transform: translateY(0);
}

.profile-card-btn {
    flex: 1;
    text-align: center;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
}

.btn-flirt {
    background: linear-gradient(135deg, #ff3c88, #7b5cff);
    color: #fff;
}

.btn-flirt:hover {
    transform: scale(1.05);
}

/* BADGE */

.profile-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff3c88, #7b5cff);
    color: #fff;
    box-shadow: 0 0 16px rgba(255,60,136,0.4);
}

.search-subtitle {
    margin: 10px auto 0;
    max-width: 780px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    font-size: 15px;
}

/* ===== FEATURED BLOCK ===== */


.landing-section:first-of-type .results-grid,
.landing-section .results-grid {
    margin-top: 18px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.search-profile-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03)),
        rgba(14, 16, 24, 0.96);
    box-shadow:
        0 14px 38px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.04);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.search-profile-card:hover {
    transform: translateY(-4px);
    border-color: rgba(123, 92, 255, 0.24);
    box-shadow:
        0 20px 44px rgba(0,0,0,0.34),
        0 0 24px rgba(123, 92, 255, 0.10),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.search-profile-photo-link {
    display: block;
    text-decoration: none;
}

.search-profile-photo-wrap {
    position: relative;
    height: 320px;
    background: rgba(255,255,255,0.03);
}

.search-profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.search-profile-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.62);
    font-weight: 700;
    background:
        radial-gradient(circle at top left, rgba(74,144,226,0.10), transparent 42%),
        radial-gradient(circle at bottom right, rgba(123,92,255,0.10), transparent 40%),
        rgba(18, 20, 28, 0.96);
}

.search-profile-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

.search-profile-top {
    margin-bottom: 12px;
}

.search-profile-name {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.15;
    color: #fff;
}

.profile-name-link {
    color: #fff;
    text-decoration: none;
}

.profile-name-link:hover {
    color: #fff;
    text-decoration: underline;
}

.search-profile-location {
    color: rgba(255,255,255,0.70);
    font-size: 14px;
}

.search-profile-county {
    color: rgba(255,255,255,0.50);
}

.search-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.profile-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #e8eaf7;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.profile-tag-primary {
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.28), rgba(123, 92, 255, 0.24));
    border-color: rgba(255,255,255,0.12);
}

.search-profile-about {
    margin: 0 0 18px;
    min-height: 74px;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
    font-size: 15px;
}

.search-profile-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.featured-profile-card {
    border-radius: 26px;
    border: 1px solid rgba(123, 92, 255, 0.22);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
        rgba(13, 16, 26, 0.98);
    box-shadow:
        0 24px 56px rgba(0,0,0,0.34),
        0 0 28px rgba(123, 92, 255, 0.10),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.featured-profile-card:hover {
    transform: translateY(-6px);
    border-color: rgba(123, 92, 255, 0.34);
    box-shadow:
        0 30px 70px rgba(0,0,0,0.42),
        0 0 34px rgba(123, 92, 255, 0.16),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.featured-profile-card .search-profile-photo-wrap {
    height: 360px;
}

.featured-profile-card .search-profile-body {
    padding: 22px;
}

.featured-profile-card .search-profile-name {
    font-size: 24px;
}

.featured-profile-card .search-profile-about {
    min-height: 82px;
}

.featured-profile-card .profile-tag-primary {
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.30), rgba(123, 92, 255, 0.28));
    box-shadow: 0 0 18px rgba(123, 92, 255, 0.10);
}

.latest-profile-card {
    border-radius: 20px;
    min-width: 0;
}

.latest-profile-card .search-profile-photo-wrap {
    height: 220px;
}

.latest-profile-card .search-profile-body {
    padding: 16px;
}

.latest-profile-card .search-profile-name {
    font-size: 18px;
    margin-bottom: 4px;
}

.latest-profile-card .search-profile-location {
    font-size: 13px;
}

.latest-profile-card .search-profile-tags {
    gap: 6px;
    margin-bottom: 12px;
}

.latest-profile-card .profile-tag {
    min-height: 26px;
    padding: 0 10px;
    font-size: 11px;
}

.latest-profile-card .search-profile-about {
    min-height: 66px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.55;
}

.latest-profile-card .btn {
    width: 100%;
    min-height: 42px;
    font-size: 14px;
}

.featured-profile-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(123, 92, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
        rgba(13, 16, 26, 0.98);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.28),
        0 0 20px rgba(123, 92, 255, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.featured-profile-card .search-profile-photo-wrap {
    height: 240px;
}

.featured-profile-card .search-profile-body {
    padding: 18px;
}

.featured-profile-card .search-profile-name {
    font-size: 20px;
}

.featured-profile-card .search-profile-about {
    min-height: 60px;
    margin-bottom: 16px;
}

.featured-profile-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, #00aaff, #7b5cff, #ff4fa3);
    opacity: 0.95;
    z-index: 3;
}

.featured-profile-card:hover::before {
    animation: featuredTopLineRun 0.9s ease forwards;
}

.messages-hero-upgraded {
    position: relative;
    overflow: hidden;
}

.messages-list-upgraded {
    display: grid;
    gap: 14px;
}

.messages-list-item-upgraded {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(96, 165, 250, 0.14);
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(8, 15, 30, 0.96));
    box-shadow: 0 14px 34px rgba(2, 6, 23, 0.32);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.messages-list-item-upgraded:hover {
    transform: translateY(-2px);
    border-color: rgba(168, 85, 247, 0.28);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.42);
}

.messages-list-item-upgraded.is-unread {
    border-color: rgba(236, 72, 153, 0.22);
    box-shadow: 0 0 0 1px rgba(236, 72, 153, 0.06), 0 16px 40px rgba(2, 6, 23, 0.38);
}

.profile-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    background:
        radial-gradient(circle at top left, rgba(255, 0, 153, 0.18), transparent 36%),
        radial-gradient(circle at bottom right, rgba(0, 174, 255, 0.18), transparent 40%),
        rgba(18, 20, 30, 0.96);
    color: rgba(255,255,255,0.78);
    font-size: 48px;
}

.profile-card-placeholder span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

.profile-card {
    position: sticky;
    top: 20px;
}

.messages-hero-stats {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.messages-stat-number {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.messages-stat-label {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(255,255,255,0.62);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.messages-section-card {
    margin: 0 20px 20px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.075);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.022)),
        rgba(9, 11, 22, 0.62);
    box-shadow: 0 18px 44px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,.035);
}

.messages-active-section {
    margin-top: 20px;
}

.messages-section-head {
    margin-bottom: 16px;
}

.messages-section-kicker {
    margin-bottom: 6px;
    color: rgba(255,255,255,.48);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.messages-section-head h2 {
    margin: 0 0 5px;
    font-size: 25px;
    letter-spacing: -0.025em;
}

.messages-count-pill {
    min-height: 38px;
    padding: 0 15px;
    border-color: rgba(255,255,255,.12);
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 10px 24px rgba(0,0,0,.18);
}

.messages-count-pill-hot {
    border-color: rgba(255, 64, 136, .26);
    background: linear-gradient(135deg, rgba(255, 0, 128, .18), rgba(122, 92, 255, .12));
}

.messages-empty-state {
    position: relative;
    overflow: hidden;
    padding: 34px 28px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.085);
    background:
        radial-gradient(circle at 50% 0%, rgba(0,174,255,.12), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 14px 34px rgba(0,0,0,.18);
}

.messages-empty-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0,174,255,.18), rgba(255,0,153,.14));
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 12px 30px rgba(0,0,0,.22);
    font-size: 24px;
}

.messages-empty-state h2 {
    font-size: 26px;
}

.messages-empty-btn {
    min-width: 220px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff0f7b, #b832ff);
    box-shadow: 0 12px 34px rgba(255, 15, 123, .22), 0 0 22px rgba(184, 50, 255, .14);
}

.messages-list-upgraded {
    gap: 12px;
}

.messages-conversation-card,
.messages-list-item-upgraded {
    position: relative;
    grid-template-columns: 58px 1fr;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.024)),
        rgba(16, 18, 31, .90);
    box-shadow: 0 14px 34px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.035);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.messages-conversation-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(0,174,255,.0), rgba(0,174,255,.58), rgba(255,0,153,.54), rgba(255,0,153,.0));
    opacity: .55;
}

.messages-conversation-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0,174,255,.22);
    background:
        radial-gradient(circle at 15% 50%, rgba(0,174,255,.10), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.028)),
        rgba(16, 18, 31, .94);
    box-shadow: 0 20px 46px rgba(0,0,0,.28), 0 0 26px rgba(0,174,255,.08), inset 0 1px 0 rgba(255,255,255,.05);
}

.messages-request-item {
    border-color: rgba(255, 64, 136, .16);
}

.messages-request-item::before {
    background: linear-gradient(180deg, rgba(255,0,153,0), rgba(255,0,153,.62), rgba(255,184,0,.50), rgba(255,184,0,0));
    opacity: .75;
}

.messages-outgoing-item {
    opacity: .88;
}

.messages-list-avatar-wrap {
    width: 58px;
    height: 58px;
}

.messages-list-avatar {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 20px;
    font-size: 22px;
    font-weight: 900;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.20), transparent 25%),
        linear-gradient(135deg, #1687ff, #7b5cff);
    box-shadow: 0 13px 28px rgba(20,132,255,.24), inset 0 1px 0 rgba(255,255,255,.16);
}

.messages-list-avatar-request {
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.20), transparent 25%),
        linear-gradient(135deg, #ff1f78, #7b5cff);
    box-shadow: 0 13px 28px rgba(255,31,120,.22), inset 0 1px 0 rgba(255,255,255,.16);
}

.messages-list-avatar-waiting {
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.16), transparent 25%),
        linear-gradient(135deg, #64748b, #7b5cff);
}

.messages-request-glow {
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    background: radial-gradient(circle, rgba(255, 64, 136, .34), transparent 62%);
    filter: blur(8px);
    opacity: .65;
}

.messages-list-name {
    letter-spacing: -0.015em;
}

.messages-list-preview {
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.messages-waiting-pill {
    padding: 5px 9px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.045);
    color: rgba(255,255,255,.70);
}

.verification-card,
.verification-info-card {
    margin-bottom: 22px;
}

.verification-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.verification-header h1 {
    margin: 0 0 8px;
}

.verified-status-badge,
.pending-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.verified-status-badge {
    color: #d1fae5;
    border: 1px solid rgba(16,185,129,0.35);
    background: rgba(16,185,129,0.14);
}

.verification-success-box,
.verification-warning-box,
.verification-pending-box {
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
}

.verification-success-box {
    border-color: rgba(16,185,129,0.28);
    background: rgba(16,185,129,0.08);
}

.verification-warning-box {
    border-color: rgba(245,158,11,0.28);
    background: rgba(245,158,11,0.08);
}

.verification-pending-box {
    border-color: rgba(96,165,250,0.28);
    background: rgba(96,165,250,0.08);
}

.verification-steps {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.verification-step {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
}

.verification-step > span {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(255,60,136,0.85), rgba(123,92,255,0.85));
    color: white;
}

.verification-step strong {
    display: block;
    margin-bottom: 4px;
}

.verification-step p {
    margin: 0;
    color: rgba(255,255,255,0.72);
}

.verification-code-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.08em;
    background: rgba(0,0,0,0.25);
    border: 1px dashed rgba(255,255,255,0.28);
    color: white;
}

.verification-form {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.verification-form label {
    font-weight: 700;
}

.verification-form input[type="file"] {
    width: 100%;
    padding: 13px;
    border-radius: 14px;
    color: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
}

.verification-info-card ul {
    margin-top: 10px;
}

.verification-card,
.verification-info-card {
    margin-bottom: 22px;
}

.verification-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.verification-header h1 {
    margin: 0 0 8px;
}

.verified-status-badge,
.pending-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.verified-status-badge {
    color: #d1fae5;
    border: 1px solid rgba(16,185,129,0.35);
    background: rgba(16,185,129,0.14);
}

.verification-success-box,
.verification-warning-box,
.verification-pending-box {
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
}

.verification-success-box {
    border-color: rgba(16,185,129,0.28);
    background: rgba(16,185,129,0.08);
}

.verification-warning-box {
    border-color: rgba(245,158,11,0.28);
    background: rgba(245,158,11,0.08);
}

.verification-pending-box {
    border-color: rgba(96,165,250,0.28);
    background: rgba(96,165,250,0.08);
}

.verification-steps {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.verification-step {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
}

.verification-step > span {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(255,60,136,0.85), rgba(123,92,255,0.85));
    color: white;
}

.verification-step strong {
    display: block;
    margin-bottom: 4px;
}

.verification-step p {
    margin: 0;
    color: rgba(255,255,255,0.72);
}

.verification-code-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.08em;
    background: rgba(0,0,0,0.25);
    border: 1px dashed rgba(255,255,255,0.28);
    color: white;
}

.verification-form {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.verification-form label {
    font-weight: 700;
}

.verification-form input[type="file"] {
    width: 100%;
    padding: 13px;
    border-radius: 14px;
    color: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
}

.verification-info-card ul {
    margin-top: 10px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 999px;

    color: #d1fae5;
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.35);
}

.verified-badge::before {
    content: "✔";
    font-size: 11px;
}

/* =========================
   VERIFIED PROFILE BADGE
   Elegáns bordó-arany jelvény
========================= */


.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    vertical-align: middle;

    background:
        radial-gradient(circle at 30% 28%, rgba(255,255,255,0.22), transparent 24%),
        radial-gradient(circle at 50% 58%, #7a1f1f, #3b0a0a 72%);
    border: 2px solid #d4af37;

    color: #f5d27a;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;

    box-shadow:
        0 0 8px rgba(212, 175, 55, 0.42),
        inset 0 0 7px rgba(255,255,255,0.10),
        inset 0 -5px 10px rgba(0,0,0,0.22);

    text-decoration: none;
}

.verified-badge-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;

    background:
        radial-gradient(circle at 30% 28%, rgba(255,255,255,0.20), transparent 24%),
        radial-gradient(circle at 50% 58%, #7a1f1f, #3b0a0a 72%);
    border: 1px solid #d4af37;

    color: #f5d27a;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;

    box-shadow: 0 0 6px rgba(212, 175, 55, 0.35);
}

.verified-profile-badge {
    display: flex;
    justify-content: center;
    margin: 10px 0 16px;
}

.verified-profile-badge svg {
    width: 100%;
    max-width: 260px;
    height: auto;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

.profile-card h2 .verified-badge {
    display: none;
}

.verified-profile-badge:hover svg {
    transform: scale(1.03);
    transition: transform 0.2s ease;
}

.verified-profile-badge svg {
    filter: drop-shadow(0 6px 16px rgba(212, 175, 55, 0.15));
}

.verified-mini {
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
}

.verified-mini svg {
    width: 14px;
    height: 14px;
    opacity: 0.95;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.verified-mini:hover svg {
    transform: scale(1.15);
    filter: drop-shadow(0 0 4px rgba(212,175,55,0.5));
}

.verified-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 7px;
    vertical-align: middle;
}

.verified-mini svg {
    width: 17px;
    height: 17px;
    opacity: 0.96;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.verified-mini:hover svg {
    transform: scale(1.12);
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.55));
}

.verified-mini-profile svg {
    width: 22px;
    height: 22px;
}
/* =========================================================
   PRIVATE PHOTO CONTROLLED REVEAL
   ========================================================= */

.private-photo-reveal-card {
    position: relative;
    overflow: hidden;
}

.private-photo-placeholder {
    min-height: 260px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 14px;
    padding: 24px;
    text-align: center;

    background:
        radial-gradient(circle at top left,
            rgba(255, 0, 153, 0.14),
            transparent 35%),

        radial-gradient(circle at bottom right,
            rgba(0, 174, 255, 0.14),
            transparent 38%),

        rgba(12, 16, 28, 0.96);
}

.private-photo-placeholder-icon {
    font-size: 42px;
    line-height: 1;
}

.private-photo-placeholder-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
}

.private-photo-placeholder-text {
    max-width: 240px;

    color: rgba(255,255,255,0.72);

    line-height: 1.6;
    font-size: 0.92rem;
}

.private-photo-open-btn {
    margin-top: 4px;
}

.private-photo-reveal-wrap {
    position: relative;
    overflow: hidden;

    animation: privatePhotoRevealFade .25s ease;
}

.private-photo-img {
    user-select: none;
    -webkit-user-drag: none;

    filter: saturate(1.02) contrast(1.02);
}

.private-photo-watermark {
    position: absolute;

    inset: 0;

    z-index: 3;

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

    pointer-events: none;

    color: rgba(255,255,255,0.16);

    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;

    text-transform: uppercase;

    transform: rotate(-18deg);

    text-shadow:
        0 0 12px rgba(0,0,0,0.45);

    user-select: none;
}

.private-photo-watermark::before {
    content: attr(data-watermark);

    white-space: nowrap;
}

.private-photo-timer {
    position: absolute;

    top: 12px;
    right: 12px;

    z-index: 5;

    width: 42px;
    height: 42px;

    border-radius: 50%;

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

    font-size: 14px;
    font-weight: 800;

    color: #ffffff;

    background:
        linear-gradient(135deg,
            rgba(255, 0, 128, 0.88),
            rgba(123, 92, 255, 0.88));

    border: 1px solid rgba(255,255,255,0.18);

    box-shadow:
        0 10px 24px rgba(0,0,0,0.28),
        0 0 18px rgba(123,92,255,0.22);

    backdrop-filter: blur(6px);
}

.private-photo-modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

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

    padding: 20px;

    background: rgba(5, 8, 14, 0.78);

    backdrop-filter: blur(10px);

    animation: privatePhotoModalFade .2s ease;
}

.private-photo-modal-content {
    width: 100%;
    max-width: 520px;

    padding: 28px;

    border-radius: 24px;

    background:
        linear-gradient(180deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.03)),

        rgba(12, 16, 28, 0.98);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 24px 60px rgba(0,0,0,0.45),
        0 0 30px rgba(123,92,255,0.08);

    color: #ffffff;
}

.private-photo-modal-content h3 {
    margin-top: 0;
    margin-bottom: 14px;

    font-size: 1.45rem;
}

.private-photo-modal-content p {
    margin-bottom: 22px;

    color: rgba(255,255,255,0.74);

    line-height: 1.7;
}

.private-photo-consent-check {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    padding: 16px;
    margin-bottom: 24px;

    border-radius: 18px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.06);

    cursor: pointer;
}

.private-photo-consent-check input {
    margin-top: 3px;
    transform: scale(1.15);
}

.private-photo-consent-check span {
    color: rgba(255,255,255,0.86);

    line-height: 1.6;
    font-size: 0.95rem;
}

.private-photo-modal-actions {
    display: flex;
    justify-content: flex-end;

    gap: 12px;
}

.private-photo-reveal-wrap.closing {
    animation: privatePhotoBlurOut .35s ease forwards;
}

@keyframes privatePhotoRevealFade {

    from {
        opacity: 0;
        transform: scale(.985);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes privatePhotoModalFade {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes privatePhotoBlurOut {

    from {
        opacity: 1;
        filter: blur(0);
    }

    to {
        opacity: 0;
        filter: blur(18px);
    }
}

@media (max-width: 768px) {

    .private-photo-placeholder {
        min-height: 220px;
        padding: 18px;
    }

    .private-photo-modal-content {
        padding: 22px;
        border-radius: 20px;
    }

    .private-photo-watermark {
        font-size: 11px;
    }

    .private-photo-timer {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
}
.private-photo-context-warning {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 8;

    padding: 12px 14px;
    border-radius: 14px;

    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255,255,255,0.14);
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;

    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;

    box-shadow: 0 14px 34px rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);

    transition: opacity .2s ease, transform .2s ease;
}

.private-photo-context-warning.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.register-support-note {
    margin-bottom: 20px;
    padding: 14px 16px;

    border-radius: 14px;

    background: rgba(90, 140, 255, 0.08);

    border: 1px solid rgba(90, 140, 255, 0.18);

    color: rgba(255,255,255,0.88);

    font-size: 14px;
    line-height: 1.6;
}