/* Global layout */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top center, #323232 0, #050608 60%, #010101 100%);
  color: #f5f1e6;
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero section */
.hero {
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 10px 6px -10px; /* ↓ THIS is the important fix */
  width: 100%;
  max-width: 960px;
  text-align: center;
}

.logo {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.tagline {  
  margin: 0 auto 18px;
  max-width: 600px;
  font-size: 1.1rem;
  color: #d7d2c3;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease, color 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #f2c148, #c49124);
  color: #1b1308;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8);
}

.btn.secondary {
  background: transparent;
  border-color: #f2c148;
  color: #f2c148;
}

.btn.secondary:hover {
  background: rgba(242, 193, 72, 0.1);
  transform: translateY(-1px);
}

/* Follow section */
.follow {
  width: 100%;
  max-width: 960px;
  padding: 24px 16px 48px;
  text-align: center;
}

.follow h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.follow-text {
  margin: 0 0 24px;
  color: #c4c4c4;
}

.social-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.social-icon {
  width: 28px;       /* uniform size */
  height: 28px;
  object-fit: contain;
  display: block;
}

.social-link:hover {
  background: rgba(242, 193, 72, 0.08);
  border-color: #f2c148;
  transform: translateY(-1px);
}

/* Footer */
.footer {
  margin-top: auto;
  width: 100%;
  padding: 16px;
  text-align: center;
  font-size: 0.8rem;
  color: #a0a0a0;
  border-top: 1px solid #191919;
}

.lang-switch {
  margin-top: 20px;
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 4px;
  gap: 4px;
}

.lang-switch button {
  background: transparent;
  border: none;
  padding: 6px 16px;
  color: #fff;
  font-size: 14px;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

/* THIS is the missing golden highlight */
.lang-switch button.active {
  background: linear-gradient(180deg, #f1c66e, #d9a431);
  color: #000;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

.share-btn {
  margin-top: 20px;
  margin-bottom: 156x; 
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: linear-gradient(180deg, #f1c66e, #d9a431);
  border: none;
  padding: 10px 22px;
  border-radius: 22px;

  font-size: 14px;
  font-weight: 600;
  color: #000;
  cursor: pointer;

  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.share-btn svg path {
  stroke: #000; /* good contrast on gold background */
}











.lang-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)); /* 5 per row */
  gap: 6px;
  padding: 6px;
  background: #111;
  border-radius: 999px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.lang-grid button {
  background: transparent;
  border: none;
  padding: 6px 0;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

/* active language */
.lang-grid button.active {
  background: linear-gradient(180deg, #f1c66e, #d9a431);
  color: #000;
  font-weight: 600;
}



body {
  overflow-x: hidden;
}


.featured-teaser{
  margin:20px auto;
  width:100%;
  max-width:760px;
  text-align:center;
}

.teaser-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-bottom:10px;
}

.teaser-title h2{
  color:#f2c148;
  margin:0;
   font-size:1rem;
    letter-spacing:.12em;
}

.teaser-title span{
  width:120px;
  height:1px;
  background:linear-gradient(
      90deg,
      transparent,
      #c49124,
      transparent
  );
}

.teaser-card{
  position:relative;
  display:block;
  overflow:hidden;
  border-radius:20px;
  border:1px solid rgba(242,193,72,.7);

  box-shadow:
      0 10px 35px rgba(0,0,0,.65);

  transition:.25s;
}

.teaser-card:hover{
  transform:translateY(-3px);

  box-shadow:
      0 16px 50px rgba(0,0,0,.85);
}

.teaser-video{
   border-radius:14px;
  display:block;
  width:100%;
     max-height:320px;
  object-fit:cover;
}

.play-circle{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);

  width:70px;
  height:70px;

  border-radius:50%;

  background:rgba(0,0,0,.45);

  border:3px solid #f2c148;

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:
      0 0 25px rgba(242,193,72,.6);
}

.play-triangle{
  margin-left:6px;

  width:0;
  height:0;

  border-top:18px solid transparent;
  border-bottom:18px solid transparent;
  border-left:28px solid #f2c148;
}

@media(max-width:600px){

.play-circle{
   width:65px;
   height:65px;
}

.play-triangle{
   border-top:12px solid transparent;
   border-bottom:12px solid transparent;
   border-left:20px solid #f2c148;
}

}