body {
  margin: 0;
  padding: 0;
}

body,
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
  font-family: Arial, Helvetica, sans-serif;
  border: none;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1 1 auto;
}
/* === HEADER STYLES (FlameBet) === */

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #0c0c0c 0%, #1a0e00 50%, #ff7a00 100%);
  border-bottom: 1px solid rgba(255, 122, 0, 0.4);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  display: block;
  transition: transform 0.3s ease;
}
.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 24px;
}

.nav-menu a {
  color: #f3f3f3;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-menu a i {
  margin-right: 6px;
  color: #ff7a00;
}

.nav-menu a:hover {
  background-color: rgba(255, 122, 0, 0.15);
  color: #ffb84c;
  transform: translateY(-1px);
}

/* === Mobile toggle === */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #f3f3f3;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nav-toggle:hover {
  transform: scale(1.1);
}

/* === Responsive === */
@media (max-width: 900px) {
  .nav-menu {
    position: absolute;
    top: 72px;
    right: 0;
    flex-direction: column;
    background: #0c0c0c;
    border-left: 1px solid rgba(255, 122, 0, 0.3);
    border-bottom: 1px solid rgba(255, 122, 0, 0.3);
    width: 220px;
    padding: 16px;
    display: none;
  }

  .nav-menu.active {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .nav-toggle {
    display: block;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* === FLAMEBET HERO SECTION === */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0C0C0C 0%, #1A0E00 40%, #FF7A00 120%);
  color: #F3F3F3;
  overflow: hidden;
  padding: 100px 20px;
  text-align: center;
}

/* === Фоновые световые пятна === */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.25;
  z-index: 0;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.8;
  animation: pulseGlow 6s ease-in-out infinite;
}
.glow-orange {
  width: 300px; height: 300px;
  background: #FF7A00;
  top: 10%; left: 15%;
}
.glow-amber {
  width: 240px; height: 240px;
  background: #FFB84C;
  bottom: 10%; right: 20%;
  animation-delay: 2s;
}
.glow-red {
  width: 200px; height: 200px;
  background: #FF5500;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  animation-delay: 4s;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* === Контент === */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title span {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(90deg, #FF7A00 0%, #FFB84C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  font-size: 18px;
  max-width: 720px;
  margin: 24px auto;
  line-height: 1.6;
  color: #E6E6E6;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.badge {
  background: rgba(255, 122, 0, 0.15);
  border: 1px solid rgba(255, 122, 0, 0.3);
  color: #FFB84C;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}
.badge i {
  color: #FF7A00;
  font-size: 16px;
}
.badge:hover {
  background: rgba(255, 122, 0, 0.25);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title span { font-size: 32px; }
  .hero-subtext { font-size: 16px; }
}
/* === FLAMEBET FEATURES SECTION === */
.flame-features {
  background: radial-gradient(circle at 50% 20%, rgba(255,122,0,0.15), transparent 60%), #0C0C0C;
  padding: 80px 20px;
  color: #F3F3F3;
  text-align: center;
}

.flame-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #FF7A00 0%, #FFB84C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.flame-title span {
  color: #FFB84C;
}

.flame-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.flame-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,122,0,0.25);
  border-radius: 18px;
  padding: 28px 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}
.flame-card._feat {
    display: flex;
    flex-direction: column;
}
.flame-card:hover {
  transform: translateY(-6px);
  border-color: #FF7A00;
  box-shadow: 0 8px 20px rgba(255,122,0,0.3);
}

.flame-icon {
  font-size: 36px;
  color: #FF7A00;
  margin-bottom: 16px;
  animation: pulseIcon 3s infinite ease-in-out;
}

.flame-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #FFB84C;
}

.flame-card p {
  font-size: 14px;
  color: #E0E0E0;
  line-height: 1.5;
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.85; }
}

/* Responsive */
@media (max-width: 768px) {
  .flame-title { font-size: 26px; margin-bottom: 40px; }
  .flame-card { padding: 22px 16px; }
}
/* === FLAMEBET CASINO SECTION === */
.flame-casinos {
  background: #0b0b0b;
  padding: 80px 20px;
  color: #fff;
}
.flame-casinos .container {
  max-width: 1200px;
  margin: 0 auto;
}
.flame-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #FF7A00, #FFB84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Заголовки колонок */
.flame-header {
  display: grid;
  grid-template-columns: 2fr 3fr 1fr 1.5fr;
  text-align: center;
  font-size: 14px;
  color: #f3f3f3;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,122,0,0.3);
  margin-bottom: 30px;
}
.flame-header i {
  color: #FF7A00;
  margin-right: 6px;
}

/* Карточки казино */
.flame-card {
  display: grid;
  grid-template-columns: 2fr 3fr 1fr 1.5fr;
  align-items: center;
  text-align: center;
  background: linear-gradient(90deg, rgba(255,122,0,0.07), rgba(0,0,0,0.5));
  border: 1px solid rgba(255,122,0,0.25);
  border-radius: 16px;
  margin-bottom: 20px;
  padding: 20px;
  transition: all 0.3s ease;
}
.flame-card:hover {
  border-color: #FF7A00;
  transform: translateY(-3px);
  box-shadow: 0 0 16px rgba(255,122,0,0.3);
}

/* Логотип */
.flame-card .logo img {
  max-width: 130px;
  transition: transform 0.3s ease;
}
.flame-card:hover img {
  transform: scale(1.05);
}

/* Бонус */
.bonus-text {
  font-weight: 600;
  color: #FFD580;
  font-size: 15px;
}

/* Рейтинг */
.rating .stars {
  color: #FF7A00;
}
.rating .score {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
}

/* Кнопка */
.flame-btn {
  background: linear-gradient(90deg, #FF7A00, #FFB84C);
  color: #0C0C0C;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.flame-btn:hover {
  background: linear-gradient(90deg, #FFB84C, #FF7A00);
  transform: scale(1.05);
}

/* Адаптив */
@media (max-width: 768px) {
  .flame-header {
    display: none;
  }
  .flame-card {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
}
/* === SECTION FLAME INFO === */
.flame-info {
  background: #0C0C0C;
  color: #fff;
  padding: 80px 20px;
}
.flame-info .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Блоки */
.flame-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,122,0,0.25);
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.flame-block.gradient {
  background: linear-gradient(90deg, rgba(255,122,0,0.1), rgba(255,184,76,0.1));
}
.flame-block.dark {
  background: radial-gradient(circle at 50% 20%, rgba(255,122,0,0.08), rgba(0,0,0,0.6));
}
.flame-block.light {
  background: linear-gradient(180deg, rgba(255,122,0,0.05), rgba(255,184,76,0.05));
}
.flame-block:hover {
  border-color: #FF7A00;
  box-shadow: 0 0 25px rgba(255,122,0,0.4);
}

.flame-icon {
  font-size: 38px;
  margin-bottom: 20px;
  text-align: center;
  color: #FFB84C;
}
.flame-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #FF7A00, #FFB84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.flame-text {
  text-align: center;
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.6;
}
.flame-text.light {
  color: #d6d6d6;
}

/* Фичи */
.flame-features._home {
    display: flex;
    margin-top: 0;
    flex-direction: column;
}
.flame-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.feature {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,122,0,0.25);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}
.feature:hover {
  background: rgba(255,122,0,0.1);
  transform: translateY(-4px);
}
.feature .emoji {
  font-size: 26px;
}
.feature h3 {
  color: #FFB84C;
  margin-bottom: 8px;
  font-size: 16px;
}
.feature p {
  color: #ddd;
  font-size: 14px;
}

/* Грид */
.flame-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .flame-grid {
    grid-template-columns: 1fr;
  }
}

/* Список и шаги */
.flame-list ul {
  list-style: none;
  padding: 0;
}
.flame-list li {
  padding: 8px 0;
  color: #FFB84C;
  font-weight: 500;
}
.flame-steps {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 20px;
}
.flame-steps .step {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #e0e0e0;
  font-size: 15px;
}
.flame-steps .step span {
  background: #FF7A00;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #0C0C0C;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

/* Liens jeu responsable */
.flame-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.flame-links a {
  background: linear-gradient(90deg, #FF7A00, #FFB84C);
  color: #0C0C0C;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.flame-links a:hover {
  background: linear-gradient(90deg, #FFB84C, #FF7A00);
  transform: scale(1.05);
}

/* Avertissement */
.flame-warning {
  background: rgba(255,122,0,0.1);
  border: 1px solid rgba(255,184,76,0.3);
  padding: 16px;
  border-radius: 12px;
  color: #FFD580;
  text-align: center;
  font-size: 14px;
}

.flamebet-footer {
  background: linear-gradient(180deg, #0b0b0b 0%, #1a1a1a 100%);
  color: #eee;
  font-family: "Poppins", sans-serif;
  padding: 60px 20px 20px;
  border-top: 1px solid rgba(255, 102, 0, 0.25);
}

/* === PARTNERS === */
.footer-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 115, 0, 0.25);
}
.footer-partners img {
  width: 70px;
  height: auto;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer-partners img:hover {
  transform: scale(1.1);
  opacity: 1;
}
.divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 115, 0, 0.2);
}

/* === CONTACT === */
.footer-contact {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
}
.footer-contact h3 {
  color: #ff7b00;
  font-size: 22px;
  margin-bottom: 15px;
}
.footer-contact a {
  color: #ffaa42;
  text-decoration: none;
  font-weight: 500;
}
.footer-contact a:hover {
  text-decoration: underline;
}

/* === LEGAL TEXT === */
.footer-legal {
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
  line-height: 1.7;
  color: #ccc;
}
.footer-legal a {
  color: #ffb347;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}

/* === COPYRIGHT === */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #999;
  border-top: 1px solid rgba(255, 115, 0, 0.15);
  padding-top: 20px;
}

.privacy-section {
  background: linear-gradient(135deg, #0b0b0b, #1a1a1a);
  color: #f8f8f8;
  min-height: 100vh;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-box {
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 102, 0, 0.3);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 0 25px rgba(255, 94, 0, 0.25);
  backdrop-filter: blur(6px);
}

.privacy-title {
  text-align: center;
  font-size: 32px;
  background: linear-gradient(90deg, #ff7b00, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.privacy-box h2 {
  color: #ff7b00;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 22px;
}

.privacy-box p {
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 20px;
}

.privacy-box ul {
  list-style-type: disc;
  margin: 10px 0 20px 30px;
  color: #ccc;
}

.highlight {
  color: #ffb347;
}

.notice {
  background: linear-gradient(90deg, rgba(255, 94, 0, 0.2), rgba(255, 153, 51, 0.15));
  border: 1px solid rgba(255, 153, 51, 0.3);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #f5f5f5;
  font-size: 15px;
  box-shadow: 0 0 20px rgba(255, 94, 0, 0.2);
}
.terms-section {
  background: linear-gradient(135deg, #0b0b0b, #1a1a1a);
  color: #f8f8f8;
  min-height: 100vh;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-box {
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 102, 0, 0.3);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 0 25px rgba(255, 94, 0, 0.25);
  backdrop-filter: blur(6px);
}

.terms-title {
  text-align: center;
  font-size: 32px;
  background: linear-gradient(90deg, #ff7b00, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.terms-box h2 {
  color: #ff7b00;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 22px;
}

.terms-box p {
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-box ul {
  list-style-type: disc;
  margin: 10px 0 20px 30px;
  color: #ccc;
}

.highlight {
  color: #ffb347;
}

.notice {
  background: linear-gradient(90deg, rgba(255, 94, 0, 0.2), rgba(255, 153, 51, 0.15));
  border: 1px solid rgba(255, 153, 51, 0.3);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #f5f5f5;
  font-size: 15px;
  box-shadow: 0 0 20px rgba(255, 94, 0, 0.2);
  margin-top: 40px;
}
.notice h3 {
  color: #ff7b00;
  margin-bottom: 10px;
  font-size: 20px;
}


.responsible-section {
  background: linear-gradient(135deg, #0b0b0b, #1a1a1a);
  color: #f5f5f5;
  min-height: 100vh;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}

.responsible-container {
  max-width: 900px;
  margin: 0 auto;
}

.responsible-box {
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 102, 0, 0.35);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 0 25px rgba(255, 94, 0, 0.25);
  backdrop-filter: blur(6px);
}

.responsible-title {
  text-align: center;
  font-size: 32px;
  background: linear-gradient(90deg, #ff7b00, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.responsible-box h2 {
  color: #ff7b00;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 22px;
}

.responsible-box p {
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 20px;
}

.responsible-box ul {
  list-style-type: disc;
  margin: 10px 0 20px 30px;
  color: #ccc;
}

.highlight {
  color: #ffb347;
}

.help-box {
  background: linear-gradient(90deg, rgba(255, 94, 0, 0.2), rgba(255, 153, 51, 0.15));
  border: 1px solid rgba(255, 153, 51, 0.3);
  border-radius: 10px;
  padding: 25px;
  margin-top: 30px;
  box-shadow: 0 0 20px rgba(255, 94, 0, 0.2);
}

.help-box h3 {
  color: #ffb347;
  margin-bottom: 10px;
  font-size: 20px;
}

.help-links {
  list-style-type: none;
  padding: 0;
  margin-top: 10px;
}

.help-links li {
  margin-bottom: 6px;
}

.help-links a {
  color: #ffaa42;
  text-decoration: none;
  transition: color 0.3s ease;
}

.help-links a:hover {
  color: #ffcc73;
  text-decoration: underline;
}

.notice {
  background: rgba(255, 115, 0, 0.1);
  border: 1px solid rgba(255, 115, 0, 0.3);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #f5f5f5;
  font-size: 15px;
  margin-top: 40px;
}
.notice h3 {
  color: #ff7b00;
  margin-bottom: 10px;
  font-size: 20px;
}
/* === AGE POPUP === */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.popup-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.popup-content {
  background: #111;
  border: 2px solid #ff7b00;
  border-radius: 18px;
  padding: 40px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.4);
  color: #fff;
  animation: popupFade 0.8s ease;
}
.popup-content h2 {
  font-size: 1.8rem;
  color: #ff7b00;
  margin-bottom: 10px;
}
.popup-content p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 25px;
  line-height: 1.6;
}
.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.btn-yes, .btn-no {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.btn-yes {
  background: linear-gradient(90deg, #ff7b00, #ffb347);
  color: #fff;
}
.btn-no {
  background: #222;
  color: #ccc;
  border: 1px solid #444;
}
.btn-yes:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 136, 0, 0.5);
}
.btn-no:hover {
  background: #333;
  color: #fff;
}

@keyframes popupFade {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #eee;
  border: 1px solid rgba(255, 153, 51, 0.3);
  box-shadow: 0 0 20px rgba(255, 136, 0, 0.25);
  border-radius: 12px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 700px;
  z-index: 9998;
  font-size: 0.9rem;
}
.cookie-banner a {
  color: #ffaa42;
  text-decoration: none;
}
.cookie-banner a:hover {
  text-decoration: underline;
}
.cookie-btn {
  background: linear-gradient(90deg, #ff7b00, #ffb347);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.cookie-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(255, 136, 0, 0.4);
}
.cookie-banner.hidden {
  display: none;
}
