@keyframes ohReveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ohGlowPulse { 0%, 100% { opacity: .5; } 50% { opacity: .85; } }
@keyframes ownerReveal {
    from { opacity: 0; transform: translateX(-12px); }
    to   { opacity: 1; transform: translateX(0); }
}

.owners-hero {
    background: linear-gradient(150deg, #071a26 0%, #082538 28%, #0c3d55 60%, #0f5f70 100%);
    color: #fff;
    position: relative;
    width: 100%;
}
.owners-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(ellipse 65% 70% at 3% 95%, rgba(251,146,60,.3) 0%, transparent 55%),
        radial-gradient(ellipse 50% 55% at 92% 8%, rgba(6,182,212,.2) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 55% 48%, rgba(99,102,241,.14) 0%, transparent 60%);
    pointer-events: none;
}
.owners-hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,.018) 40px, rgba(255,255,255,.018) 41px),
        repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,.018) 40px, rgba(255,255,255,.018) 41px);
    pointer-events: none;
}
.oh-hero-sep {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(245,158,11,.6) 20%,
        rgba(6,182,212,.7) 50%,
        rgba(99,102,241,.55) 80%,
        transparent 100%
    );
    animation: ohGlowPulse 3s ease-in-out infinite;
}
.oh-inner {
    position: relative; z-index: 1;
    max-width: var(--site-max-w, 1760px);
    margin: 0 auto;
    padding: clamp(52px, 6vw, 96px) var(--site-pad-x, 40px) clamp(60px, 7vw, 108px);
}
.oh-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,.14);
    border: 1px solid rgba(245,158,11,.32);
    color: rgba(255,255,255,.88);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    width: fit-content;
    animation: ohReveal .5s ease both;
}
.oh-badge i { color: #f59e0b; }
.oh-title {
    font-size: clamp(26px, 3.2vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
    animation: ohReveal .6s .1s ease both;
}
.oh-title em { font-style: normal; color: #f59e0b; }
.oh-lead {
    font-size: clamp(14px, 1.05vw, 16px);
    opacity: .78;
    line-height: 1.7;
    margin: 0 0 36px;
    max-width: 580px;
    animation: ohReveal .6s .2s ease both;
}
.oh-stats {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: ohReveal .6s .3s ease both;
}
.oh-stat {
    padding-right: 28px;
    margin-right: 28px;
    border-right: 1px solid rgba(255,255,255,.15);
}
.oh-stat:last-child { padding-right: 0; margin-right: 0; border-right: none; }
.oh-stat-num {
    display: block;
    font-size: clamp(24px, 2.5vw, 38px);
    font-weight: 800;
    color: #f59e0b;
    line-height: 1;
    font-style: normal;
}
.oh-stat-label {
    display: block;
    font-size: 12px;
    opacity: .65;
    margin-top: 5px;
}

.oh-search-form {
    max-width: 540px;
    width: 100%;
    animation: ohReveal .6s .42s ease both;
}
.oh-search-wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, background 0.2s;
}
.oh-search-wrap:focus-within {
    border-color: rgba(245,158,11,.5);
    background: rgba(255,255,255,.1);
}
.oh-search-icon {
    padding: 0 14px;
    color: rgba(255,255,255,.45);
    font-size: 15px;
    flex-shrink: 0;
}
.oh-search-input {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    font-size: 15px;
    padding: 14px 0;
    outline: none;
    font-family: inherit;
    min-width: 0;
}
.oh-search-input::placeholder { color: rgba(255,255,255,.38); }
.oh-search-btn {
    background: linear-gradient(135deg, #f97316, #f59e0b);
    border: none;
    color: #fff;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: opacity .2s;
    flex-shrink: 0;
}
.oh-search-btn:hover { opacity: .88; }
.oh-clear-btn {
    background: rgba(255,255,255,.08);
    border: none;
    color: rgba(255,255,255,.6);
    padding: 14px 14px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
    flex-shrink: 0;
    font-family: inherit;
}
.oh-clear-btn:hover { background: rgba(255,255,255,.15); color: #fff; }

.owners-content {
    max-width: var(--site-max-w, 1760px);
    margin: 0 auto;
    padding: 32px var(--site-pad-x, 40px) 48px;
}
.owners-count-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray);
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--gray-dark);
}
.owners-count-bar strong { color: var(--black); font-size: 16px; font-weight: 700; }
.owners-count-icon {
    width: 32px; height: 32px;
    background: rgba(13,148,136,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #0d9488;
    font-size: 14px;
    flex-shrink: 0;
}

.owners-list { list-style: none; margin: 0; padding: 0; }

.owner-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: background 0.18s ease, transform 0.18s ease;
    border-bottom: 1px solid transparent;
    position: relative;
}
.owner-row:hover {
    background: rgba(13,148,136,0.06);
    transform: translateX(4px);
}
.owner-row + .owner-row {
    border-top: 1px solid var(--gray);
}

.owner-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: -0.5px;
    background: var(--oa-color, #0d9488);
}

.oa-ip    { --oa-color: #0d9488; }
.oa-ooo   { --oa-color: #2563eb; }
.oa-ao    { --oa-color: #7c3aed; }
.oa-kfh   { --oa-color: #d97706; }
.oa-fgbu  { --oa-color: #dc2626; }
.oa-other { --oa-color: #64748b; }

.owner-info { flex: 1; min-width: 0; }
.owner-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
    transition: color 0.18s;
}
.owner-row:hover .owner-name { color: #0d9488; }

.owner-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--gray-dark);
}
.owner-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}
.owner-meta-item i { font-size: 11px; opacity: 0.7; }

.owner-inn {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 13px;
    color: var(--gray-dark);
    background: var(--gray-light);
    padding: 2px 8px;
    border-radius: 5px;
    white-space: nowrap;
}

.owner-hotels {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    color: #0d9488;
    background: rgba(13,148,136,0.08);
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    transition: background 0.18s;
}
.owner-row:hover .owner-hotels {
    background: rgba(13,148,136,0.15);
}
.owner-hotels i { font-size: 13px; opacity: 0.8; }

.owner-arrow {
    color: var(--gray);
    font-size: 14px;
    flex-shrink: 0;
    transition: color 0.18s, transform 0.18s;
}
.owner-row:hover .owner-arrow {
    color: #0d9488;
    transform: translateX(3px);
}

.owner-row.row-reveal { opacity: 0; }
.owner-row.row-reveal.is-visible { animation: ownerReveal 0.4s ease forwards; }

.owners-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--gray);
}
.owners-pagination .page-btn {
    border-radius: 10px !important;
    border: 1px solid var(--gray) !important;
    background: #fff !important;
    color: var(--black) !important;
    font-weight: 500 !important;
    transition: all 0.18s ease !important;
}
.owners-pagination .page-btn:hover:not(:disabled) {
    background: #0d9488 !important;
    border-color: #0d9488 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13,148,136,0.3);
}
.owners-pagination .page-btn.active {
    background: #0d9488 !important;
    border-color: #0d9488 !important;
    color: #fff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(13,148,136,0.3);
}
.owners-pagination .page-ellipsis {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-dark); font-size: 14px;
}

.owners-empty {
    text-align: center;
    padding: 64px 24px;
    background: rgba(13,148,136,0.03);
    border: 2px dashed rgba(13,148,136,0.2);
    border-radius: 20px;
    margin-top: 16px;
}
.owners-empty i { font-size: 56px; color: #0d9488; opacity: 0.3; margin-bottom: 20px; display: block; }
.owners-empty h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.owners-empty p { color: var(--gray-dark); margin-bottom: 24px; }

.oh-stat--sep { padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.15); }
.oh-search-label { color: var(--gray-dark); }
.page-btn--disabled { opacity: 0.3; cursor: default; pointer-events: none; }

@media (max-width: 768px) {
    .oh-inner { padding: 36px 20px 40px; }
    .oh-title { font-size: 26px; }
    .oh-stats { gap: 24px; }
    .oh-stat-num { font-size: 22px; }
    .owner-inn { display: none; }
    .owners-content { padding: 20px 16px 40px; }
}
@media (max-width: 576px) {
    .oh-inner { padding: 28px 16px 32px; }
    .oh-title { font-size: 22px; }
    .oh-lead { display: none; }
    .oh-stats { margin-bottom: 20px; gap: 16px; }
    .oh-stat-num { font-size: 20px; }
    .oh-search-btn { padding: 14px 14px; font-size: 13px; }
    .owner-meta-item.hide-mobile { display: none; }
    .owner-row { padding: 12px 10px; gap: 12px; }
    .owner-avatar { width: 38px; height: 38px; font-size: 14px; border-radius: 10px; }
}
