/* Hide scrollbar */
::-webkit-scrollbar { display: none; }
html { scrollbar-width: none; -ms-overflow-style: none; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #F84143, #000);
}
.hero h1 {
  font-size: 3em;
  color: #F84143;
}
.hero button {
  padding: 10px 20px;
  background: #F84143;
  border: none;
  color: #fff;
  font-size: 1.2em;
  cursor: pointer;
  border-radius: 8px;
}
.hero button:hover {
  background: #ff5555;
}

.plans {
  padding: 50px;
  text-align: center;
}
.plans h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #F84143;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.plan {
  background: #111;
  border: 2px solid #F84143;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(248, 65, 67, 0.3);
}

.plan h3 {
  font-size: 1.8em;
  color: #F84143;
}
.plan .price {
  font-size: 2em;
  font-weight: bold;
  color: #fff;
}
.plan p {
  margin: 10px 0;
  color: #ccc;
}
.plan button {
  margin-top: 15px;
  padding: 12px;
  width: 100%;
  background: #F84143;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1.1em;
  cursor: pointer;
}
.plan button:hover {
  background: #ff5555;
}

@media (max-width: 1200px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

.discord {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(to top, #F84143, #000);
}
.discord button {
  padding: 12px 24px;
  background: #5847d7;
  border: none;
  color: #fff;
  font-size: 1.1em;
  cursor: pointer;
  border-radius: 8px;
}
.discord button:hover {
  background: #ff5555;
}

footer {
  text-align: center;
  padding: 20px;
  background: #000;
  border-top: 1px solid #222;
  color: #777;
  font-size: 0.9em;
  box-shadow: 0 0 10px #F84143 inset;
}

.logo {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(248, 65, 67, 0.5);
}

.logo-footer {
  height: 50px;
  margin-bottom: 10px;
}

.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
}

.language-switcher .flag {
  width: 32px;
  height: auto;

}

.language-menu {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  background: #111;
  border: 2px solid #F84143;
  border-radius: 8px;
  padding: 5px;
  flex-direction: column;
  z-index: 1001;
}
.language-menu img {
  width: 32px;
  height: auto;
  margin: 5px 0;
  cursor: pointer;
}
.language-menu img:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

.ram-title::after {
  content: "RAM";
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: bold;
  background: #4cafef;   /* světle modrá */
  color: white;
  border-radius: 6px;
  text-transform: uppercase;
  vertical-align: middle;
}

.order {
  text-align: center;
  padding: 100px 20px;
}

.order h1 {
  font-size: 2rem;
  color: #F84143;
  margin-bottom: 20px;
}

.order p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.order button {
  background: #F84143;
  border: none;
  border-radius: 8px;
  color: white;
  padding: 12px 25px;
  margin: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.order button:hover {
  background: #d93636;
}

