* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  background: url('../img/bg.png') center/cover no-repeat fixed;
  color: #fff;
  overflow-x: hidden;
}

html, body {
  overscroll-behavior: none;
}


a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: 1200px; margin: auto; }
.container .logo { 
  height: 200px;
}
header {
  font-weight: 800;
  text-align: center;
  padding-bottom: 40px;
  background: rgba(0,0,0,0.4);
}
header h1 { 
  color: #ffcb05;
  font-size: 5.5em; 
  padding-top: 20px;
}
header p { font-size: 1.5em; margin-bottom: 40px; }
.cta-btn {
  background: #ffcb05;
  color: #000;
  padding: 15px 30px;
  font-size: 1em;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta-btn:hover { background: #ffd633; transform: scale(1.05); }
.socials { margin-top: 50px; }
.socials img { width: 32px; margin: 0 10px; transition: transform 0.3s; }
.socials img:hover { transform: scale(1.2); }

section { padding: 80px 0; background: #111; }
section:nth-child(even) { 
  
}
.semi-dark {
  background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.75)), url('../img/bg.png');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
}
.super-light {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url('../img/bghero.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
}

h2 { text-align: center; margin-bottom: 40px; font-size: 2em; }
.cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.card {
  background: #222;
  padding: 30px;
  border-radius: 15px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s;
}
.card:hover { transform: translateY(-10px); }
.card img { width: 64px; margin-bottom: 15px; }

.roadmap-step {
  padding: 20px;
  background: #2a2a2a;
  border-left: 5px solid #ffcb05;
  margin: 10px 0;
}
.roadmap-step.done { border-color: #4caf50; }
.roadmap-step.soon { border-color: #03a9f4; }

.screenshots img {
  width: 300px;
  border-radius: 15px;
  margin: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.faq {
  max-width: 800px;
  margin: auto;
}
.faq-item {
  background: #2c2c2c;
  margin: 10px 0;
  padding: 20px;
  border-radius: 10px;
}

footer {
  padding: 40px 20px;
  text-align: center;
  background: #000;
  font-size: 0.8em;
}

footer .terms {
  color: #444;
}
footer .terms a {
  color: #888;
  padding-left: 10px;
  padding-right: 10px;
}





#shrink-header {
  position: fixed;
  top: 0;
  right: -30px;
  width: 100%;
  height: 70px;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#shrink-header.visible {
  opacity: 1;
  pointer-events: auto;
}
.shrink-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
#shrink-header h1 {
  font-size: 1.2em;
  color: #ffcb05;
  padding-bottom: 7px;
}
#shrink-logo {
  height: 50px;
}
#shrink-cta {
  font-size: 0.8em;
  padding: 5px 15px;
  background: #ffcb05;
  color: #000;
  border-radius: 10px;
  text-decoration: none;
}
#shrink-socials img {
  height: 15px;
  padding-right: 5px;
}



#lang-switcher {
  position: fixed;
  top: 15px;
  right: 10px;
  z-index: 1001;
}

#lang-switcher button {
  background: transparent;
  border: 2px solid #ffcb05;
  color: #ffcb05;
  font-weight: 600;
  padding: 5px 10px;
  margin-top: 8px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}

#lang-switcher button:hover,
#lang-switcher button.active {
  background: #ffcb05;
  color: #000;
}

.msh {
  display: none;
}

@media (max-width: 600px) {
  #lang-switcher {
    top: 10px;
    left: 5px;
  }
  #lang-switcher button {
    padding: 3px 3px;
    margin: 2px;
    font-size: 10px;
    border-radius: 6px;
  }
  .msh {
    display: block;
  }
}



.legal-page {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px 20px;
}
.legal-page h1 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 10px;
}

.legal-page .last-updated {
  text-align: right;
  font-size: 0.9em;
  color: #ccc;
  margin-bottom: 30px;
}

.legal-page h2 {
  margin-top: 40px;
  font-size: 1.4em;
}

.legal-page p {
  text-align: left;
  line-height: 1.7em;
  font-size: 1em;
  margin-bottom: 20px;
}
