/* Last modified: 2026-07-06 */
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
}
body {
  font-family:'Inter',sans-serif;
  background:#0a0a0a;
  color:#e0e0e0;
  line-height:1.6;
  overflow-x:hidden;
}
.container {
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}
.navbar {
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:rgba(10,10,10,0.95);
  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.06);
  padding:16px 0;
  transition:background 0.3s;
}
.nav-container {
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo {
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  color:#fff;
  font-family:'Oswald',sans-serif;
  font-size:28px;
  font-weight:700;
}
.logo img {
  height:40px;
  width:auto;
}
.nav-links {
  display:flex;
  list-style:none;
  gap:32px;
}
.nav-links a {
  text-decoration:none;
  color:#aaa;
  font-size:14px;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:0.08em;
  transition:color 0.3s;
  position:relative;
}
.nav-links a::after {
  content:'';
  position:absolute;
  bottom:-4px;
  left:0;
  width:0;
  height:2px;
  background:#ff4500;
  transition:width 0.3s;
}
.nav-links a:hover {
  color:#fff;
}
.nav-links a:hover::after {
  width:100%;
}
.nav-lang {
  display:flex;
  gap:8px;
  align-items:center;
}
.nav-lang a {
  padding:3px 10px;
  border:1px solid rgba(255,255,255,0.25);
  border-radius:4px;
}
.nav-lang a::after {
  display:none;
}
.nav-lang a.active {
  color:#fff;
  border-color:#ff4500;
  background:rgba(255,69,0,0.15);
}
.hamburger {
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:4px;
}
.hamburger span {
  width:24px;
  height:2px;
  background:#fff;
  transition:0.3s;
  border-radius:2px;
}
.hero {
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
  background:url('thumb.php?src=images/landscape/FCI_4134.JPG&w=1920') center center/cover no-repeat;
  overflow:hidden;
  transition:background-image 1s ease-in-out;
}
.hero::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(180deg,rgba(0,0,0,0.7) 0%,rgba(0,0,0,0.5) 50%,rgba(0,0,0,0.8) 100%);
  z-index:1;
}
.hero-overlay {
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 30% 50%,rgba(255,69,0,0.12) 0%,transparent 60%);
  z-index:1;
}
.hero-content {
  position:relative;
  z-index:2;
}
.hero-subtitle {
  font-family:'Oswald',sans-serif;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:0.3em;
  color:#ff4500;
  margin-bottom:16px;
}
.hero-title {
  font-family:'Oswald',sans-serif;
  font-size:clamp(48px,10vw,120px);
  font-weight:700;
  color:#fff;
  text-transform:uppercase;
  line-height:1;
  margin-bottom:8px;
}
.hero-number {
  font-family:'Oswald',sans-serif;
  font-size:clamp(80px,15vw,200px);
  font-weight:900;
  color:transparent;
  -webkit-text-stroke:3px rgba(255,69,0,0.4);
  line-height:1;
  margin-bottom:16px;
  user-select:none;
}
.hero-desc {
  font-size:18px;
  color:#888;
  letter-spacing:0.05em;
  margin-bottom:32px;
}
.hero-social {
  display:flex;
  gap:16px;
  justify-content:center;
}
.hero-social a {
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.15);
  color:#fff;
  transition:all 0.3s;
}
.hero-social a svg {
  width:18px;
  height:18px;
}
.hero-social a:hover {
  background:#ff4500;
  border-color:#ff4500;
  transform:translateY(-2px);
}
.scroll-indicator {
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
}
.scroll-indicator span {
  display:block;
  width:20px;
  height:20px;
  border:2px solid rgba(255,255,255,0.3);
  border-top:0;
  border-left:0;
  transform:rotate(45deg);
  animation:scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%,100% {
  transform:rotate(45deg) translate(0,0);
  opacity:0.3;
}
50% {
  transform:rotate(45deg) translate(4px,4px);
  opacity:1;
}
}
.section {
  padding:100px 0;
}
.section-title {
  font-family:'Oswald',sans-serif;
  font-size:clamp(32px,5vw,48px);
  font-weight:700;
  color:#fff;
  text-transform:uppercase;
  text-align:center;
  margin-bottom:12px;
}
.section-subtitle {
  text-align:center;
  color:#777;
  font-size:16px;
  max-width:600px;
  margin:0 auto 48px;
}
.achievements {
  background:#0f0f0f;
}
.achievement-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.achievement-card {
  background:linear-gradient(135deg,#141414,#1a1a1a);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:16px;
  padding:32px;
  transition:all 0.3s;
  position:relative;
  overflow:hidden;
}
.achievement-card::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:#ff4500;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.4s;
}
.achievement-card:hover::before {
  transform:scaleX(1);
}
.achievement-card:hover {
  border-color:rgba(255,69,0,0.2);
  transform:translateY(-4px);
}
.achievement-year {
  font-family:'Oswald',sans-serif;
  font-size:14px;
  color:#ff4500;
  text-transform:uppercase;
  letter-spacing:0.1em;
  margin-bottom:12px;
}
.achievement-card h3 {
  color:#fff;
  font-size:20px;
  font-weight:700;
  margin-bottom:12px;
}
.achievement-card p {
  color:#999;
  font-size:14px;
  line-height:1.7;
}
.stats {
  background:linear-gradient(135deg,#0a0a0a,#111);
  border-top:1px solid rgba(255,255,255,0.04);
  border-bottom:1px solid rgba(255,255,255,0.04);
}
.stats-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  text-align:center;
}
.stat-item {
  padding:32px 16px;
}
.stat-number {
  display:block;
  font-family:'Oswald',sans-serif;
  font-size:clamp(48px,6vw,72px);
  font-weight:700;
  color:#ff4500;
  line-height:1;
  margin-bottom:8px;
}
.stat-label {
  font-size:14px;
  color:#777;
  text-transform:uppercase;
  letter-spacing:0.08em;
}
.blog {
  background:#0f0f0f;
}
.blog-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(340px,1fr));
  gap:24px;
}
.blog-card {
  display:block;
  background:linear-gradient(135deg,#141414,#1a1a1a);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:16px;
  padding:28px;
  text-decoration:none;
  color:inherit;
  transition:all 0.3s;
  position:relative;
  overflow:hidden;
}
.blog-card::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:#ff4500;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.4s;
}
.blog-card:hover::before {
  transform:scaleX(1);
}
.blog-card:hover {
  border-color:rgba(255,69,0,0.2);
  transform:translateY(-4px);
}
.blog-card-meta {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:12px;
  font-size:13px;
}
.blog-category {
  display:inline-block;
  padding:2px 10px;
  border-radius:20px;
  background:rgba(255,69,0,0.1);
  color:#ff4500;
  font-size:12px;
  font-weight:600;
}
.blog-date {
  color:#666;
  font-size:13px;
}
.blog-card-title {
  font-size:18px;
  font-weight:700;
  color:#fff;
  margin-bottom:10px;
  line-height:1.4;
}
.blog-card-excerpt {
  color:#999;
  font-size:14px;
  line-height:1.6;
  margin-bottom:16px;
}
.blog-read-more {
  color:#ff4500;
  font-size:13px;
  font-weight:600;
}
.gallery {
  background:#0a0a0a;
}
.gallery-years {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
  margin-bottom:32px;
}
.gallery-year-link {
  display:inline-block;
  padding:8px 20px;
  border-radius:8px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  color:#888;
  background:#141414;
  border:1px solid rgba(255,255,255,0.06);
  transition:all 0.3s;
}
.gallery-year-link:hover {
  color:#fff;
  border-color:rgba(255,69,0,0.3);
}
.gallery-year-link.active {
  color:#fff;
  background:#ff4500;
  border-color:#ff4500;
}
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
  gap:10px;
}
.gallery-item {
  display:block;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.06);
  transition:all 0.4s ease;
  aspect-ratio:1.5;
  opacity:0;
  transform:translateY(20px);
  animation:galleryFadeIn 0.6s ease forwards;
  animation-delay:calc(var(--i,0) * 0.08s);
}
@keyframes galleryFadeIn {
  to {
  opacity:1;
  transform:translateY(0);
}
}
.gallery-item:hover {
  border-color:rgba(255,69,0,0.3);
  transform:scale(1.03);
  z-index:2;
}
.gallery-item img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.5s ease;
}
.gallery-item:hover img {
  transform:scale(1.08);
}
.sponsors {
  background:#0a0a0a;
}
.sponsor-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
  gap:32px;
  align-items:stretch;
}
.sponsor-item {
  background:#141414;
  border:1px solid rgba(255,255,255,0.06);
  border-radius:12px;
  padding:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio:2/1;
  transition:all 0.3s;
}
.sponsor-item:hover {
  border-color:rgba(255,69,0,0.2);
  background:#1a1a1a;
}
.sponsor-item img {
  max-width:100%;
  max-height:60px;
  width:auto;
  height:auto;
  object-fit:contain;
  opacity:0.6;
  transition:opacity 0.3s;
}
.sponsor-item:hover img {
  opacity:0.9;
}
.contact {
  background:#0f0f0f;
}
.contact-form {
  max-width:640px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.form-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.contact-form input,.contact-form textarea {
  background:#141414;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:10px;
  padding:14px 18px;
  color:#fff;
  font-family:'Inter',sans-serif;
  font-size:14px;
  outline:none;
  transition:border-color 0.3s;
}
.contact-form input:focus,.contact-form textarea:focus {
  border-color:#ff4500;
}
.contact-form textarea {
  resize:vertical;
}
.form-alert {
  padding:14px 20px;
  border-radius:10px;
  margin-bottom:20px;
  font-size:14px;
  font-weight:500;
  animation:fadeDown 0.4s ease;
}
.form-alert.success {
  background:rgba(34,197,94,0.15);
  color:#22c55e;
  border:1px solid rgba(34,197,94,0.3);
}
.form-alert.error {
  background:rgba(239,68,68,0.15);
  color:#ef4444;
  border:1px solid rgba(239,68,68,0.3);
}
@keyframes fadeDown {
  from {
  opacity:0;
  transform:translateY(-10px);
}
to {
  opacity:1;
  transform:translateY(0);
}
}
.checkbox-label {
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:13px;
  color:#888;
  cursor:pointer;
}
.checkbox-label input[type="checkbox"] {
  width:16px;
  height:16px;
  margin-top:3px;
  accent-color:#ff4500;
}
.btn {
  display:inline-block;
  padding:14px 36px;
  border-radius:10px;
  font-family:'Inter',sans-serif;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  cursor:pointer;
  border:none;
  transition:all 0.3s;
}
.btn-primary {
  background:#ff4500;
  color:#fff;
}
.btn-primary:hover {
  background:#e03d00;
  transform:translateY(-1px);
}
.btn-outline {
  background:transparent;
  border:2px solid #ff4500;
  color:#ff4500;
}
.btn-outline:hover {
  background:#ff4500;
  color:#fff;
}
.footer {
  border-top:1px solid rgba(255,255,255,0.04);
  padding:32px 0;
}
.footer-content {
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.footer-links {
  display:flex;
  gap:24px;
}
.footer-links a {
  color:#666;
  text-decoration:none;
  font-size:14px;
  transition:color 0.3s;
}
.footer-links a:hover {
  color:#fff;
}
.footer-content p {
  color:#555;
  font-size:13px;
}

.blog-footer {
  text-align: center;
  margin-top: 40px;
}

@media (min-width:769px) {
  .gallery-grid {
  grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
  gap:12px;
}
}

@media (max-width:1024px) and (min-width:769px) {
  .achievement-grid {
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:768px) {
  .hamburger {
  display:flex;
}
.nav-links {
  display:none;
  position:absolute;
  top:100%;
  left:0;
  right:0;
  background:rgba(10,10,10,0.98);
  flex-direction:column;
  padding:24px;
  gap:16px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.nav-links.active {
  display:flex;
}
.section {
  padding:60px 0;
}
.hero-title {
  font-size:clamp(36px,15vw,56px);
}
.hero-number {
  font-size:clamp(60px,25vw,100px);
  -webkit-text-stroke:2px rgba(255,69,0,0.4);
}
.hero-desc {
  font-size:15px;
}
.stats-grid {
  grid-template-columns:repeat(2,1fr);
  gap:8px;
}
.stat-item {
  padding:20px 8px;
}
.stat-number {
  font-size:clamp(36px,10vw,48px);
}
.form-row {
  grid-template-columns:1fr;
}
.sponsor-grid {
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.sponsor-item {
  padding:20px;
}
.gallery-grid {
  grid-template-columns:repeat(auto-fill,minmax(140px,1fr));
  gap:8px;
}
  .gallery-item {
    animation-delay:calc(var(--i,0) * 0.06s);
  }
  .lightbox-prev { left:8px; width:36px; height:36px; font-size:20px; }
  .lightbox-next { right:8px; width:36px; height:36px; font-size:20px; }
  #backToTop { bottom:16px; right:16px; width:40px; height:40px; font-size:16px; }
  .blog-grid {
  grid-template-columns:1fr;
}
.achievement-grid {
  grid-template-columns:1fr;
}
.footer-content {
  flex-direction:column;
  gap:16px;
  text-align:center;
}
.container {
  padding:0 16px;
}
}
.section.no-padding-top { padding-top:0; }
.empty-text { text-align:center; color:#555; }
.gallery-empty { color:#555; grid-column:1/-1; text-align:center; padding:60px 0; }
.privacy-link { color:#ff4500; text-decoration:underline; }
.separator-dot { color:#555; }
.policy-update { color:#666; font-size:14px; margin-bottom:24px; }
.lightbox {
  display:none;
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index:9999;
  background:rgba(0,0,0,0.92);
  backdrop-filter:blur(8px);
  justify-content:center;
  align-items:center;
  cursor:zoom-out;
}
.lightbox.active {
  display:flex;
}
.lightbox-image {
  max-width:90vw;
  max-height:90vh;
  width:auto;
  height:auto;
  border-radius:12px;
  box-shadow:0 20px 80px rgba(0,0,0,0.8);
  user-select:none;
  -webkit-user-drag:none;
  pointer-events:none;
}
.lightbox-close {
  position:absolute;
  top:20px;
  right:24px;
  background:none;
  border:none;
  color:#fff;
  font-size:36px;
  cursor:pointer;
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  transition:background 0.3s;
  z-index:2;
}
.lightbox-close:hover {
  background:rgba(255,255,255,0.15);
}
.lightbox-nav {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.5);
  border:none;
  color:#fff;
  font-size:28px;
  width:48px;
  height:48px;
  border-radius:50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background 0.3s;
  z-index:2;
}
.lightbox-nav:hover {
  background:rgba(255,69,0,0.7);
}
.lightbox-prev { left:16px; }
.lightbox-next { right:16px; }
#backToTop {
  position:fixed;
  bottom:32px;
  right:32px;
  z-index:999;
  width:48px;
  height:48px;
  border-radius:50%;
  background:#ff4500;
  color:#fff;
  border:none;
  font-size:20px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transform:translateY(16px);
  transition:all 0.3s;
  box-shadow:0 4px 20px rgba(255,69,0,0.3);
}
#backToTop:hover {
  background:#e03d00;
  transform:translateY(0) scale(1.05);
}
#backToTop.visible {
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
img {
  -webkit-user-drag:none;
  user-select:none;
  -webkit-touch-callout:none;
}

/* === post.php === */
.post-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 50%, #1a1a2e 0%, #0a0a0a 70%);
  position: relative;
  overflow: hidden;
}
.post-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,69,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.post-hero .post-category {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  background: rgba(255,69,0,0.12);
  color: #ff4500;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  position: relative;
}
.post-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto 16px;
  position: relative;
}
.post-hero .post-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #888;
  font-size: 14px;
  position: relative;
}
.post-section {
  padding: 60px 24px;
}
.post-card {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(135deg, #141414, #1a1a1a);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.post-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #ff4500;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.post-card:hover::before {
  transform: scaleX(1);
}
.post-featured-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  margin-bottom: 28px;
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.post-body {
  color: #ccc;
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}
.post-body p {
  margin-bottom: 24px;
}
.post-body img {
  max-width: 100%;
  border-radius: 12px;
  margin: 32px auto;
  display: block;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.post-body h2, .post-body h3 {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 16px;
}
.post-body h2 { font-size: 26px; }
.post-body h3 { font-size: 22px; color: #ff4500; }
.post-body ul, .post-body ol {
  margin: 0 0 24px 24px;
  display: inline-block;
  text-align: left;
}
.post-body li {
  margin-bottom: 8px;
  color: #bbb;
}
.post-body a {
  color: #ff4500;
  text-decoration: underline;
}
.post-body blockquote {
  border-left: 3px solid #ff4500;
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(255,69,0,0.04);
  border-radius: 0 12px 12px 0;
  color: #aaa;
  font-style: italic;
}
.post-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 60px;
  padding: 0 24px;
  flex-wrap: wrap;
}
.post-nav .btn {
  min-width: 160px;
  text-align: center;
}

/* === blog.php === */
.blog-page-hero { padding:140px 0 60px; text-align:center; background:radial-gradient(ellipse at 50% 50%, #1a1a2e 0%, #0a0a0a 70%); }
.blog-page-hero h1 { font-family:'Oswald',sans-serif; font-size:clamp(36px,5vw,56px); color:#fff; text-transform:uppercase; }
.blog-page-hero p { color:#777; margin-top:8px; }
.blog-category-group { margin-bottom:48px; }
.blog-category-title { font-family:'Oswald',sans-serif; font-size:24px; color:#ff4500; text-transform:uppercase; margin-bottom:20px; padding-bottom:8px; border-bottom:1px solid rgba(255,69,0,0.15); }
.blog-card { display:block; background:linear-gradient(135deg,#141414,#1a1a1a); border:1px solid rgba(255,255,255,0.06); border-radius:16px; padding:28px; text-decoration:none; color:inherit; transition:all 0.3s; position:relative; overflow:hidden; }
.blog-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:#ff4500; transform:scaleX(0); transform-origin:left; transition:transform 0.4s; }
.blog-card:hover::before { transform:scaleX(1); }
.blog-card:hover { border-color:rgba(255,69,0,0.2); transform:translateY(-4px); }
.blog-card-meta { display:flex; justify-content:space-between; align-items:center; margin-bottom:12px; font-size:13px; }
.blog-category { display:inline-block; padding:2px 10px; border-radius:20px; background:rgba(255,69,0,0.1); color:#ff4500; font-size:12px; font-weight:600; }
.blog-date { color:#666; font-size:13px; }
.blog-card-title { font-size:18px; font-weight:700; color:#fff; margin-bottom:10px; line-height:1.4; }
.blog-card-excerpt { color:#999; font-size:14px; line-height:1.6; margin-bottom:16px; }
.blog-read-more { color:#ff4500; font-size:13px; font-weight:600; }
.empty-state { text-align:center; padding:80px 0; color:#555; }

/* === politica-de-confidentialitate.php === */
.policy-content { max-width: 800px; margin: 120px auto 60px; padding: 0 24px; text-align: center; }
.policy-content h1 { font-family: 'Oswald', sans-serif; font-size: 36px; color: #fff; margin-bottom: 8px; text-transform: uppercase; text-align: center; }
.policy-content h2 { font-family: 'Oswald', sans-serif; font-size: 22px; color: #ff4500; margin-top: 32px; margin-bottom: 12px; text-align: center; }
.policy-content p { color: #999; font-size: 15px; line-height: 1.8; max-width: 680px; margin: 0 auto 16px; text-align: center; }
.policy-content ul { display: inline-block; text-align: left; padding-left: 20px; }
.policy-content li { color: #999; font-size: 15px; line-height: 1.8; margin-bottom: 6px; }
.policy-content .lang-toggle { margin-bottom: 24px; text-align: center; }
.policy-content .lang-toggle a { color: #ff4500; text-decoration: none; font-size: 14px; font-weight: 600; cursor: pointer; }
.policy-content .lang-toggle a:hover { text-decoration: underline; }
.lang-ro, .lang-en { display: none; }
.lang-ro.active, .lang-en.active { display: block; }

@media (max-width: 768px) {
  .post-hero { padding: 120px 0 60px; }
  .post-section { padding: 40px 16px; }
  .post-card { padding: 24px; }
  .post-nav { flex-direction: column; align-items: center; }
  .post-nav .btn { width: 100%; max-width: 280px; }
}
/* === search-bar === */
.nav-search { position:relative; display:flex; align-items:center; margin-left:10px; }
.search-box { position:relative; }
.search-inner { position:relative; z-index:2; display:flex; align-items:center; border-radius:22px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.16); overflow:hidden; transition:border-color 0.3s; }
.search-box.open .search-inner { border-color:rgba(255,69,0,0.45); }
.search-toggle { width:38px; height:38px; flex:0 0 38px; display:flex; align-items:center; justify-content:center; background:transparent; border:none; color:#bbb; cursor:pointer; transition:color 0.3s, transform 0.3s; }
.search-toggle svg { width:17px; height:17px; }
.search-toggle:hover { color:#fff; }
.search-box.open .search-toggle { color:#ff4500; }
.search-input { width:0; padding:0; border:none; background:transparent; outline:none; color:#fff; font-size:14px; opacity:0; transition:width 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s, padding 0.4s; }
.search-input::placeholder { color:#666; }
.search-box.open .search-input { width:200px; padding:0 14px 0 0; opacity:1; }
.search-results { position:absolute; top:calc(100% + 12px); right:0; width:min(360px,90vw); background:rgba(12,12,14,0.98); border:1px solid rgba(255,255,255,0.1); border-radius:14px; box-shadow:0 24px 60px rgba(0,0,0,0.55); overflow-y:auto; max-height:min(420px,70vh); z-index:3000; animation:search-fade 0.25s ease; }
@keyframes search-fade { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }
.search-result-item { display:block; padding:11px 14px; text-decoration:none; border-bottom:1px solid rgba(255,255,255,0.05); transition:background 0.2s; }
.search-result-item:last-child { border-bottom:none; }
.search-result-item:hover, .search-result-item.active { background:rgba(255,69,0,0.14); }
.search-result-cat { display:block; font-size:10px; text-transform:uppercase; letter-spacing:0.1em; color:#ff8a00; margin-bottom:3px; }
.search-result-title { display:block; color:#fff; font-size:13.5px; font-weight:600; line-height:1.4; }
.search-result-title mark { background:transparent; color:#ff4500; font-weight:700; }
.search-result-date { display:block; color:#666; font-size:11px; margin-top:4px; }
.search-no-result { padding:16px 14px; color:#777; font-size:13px; text-align:center; }
@media (max-width: 768px) {
  .nav-search { width:100%; margin:10px 0 4px; }
  .search-box { width:100%; }
  .search-inner { width:100%; }
  .search-box.open .search-input { width:100%; padding:0 14px 0 0; }
  .search-results { position:static; width:100%; margin-top:8px; max-height:50vh; }
}
