:root {
    --bg: #060a14;
    --bg-soft: #0b1220;
    --panel: #0a1220;
    --panel-soft: #101a2c;
    --border: #1a2a42;
    --text: #e9eff9;
    --muted: #9cb0cb;
    --accent-blue: #3c96ff;
    --accent-red: #ef374a;
    --ok: #50c89a;
    --warn: #f0c26b;
    --danger: #ef7d7d;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Plus Jakarta Sans", sans-serif;
    background: linear-gradient(180deg, #050913 0%, #060c18 100%);
    line-height: 1.55;
}

h1,
h2,
h3 {
    margin: 0 0 0.58rem;
    line-height: 1.2;
}

p {
    margin: 0 0 0.85rem;
}

a {
    color: inherit;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(4, 8, 16, 0.96);
    border-bottom: 1px solid rgba(34, 53, 83, 0.8);
    backdrop-filter: blur(8px);
}

.topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 78px;
    padding: 0.72rem 1.1rem;
    display: grid;
    grid-template-columns: auto minmax(280px, 1fr) auto;
    align-items: center;
    gap: 0.65rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.brand-logo {
    width: 31px;
    height: 31px;
    object-fit: contain;
}

.brand-copy {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    line-height: 1;
}

.brand-title {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.06;
}

.brand-powered {
    margin-top: 0.14rem;
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #bfd2ea;
    text-transform: uppercase;
    line-height: 1;
}

.topbar-search {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.35rem;
    align-items: center;
}

.topbar-search input {
    width: 100%;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(39, 61, 94, 0.9);
    background: rgba(5, 11, 21, 0.9);
    color: var(--text);
    padding: 0 1rem;
    font: inherit;
}

.topbar-search input::placeholder {
    color: #7f95b1;
}

.topbar-search input:focus {
    outline: none;
    border-color: rgba(72, 114, 170, 0.9);
    box-shadow: 0 0 0 2px rgba(57, 128, 231, 0.15);
}

.search-button {
    border: 1px solid rgba(46, 67, 101, 0.9);
    background: rgba(9, 16, 28, 0.95);
    color: #c2d4ea;
    border-radius: 0.48rem;
    height: 42px;
    padding: 0 0.95rem;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.search-button:hover {
    background: rgba(13, 23, 39, 0.95);
}

.topbar-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.24rem;
}

.avatar-sm {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(52, 73, 104, 0.9);
    object-fit: cover;
}

.profile-menu {
    position: relative;
}

.profile-menu-toggle {
    gap: 0.45rem;
    max-width: 230px;
}

.profile-menu-toggle span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-menu-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 0.4rem);
    min-width: 180px;
    border: 1px solid var(--border);
    border-radius: 0.7rem;
    background: rgba(8, 14, 24, 0.98);
    overflow: hidden;
    z-index: 50;
}

.profile-menu-item {
    display: block;
    padding: 0.62rem 0.75rem;
    text-decoration: none;
    color: #d3e3f5;
    border-bottom: 1px solid rgba(36, 55, 86, 0.95);
}

.profile-menu-item:last-child {
    border-bottom: 0;
}

.profile-menu-item:hover {
    background: rgba(13, 24, 41, 0.95);
}

.page-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.9rem 1.1rem 1.6rem;
}

.flash-wrap {
    display: grid;
    gap: 0.52rem;
    margin-bottom: 0.8rem;
}

.flash {
    border: 1px solid var(--border);
    border-radius: 0.62rem;
    padding: 0.6rem 0.76rem;
    font-size: 0.9rem;
}

.flash-success {
    border-color: #2d6b56;
    color: var(--ok);
}

.flash-warning {
    border-color: #7b5d2c;
    color: var(--warn);
}

.flash-danger {
    border-color: #7f3c3c;
    color: var(--danger);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.48rem;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    height: 40px;
    padding: 0 1rem;
}

.button-primary {
    background: linear-gradient(135deg, #4ca1ff, #3788e6);
    border-color: rgba(81, 158, 255, 0.8);
    color: #eef7ff;
}

.button-primary:hover {
    filter: brightness(1.05);
}

.button-red {
    background: linear-gradient(135deg, #ef374a, #c92939);
    border-color: rgba(239, 55, 74, 0.85);
    color: #fff2f4;
}

.button-red:hover {
    filter: brightness(1.06);
}

.button-outline,
.button-ghost {
    background: rgba(10, 18, 31, 0.95);
    border-color: rgba(43, 64, 97, 0.9);
    color: #d5e4f7;
}

.button-outline:hover,
.button-ghost:hover {
    background: rgba(13, 24, 41, 0.95);
}

.plain-link {
    color: #92bfff;
    text-decoration: none;
    font-weight: 700;
}

.plain-link:hover {
    text-decoration: underline;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    color: #8ea4c3;
    margin-bottom: 0.45rem;
}

.landing-hero {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-image:
        linear-gradient(180deg, rgba(6, 12, 24, 0.42), rgba(6, 10, 18, 0.82)),
        var(--hero-image, url("https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&w=1920&q=80"));
    background-size: cover;
    background-position: center;
    min-height: 640px;
    border-top: 1px solid rgba(35, 51, 77, 0.9);
    border-bottom: 1px solid rgba(35, 51, 77, 0.9);
}

/* Pull first hero up to align flush with sticky header */
.page-shell > .landing-hero:first-child {
    margin-top: -0.9rem;
}

.landing-overlay {
    min-height: 640px;
    padding: 5.3rem 1rem 2.2rem;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    align-content: space-between;
    gap: 2rem;
}

.landing-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.landing-copy-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: min(100%, 980px);
    padding: clamp(1rem, 2.2vw, 1.8rem) clamp(1rem, 2.8vw, 2.2rem);
    border-radius: 1rem;
    border: 1px solid rgba(119, 146, 184, 0.28);
    background: linear-gradient(165deg, rgba(3, 8, 16, 0.74), rgba(6, 12, 24, 0.66));
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
}

.landing-center h1 {
    font-size: clamp(2.2rem, 4.6vw, 4.1rem);
    margin-bottom: 0.3rem;
}

.hero-accent-logo {
    width: 0.95em;
    height: 0.95em;
    margin-right: 0.04em;
    object-fit: contain;
    vertical-align: -0.08em;
}

.landing-center h2 {
    font-size: clamp(2rem, 4.5vw, 4.2rem);
    margin-bottom: 0.7rem;
    font-weight: 800;
}

.landing-center p {
    font-size: 1.08rem;
    color: #b6c6dc;
    max-width: 820px;
    margin: 0 auto 1rem;
}

.home-panels {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.9rem;
}

.admin-grid {
    grid-template-columns: minmax(0, 1fr);
}

.panel-card,
.page-intro,
.note-panel,
.step-card,
.team-card,
.editor-shell,
.empty-card,
.server-card,
.ad-card,
.detail-main,
.detail-card,
.review-card {
    border: 1px solid var(--border);
    border-radius: 0.82rem;
    background: linear-gradient(165deg, #0f1a2e, #0a121f);
}

.panel-card,
.page-intro,
.note-panel,
.editor-shell,
.empty-card,
.detail-card,
.review-card {
    padding: 0.94rem;
}

.panel-head {
    margin-bottom: 0.72rem;
}

.panel-sub {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.server-mini-list {
    display: grid;
    gap: 0.58rem;
}

.server-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    border: 1px solid rgba(31, 47, 74, 0.9);
    border-radius: 0.68rem;
    padding: 0.62rem 0.72rem;
    background: rgba(9, 15, 27, 0.9);
}

.server-mini:hover {
    border-color: rgba(64, 98, 145, 0.9);
}

.server-mini-main {
    display: flex;
    align-items: center;
    gap: 0.62rem;
    min-width: 0;
}

.server-mini-icon {
    width: 44px;
    height: 44px;
    border-radius: 0.55rem;
    object-fit: cover;
    border: 1px solid rgba(44, 65, 101, 0.9);
    background: #17243d;
    flex-shrink: 0;
}

.server-mini-copy {
    min-width: 0;
}

.mini-title {
    margin: 0 0 0.14rem;
    font-weight: 700;
}

.mini-meta,
.meta-line,
.muted-text {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.rating-badge {
    border: 1px solid rgba(44, 65, 101, 0.9);
    border-radius: 999px;
    padding: 0.16rem 0.5rem;
    font-size: 0.8rem;
    color: #c6daf5;
    white-space: nowrap;
}

.star-rating {
    color: #ffd779;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.discovery-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
}

.toolbar-copy h2 {
    margin-bottom: 0;
}

.search-meta {
    margin-bottom: 0.7rem;
}

.head-actions {
    display: flex;
    gap: 0.55rem;
}

.discovery-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
    align-items: start;
}

.ad-column {
    position: sticky;
    top: 86px;
}

.ad-column h3 {
    margin-bottom: 0.5rem;
}

.ad-card {
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.ad-card img,
.ad-placeholder {
    width: 100%;
    display: block;
    object-fit: cover;
}

.ad-card-large img,
.ad-card-large .ad-placeholder {
    height: 350px;
}

.ad-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #17243d;
    color: #9bb1ce;
    font-weight: 700;
}

.ad-card span {
    display: block;
    padding: 0.66rem;
    font-weight: 700;
}

.feed-column {
    display: grid;
    gap: 0.8rem;
}

.server-card {
    display: grid;
    grid-template-columns: minmax(260px, 34%) minmax(0, 1fr);
    min-height: 214px;
    overflow: hidden;
}

.server-card-featured {
    border-color: rgba(114, 63, 74, 0.95);
}

.server-banner-image,
.server-banner-placeholder {
    width: 100%;
    height: 100%;
    min-height: 214px;
    object-fit: cover;
}

.server-banner-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #17243d;
    color: #9bb1ce;
    font-weight: 700;
}

.server-card-body {
    padding: 0.84rem 0.92rem;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.listing-title-wrap {
    display: flex;
    align-items: center;
    gap: 0.62rem;
    margin-bottom: 0.22rem;
}

.listing-logo {
    width: 42px;
    height: 42px;
    border-radius: 0.55rem;
    object-fit: cover;
    border: 1px solid rgba(44, 65, 101, 0.9);
    background: #17243d;
    flex-shrink: 0;
}

.listing-title-wrap h3 {
    margin: 0;
}

.listing-title-wrap h2 {
    margin: 0;
}

.server-title-link {
    color: var(--text);
    text-decoration: none;
}

.server-title-link:hover {
    text-decoration: underline;
    color: #cae0ff;
}

.server-tags {
    margin-bottom: 0.36rem;
}

.tag {
    display: inline-block;
    border: 1px solid rgba(50, 73, 109, 0.95);
    border-radius: 999px;
    padding: 0.16rem 0.52rem;
    font-size: 0.72rem;
    font-weight: 700;
    margin-right: 0.32rem;
    color: #c8dbf3;
}

.tag-featured {
    border-color: rgba(105, 66, 78, 0.95);
    color: #f0bdc5;
}

.server-actions,
.editor-actions,
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.server-card-body .server-actions {
    margin-top: auto;
    padding-top: 0.6rem;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
}

.admin-listing-item {
    align-items: flex-start;
}

.inline-form {
    display: inline;
}

.hero-actions {
    justify-content: center;
}

.page-intro {
    margin-bottom: 0.8rem;
}

.step-grid,
.team-grid {
    display: grid;
    gap: 0.76rem;
    margin-bottom: 0.8rem;
}

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

.team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-card,
.team-card {
    padding: 0.9rem;
}

.step-card p,
.team-card p {
    color: var(--muted);
    font-size: 0.92rem;
}

.step-index {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 55, 86, 0.95);
    margin-bottom: 0.38rem;
    font-weight: 700;
}

.role {
    color: #a3b9d7;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.44rem;
}

.note-panel {
    margin-top: 0.8rem;
}

.note-panel p {
    color: var(--muted);
}

.editor-shell {
    max-width: 1240px;
    position: relative;
}

.editor-shell > h2 {
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    margin-bottom: 0.3rem;
}

.editor-shell > p {
    margin-bottom: 0.85rem;
    color: #b9cae0;
    max-width: 840px;
}

.editor-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.44rem;
    margin-bottom: 0.88rem;
}

.editor-step {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(58, 81, 117, 0.85);
    background: rgba(8, 15, 27, 0.88);
    color: #9eb4d2;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.editor-step.is-active {
    border-color: rgba(90, 142, 212, 0.95);
    background: rgba(20, 44, 78, 0.9);
    color: #dcecff;
}

.editor-layout {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    max-width: 980px;
}

.editor-pane {
    border: 1px solid var(--border);
    border-radius: 0.96rem;
    background: linear-gradient(165deg, #121f35, #0a1322 65%);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
    padding: 1.02rem;
}

.editor-layout .editor-form {
    margin-top: 0;
}

.editor-pane-head {
    margin-bottom: 0.88rem;
}

.editor-pane-head h3 {
    margin-bottom: 0.28rem;
}

.editor-preview-screen h3 {
    margin-bottom: 0.66rem;
}

.editor-section {
    border: 1px solid rgba(49, 73, 108, 0.9);
    border-radius: 0.82rem;
    padding: 0.82rem;
    background: rgba(7, 13, 24, 0.68);
}

.editor-section h4 {
    margin: 0 0 0.62rem;
    color: #d5e4f8;
    font-size: 0.95rem;
}

.editor-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
}

.editor-preview-card {
    grid-template-columns: 210px minmax(0, 1fr);
    min-height: 184px;
}

.editor-preview-card .server-banner-image,
.editor-preview-card .server-banner-placeholder {
    min-height: 184px;
}

.editor-preview-actions {
    margin-top: 0.8rem;
    justify-content: flex-end;
}

.preview-button {
    pointer-events: none;
    opacity: 0.82;
}

.editor-form {
    margin-top: 0;
    display: grid;
    gap: 0.84rem;
}

.rating-form {
    margin-top: 0.8rem;
    display: grid;
    gap: 0.76rem;
}

.editor-form label,
.rating-form label {
    display: grid;
    gap: 0.34rem;
    color: #c8daf2;
    font-weight: 600;
}

.editor-form input,
.editor-form textarea,
.rating-form textarea,
.score-select {
    width: 100%;
    border: 1px solid rgba(46, 68, 102, 0.95);
    border-radius: 0.52rem;
    background: rgba(5, 10, 18, 0.95);
    color: var(--text);
    font: inherit;
    padding: 0.56rem 0.65rem;
}

.editor-form input:focus,
.editor-form textarea:focus,
.rating-form textarea:focus,
.score-select:focus {
    outline: none;
    border-color: rgba(91, 142, 208, 0.95);
    box-shadow: 0 0 0 2px rgba(67, 123, 192, 0.16);
}

.editor-form input[type="file"] {
    border-style: dashed;
    padding: 0.42rem;
    cursor: pointer;
    background: rgba(9, 17, 31, 0.88);
}

.editor-form input[type="file"]::file-selector-button {
    border: 1px solid rgba(67, 96, 139, 0.92);
    border-radius: 999px;
    background: rgba(14, 24, 41, 0.94);
    color: #d8e6f8;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0.34rem 0.74rem;
    margin-right: 0.56rem;
    cursor: pointer;
}

.editor-support-actions {
    margin-top: 0.65rem;
}

.editor-support-actions .muted-text {
    width: 100%;
}

.editor-submit-actions {
    margin-top: 0.1rem;
}

.is-disabled {
    pointer-events: none;
    opacity: 0.5;
}

.detail-header {
    margin-bottom: 0.74rem;
}

.server-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 0.85rem;
}

.detail-main {
    overflow: hidden;
}

.detail-banner {
    width: 100%;
    height: 248px;
    object-fit: cover;
    display: block;
}

.detail-banner-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #17243d;
    color: #9bb1ce;
    font-weight: 700;
}

.detail-body {
    padding: 0.94rem;
}

.detail-side {
    display: grid;
    gap: 0.7rem;
    align-content: start;
}

.rating-value {
    font-size: 2rem;
    font-weight: 800;
}

.rating-value span {
    font-size: 1rem;
    color: var(--muted);
}

.review-section {
    margin-top: 0.86rem;
}

.review-list {
    display: grid;
    gap: 0.66rem;
}

.review-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 0.42rem;
}

.review-head .head-actions {
    margin-left: auto;
}

.review-author {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.48rem;
    margin-bottom: 0.45rem;
}

.review-head .review-author {
    margin-bottom: 0;
}

.review-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(52, 76, 111, 0.9);
    background: #17243d;
}

.review-author-name {
    color: #d8e8fb;
    font-weight: 700;
    text-decoration: none;
}

.review-author-name:hover {
    text-decoration: underline;
}

.profile-hero {
    margin-bottom: 0.9rem;
    padding: 0.94rem;
    border: 1px solid var(--border);
    border-radius: 0.82rem;
    background: linear-gradient(165deg, #111f35, #0a1424 68%);
    display: flex;
    align-items: center;
    gap: 0.82rem;
}

.profile-avatar-lg {
    width: 82px;
    height: 82px;
    border-radius: 1rem;
    object-fit: cover;
    border: 1px solid rgba(52, 76, 111, 0.9);
    background: #17243d;
    flex-shrink: 0;
}

.profile-copy {
    min-width: 0;
}

.profile-copy h2 {
    margin-bottom: 0.25rem;
}

.profile-copy .server-tags {
    margin-top: 0.56rem;
    margin-bottom: 0;
}

.profile-panels {
    margin-top: 0;
}

code {
    border: 1px solid rgba(36, 55, 86, 0.95);
    border-radius: 0.34rem;
    background: rgba(8, 14, 24, 0.95);
    color: #cbe1ff;
    padding: 0.06rem 0.28rem;
}

@media (max-width: 1100px) {
    .topbar-inner {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

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

    .landing-hero,
    .landing-overlay {
        min-height: 560px;
    }

    .home-panels,
    .discovery-layout,
    .server-detail-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .ad-column {
        position: static;
    }

    .step-grid,
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .editor-layout {
        max-width: 100%;
    }

    .editor-grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 760px) {
    .page-shell {
        padding: 0.75rem;
    }

    .page-shell > .landing-hero:first-child {
        margin-top: -0.75rem;
    }

    .topbar-search {
        grid-template-columns: 1fr;
    }

    .topbar-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .landing-center h2 {
        font-size: 2.2rem;
    }

    .landing-center p {
        font-size: 0.98rem;
    }

    .landing-copy-box {
        padding: 1rem 0.9rem;
        border-radius: 0.82rem;
    }

    .step-grid,
    .team-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .server-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .profile-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .editor-pane {
        padding: 0.84rem;
    }

    .editor-section {
        padding: 0.72rem;
    }

    .editor-form .editor-submit-actions,
    .editor-preview-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .editor-form .editor-submit-actions .button,
    .editor-preview-actions .button {
        width: 100%;
    }

    .server-banner-image,
    .server-banner-placeholder {
        height: 210px;
    }

    .ad-card-large img,
    .ad-card-large .ad-placeholder {
        height: 280px;
    }
}
