:root{
  --bg:#0b0a10;
  --card:#121022;
  --card2:#0f0d1d;
  --text:#f3f1ff;
  --muted:rgba(243,241,255,.72);
  --line:rgba(243,241,255,.10);
  --pink:#ff5ad6;
  --pink2:#a855f7;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius:20px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(255,90,214,.22), transparent 60%),
    radial-gradient(700px 500px at 80% 0%, rgba(168,85,247,.20), transparent 55%),
    radial-gradient(800px 700px at 60% 80%, rgba(255,90,214,.12), transparent 60%),
    var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}

.wrap{max-width:1100px; margin:0 auto; padding:18px 18px}

.header{
  display:flex; align-items:center; justify-content:space-between;
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(11,10,16,.85), rgba(11,10,16,.45));
  border-bottom:1px solid var(--line);
}

.brand{display:flex; gap:12px; align-items:center}

.logo{
  width:44px; height:44px; border-radius:14px;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  box-shadow: 0 10px 30px rgba(255,90,214,.25);
}

h1{font-size:18px; margin:0}
.sub{margin:2px 0 0; font-size:13px; color:var(--muted)}

.nav{display:flex; gap:14px; align-items:center}
.nav a{font-size:14px; color:var(--muted)}
.nav a:hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 30px rgba(255,90,214,.15);
  font-weight:600;
}
.btn:hover{filter:brightness(1.06)}
.btn.small{padding:8px 10px; border-radius:12px; font-size:13px}
.btn.big{padding:12px 16px; border-radius:16px}

.ghost{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  color:var(--text);
}
.ghost:hover{background: rgba(255,255,255,.06)}
.ghost.big{padding:12px 16px; border-radius:16px}

.hero{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:22px;
  padding:34px 0 10px;
}

.hero h2{font-size:38px; line-height:1.15; margin:10px 0 10px}
.hero p{color:var(--muted); margin:0 0 14px; max-width:58ch}

.cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:8px}

.chips{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.chips span{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-size:13px;
}

.hero-card .card{
  background: linear-gradient(180deg, rgba(18,16,34,.92), rgba(15,13,29,.92));
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}

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

.badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,90,214,.18);
  border:1px solid rgba(255,90,214,.30);
  color: #ffd5f2;
}

.dot{
  width:10px; height:10px; border-radius:50%;
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(255,90,214,.12);
}

.card h3{margin:10px 0 6px}
.muted{color:var(--muted)}
.link{color:#ffd5f2}
.link:hover{text-decoration:underline}

.section{padding:26px 0}

.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:14px; margin-bottom:14px
}
.section-head h3{margin:0; font-size:22px}
.section-head p{margin:0; color:var(--muted); font-size:14px}

/* SEO text block (minimal, not ugly) */
.seo{
  margin: 10px 0 6px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
}
.seo-title{
  margin: 0 0 6px;
  font-size: 16px;
  color: rgba(243,241,255,.92);
}
.seo-text{
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  max-width: 80ch;
}

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

.tile{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.tile:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
}

.thumbLink{
  display:block;
  width:100%;
  aspect-ratio: 2 / 3; /* Pinterest-friendly */
}

.thumbImg{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition: transform .25s ease;
}

.tile:hover .thumbImg{
  transform: scale(1.03);
}

.tile-body{padding:14px}
.tile-body h4{margin:0 0 6px; font-size:16px}
.tile-body p{margin:0 0 10px; font-size:14px}

.about.card{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}

.follow{display:flex; gap:12px; flex-wrap:wrap}

.footer{padding-top:6px; padding-bottom:24px}

/* Responsive */
@media (max-width: 900px){
  .hero{grid-template-columns: 1fr;}
  .hero h2{font-size:30px;}
  .grid{grid-template-columns: repeat(2, minmax(0, 1fr));}
  .nav{gap:10px}
}

@media (max-width: 520px){
  .grid{grid-template-columns: 1fr;}
}


.newsletter input,
.newsletter textarea {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 100% !important;
  min-height: 44px !important;
}

.newsletter form {
  display: block !important;
}

.truncate {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

/* когато е отворен */
.truncate.expanded {
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

/* показва ... само когато е затворен */
.truncate::after {
  content: " ...";
}

/* маха ... когато е отворен */
.truncate.expanded::after {
  content: "";
}
.truncate:hover {
  opacity: 0.85;
}