
    :root {
        --bg: #6f6f6f;
        --panel: #8f8f8f;
        --panel-2: #9b9b9b;
        --text: #f4f5f7;
        --muted: #e2e2e2;
        --line: rgba(255,255,255,0.16);
        --accent: #d5b36a;
        --shadow: 0 22px 60px rgba(0,0,0,0.28);
        --radius: 18px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      /*
      background:
        radial-gradient(circle at 50% -20%, rgba(128,128,128,0.50), transparent 32%),
        linear-gradient(180deg, #a1a1a1 0%, #868686 42%, #727272 100%);
      */
      
      color: var(--text);
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .container { width: min(1240px, calc(100% - 32px)); margin: 0 auto; }

    

    .site-header {
        position: sticky;
        top: 0;
        z-index: 50;
        backdrop-filter: blur(14px);
        background:
            linear-gradient(90deg, rgba(16,18,24,0.92), rgba(20,24,31,0.82));
        border-bottom: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    }

    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
        padding: 16px 0;
    }

    .brand-wrap {
        display: flex;
        flex-direction: column;
        gap: 2px;
        min-width: fit-content;
    }

    .brand-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--accent);
    }

    .brand {
        font-size: 1.55rem;
        font-weight: 800;
        letter-spacing: 0.02em;
        line-height: 1;
    }

    .brand span {
        color: var(--accent);
    }

    .brand-tagline {
        margin-top: 4px;
        font-size: 0.8rem;
        color: var(--muted);
        letter-spacing: 0.04em;
    }

    .nav-links {
        display: flex;
        gap: 22px;
        flex-wrap: wrap;
        align-items: center;
    }

    .nav-link {
        position: relative;
        color: var(--muted);
        font-size: 0.98rem;
        font-weight: 600;
        transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
    }
    
    .nav-link::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -2px;
        width: 0%;
        height: 2px;
        background: var(--accent);
        transform: translateX(-50%);
        transition: width 0.25s ease;
    }

    .nav-link:hover::before {
        width: 60%;
    }

    /* Hover hint text */
    .nav-link::after {
        content: attr(data-hover);
        position: absolute;
        left: 70%;
        top: calc(100% + 8px);
    
        transform: translate(-60%, -8px);
        opacity: 0;

        font-size: 1.45rem;
        font-weight: 600;
        color: var(--accent);

        max-width: 160px;
        text-align: center;
        white-space: normal;
        line-height: 1.2;

        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    /* Main text fades + slightly shrinks */
    .nav-link:hover,
    .nav-link:focus {
        color: rgba(255,255,255,0.35);
        transform: scale(0.92);
    }

    /* Hover text appears and moves into center */
    .nav-link:hover::after,
    .nav-link:focus::after {
        opacity: 1;
        transform: translate(-50%, 0);
    }
   

    section { padding: 72px 0; }

    .section-head { margin-bottom: 26px; }

    .section-head h2 {
      margin: 0 0 10px;
      font-size: clamp(1.7rem, 4vw, 2.5rem);
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      max-width: 760px;
    }
    
    .group-nav {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 22px;
    }

    .group-card {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 22px;
        box-shadow: var(--shadow);
        background: linear-gradient(180deg, var(--panel), #11161c);
        transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    }

    .group-card.active:hover,
    .group-card.active:focus {
        transform: translateY(-4px);
        border-color: rgba(213,179,106,0.45);
        box-shadow: 0 26px 60px rgba(0,0,0,0.34);
    }

    .group-card-image {
        height: 220px;
        background-size: cover;
        background-position: center;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .group-card-content {
        padding: 22px 20px 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 180px;
    }

    .group-card h3 {
        margin: 0 0 12px;
        font-size: 1.45rem;
        font-weight: 800;
        letter-spacing: -0.01em;
    }

    .group-card p {
        margin: 0 0 18px;
        color: #d5dbe3;
        font-size: 0.98rem;
        line-height: 1.55;
        max-width: none;
    }

    .group-card-statuses {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: auto;
    }

    .group-status {
        display: inline-block;
        padding: 7px 12px;
        border-radius: 999px;
        font-size: 0.8rem;
        font-weight: 700;
    }

    .status-new {
        color: #0f5132;
        background: #d1e7dd;
    }

    .status-coming {
        color: #084298;
        background: #cfe2ff;
    }

    .status-explore {
        color: #111;
        background: var(--accent);
        border: 1px solid var(--accent);
        box-shadow: 0 6px 18px rgba(213,179,106,0.22);
    }

    .featured-grid {
      display:grid;
      grid-template-columns:repeat(auto-fit, minmax(300px, 380px));
      justify-content:start;
      gap:22px;
    }

    .feature-card {
      background: linear-gradient(180deg, var(--panel), #11161c);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.2s ease, border-color 0.2s ease;
      cursor: pointer;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      border-color: rgba(213,179,106,0.45);
      box-shadow: 0 26px 60px rgba(0,0,0,0.34);
    }

    .thumb-wrap {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: #0b0d10;
    }

    .thumb-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .badge {
      position:absolute;
      left:14px;
      top:14px;
      padding:7px 11px;
      border-radius:999px;
      font-size:0.78rem;
      font-weight:700;
      letter-spacing:0.01em;
      backdrop-filter:blur(8px);
      border:1px solid rgba(255,255,255,0.10);
    }

    .badge-featured { color:#ffe8a3; background:rgba(88, 60, 0, 0.72); }
    .badge-new { color:#d1ffd8; background:rgba(11, 71, 31, 0.72); }

    .card-body { padding: 16px; }

    .card-body h3 {
      margin: 0 0 6px;
      font-size: 1.1rem;
    }

    .subtitle {
      color: var(--accent);
      margin-bottom: 10px;
      display: block;
      font-size: 0.95rem;
    }

    .meta {
      display: grid;
      gap: 6px;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .meta strong {
      color: #d7dde5;
      font-weight: 600;
    }

    .comment {
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid rgba(255,255,255,0.06);
      color: var(--muted);
      min-height: 3.4em;
    }

    .split {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 24px;
    }

    .panel {
        background:
            linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.10) 100%);
        border: 1px solid rgba(255,255,255,0.14);
        border-radius: 22px;
        padding: 26px;
        box-shadow: 0 22px 55px rgba(0,0,0,0.22);
            backdrop-filter: blur(10px);
    }

    .panel h3 {
        margin-top: 0;
        margin-bottom: 14px;
        color: #ffffff;
        font-size: 1.4rem;
    }

    .panel p,
    .panel li {
        color: #eef2f5;
    }

    .panel ul {
      margin: 0;
      padding-left: 18px;
    }

    .contact-line {
        display: inline-flex;
        align-items: center;
            gap: 10px;
        padding: 13px 16px;
        border-radius: 14px;
        background: rgba(255,255,255,0.14);
        border: 1px solid rgba(255,255,255,0.18);
        margin-top: 10px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }
    
    .card-head-row {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
    }

    .card-head-row h3 {
        margin: 0 0 6px;
        flex: 1;
    }

    .photo-card-anchor {
        display: block;
        color: inherit;
        text-decoration: none;
    }

    .card-title-link {
        color: inherit;
        text-decoration: none;
    }

    .card-title-link:hover,
    .card-title-link:focus {
        color: var(--accent);
    }

    .photo-card-link .thumb-wrap {
        cursor: pointer;
    }

    .like-button {
        position: relative;
        z-index: 3;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.12);
        background: rgba(255,255,255,0.06);
        color: #f4f5f7;
        cursor: pointer;
        font-weight: 700;
        line-height: 1;
        transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    }

    .like-button:hover,
    .like-button:focus {
        transform: translateY(-1px);
        border-color: rgba(213,179,106,0.45);
        background: rgba(213,179,106,0.10);
    }

    .like-button-heart {
        color: #c30010;
        text-shadow: 0 0 10px rgba(255, 43, 85, 0.22);
    }

    .like-count {
        font-variant-numeric: tabular-nums;
        min-width: 1ch;
    }

    .like-button.liked {
        border-color: rgba(213,179,106,0.45);
        background: rgba(213,179,106,0.14);
    }
    
    .like-button.liked .like-button-heart {
        color: #999999;
    }

    footer {
        padding: 42px 0 48px;
        color: #eef2f5;
        background:
            linear-gradient(180deg, #4194cb 0%, #8dcfec 100%);
        border-top: 3px solid rgba(255,255,255,0.08);
        text-align: center;
    }

    .footer-stack {
      display: grid;
      gap: 12px;
      justify-items: center;
    }

    .visitor-badge {
        padding: 11px 18px;
        border: 1px solid rgba(255,255,255,0.18);
        border-radius: 999px;
        background: rgba(2,0,108,0.14);
        
        color: #ffffff;
            font-variant-numeric: tabular-nums;
        box-shadow: 0 10px 24px rgba(0,0,0,0.14);
    }

    .modal {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.8);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      z-index: 100;
    }

    .modal.active { display: flex; }

    .modal-box {
      width: min(1000px, 96vw);
      max-height: 90vh;
      background: #0f1318;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 25px 70px rgba(0,0,0,0.5);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .modal-image-wrap {
      position: relative;
      min-height: 420px;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    .modal-image {
      width: min(100%, 1800px);
      max-width: 100%;
      max-height: 90vh;
      object-fit: contain;
    }

    .modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(0,0,0,0.42);
      color: #fff;
      font-size: 1.15rem;
      cursor: pointer;
    }

    .top-button {
      position: fixed;
      right: 22px;
      bottom: 22px;
      width: 74px;
      height: 64px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50%;
      background: rgba(15, 19, 24, 0.88);
      color: #f4f5f7;
      font-size: 1.35rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 16px 40px rgba(0,0,0,0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease, border-color 0.22s ease;
      z-index: 120;
    }

    .top-button.show { opacity: 1; visibility: visible; transform: translateY(0); }

    .top-button.show:hover,
    .top-button.show:focus {
      border-color: rgba(213,179,106,0.45);
      transform: translateY(-2px);
    }
    
    
  