@font-face {
  src: url('../fonts/LifeCraft_Font.ttf') format('truetype');
  font-family: 'LifeCraft';
}
@font-face {
  src: url('../fonts/deltha.regular.otf') format('opentype');
  font-family: 'Deltha';
}
@font-face {
  src: url('../fonts/lato.ttf') format('truetype');
  font-family: 'Lato';
}

*{margin:0;padding:0;box-sizing:border-box;font-family:Arial;}

body {
  background-color:#093655;   /* háttér szín ha vége a képnek */
  background-image:url("../images/hero.jpg");
  background-repeat:no-repeat; 
  background-position:top center;
  color:white;
  background-size: 90%;
}
body.site-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-content-wrap {
  flex: 1 0 auto;
  width: 100%;
}

nav {
  font-family: "Lato", sans-serif;
  text-shadow: 1px 1px 9px rgba(0,0,0,0.5);
  position: fixed;
  z-index: 9999;
  top:0;
  left:0;
  width:100%;
  transition: all 0.2s ease-in-out;
}
nav::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(14, 23, 35, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index:-1;
}
nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #00a2ff, transparent);
  filter:
    drop-shadow(0 0 4px #00a2ff)
    drop-shadow(0 0 8px rgba(0,162,255,0.6));
}

nav > ul {
  list-style: none;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}
nav > ul > li {
  position: relative;
  transition: all 0.1s ease-in-out;
}
nav > ul > li > a {
  display: block;
  padding: 25px 20px;
  color: #FFFFFF;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.1s ease-in-out;
  transform-origin: center center;
}
nav > ul > li > a:hover {
  transform: scale(1.20);
  color: #00a2ff;
  text-shadow: 1px 1px 10px rgba(0, 162, 255, 0.9);
}
nav > ul > li.right {
  position: absolute;
  right: 30px;
}
nav ul ul{
  list-style:none;
  position:absolute;
  top:100%;
  left:-46px;
  min-width:180px;
  background: rgba(14, 23, 35, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity:0;
  visibility:hidden;
  transform:translateY(-10px);
  transition:all .25s ease;
  padding:0;
  margin:0;
}
nav ul ul li {
  width: 100%;
}
nav ul ul li a {
  font-size: 14px;
  font-weight: 500;
  display: block;
  padding: 15px 30px;
  color: #fff;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
  transform-origin: center center;
}
nav ul ul li a:hover {
  transform: scale(1.20);
  color: #00a2ff;
  text-shadow: 1px 1px 10px rgba(0, 162, 255, 0.9);
}
nav ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
nav ul ul ul {
  list-style: none;
  position: absolute;
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.25s ease;
}
nav ul ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
#menu-toggle {
  display:none;
}
.menu-icon {
  display:none;
  cursor:pointer;
  padding:20px;
  color:#fff;
  font-size:20px;
  text-align:left;
  background:#1e242f;
  letter-spacing:2px;
}



.hero {
  height:900px;
  margin-bottom: -400px;
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
  text-align:center;
}
.hero-center {
  padding: 20px;
  width: auto;
 /* border-radius: 10px;
  background: rgba(14, 23, 35, 0.6);
  border: 1px solid #3a9ec8;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);*/
}
.logo_text {
  color: #fff;
  font-family: 'Deltha', sans-serif;
  font-size: 25px;
   text-shadow:
    0 0 5px #000,
    0 0 10px #000,
    0 0 15px #000,
    0 0 20px #00d8ff,
    0 0 30px #00d8ff;
}
.text-container > span {
  color: #fff;
  font-family: 'LifeCraft';
  font-size: 40px;
  text-transform: uppercase;
  animation: glow 5s ease-in-out infinite;
}
@keyframes glow {
  0%,
  100% {
    color: #00d8ff;
    text-shadow: 0 0 10px #00a2ff, 0 0 50px #00a2ff, 0 0 100px #00a2ff;
  }
  10%,
  90% {
    color: #fff;
    text-shadow: none;
  }
}
.text-container > span:nth-child(2) {
  animation-delay: 0.25s;
}
.text-container > span:nth-child(3) {
  animation-delay: 0.5s;
}
.text-container > span:nth-child(4) {
  animation-delay: 0.75s;
}
.text-container > span:nth-child(5) {
  animation-delay: 1s;
}
.text-container > span:nth-child(6) {
  animation-delay: 1.25s;
}
.text-container > span:nth-child(7) {
  animation-delay: 1.5s;
}
.text-container > span:nth-child(8) {
  animation-delay: 1.75s;
}
.text-container > span:nth-child(9) {
  animation-delay: 2s;
}
.text-container > span:nth-child(10) {
  animation-delay: 2.25s;
}

.realm-status {
  position:absolute;
  left:300px;
  top:200px;
  padding:20px;
  border-radius:8px;
  background: rgba(14, 23, 35, 0.6);
  border: 1px solid #3a9ec8;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.realm {
  display:flex;
  justify-content:space-between;
  margin:8px 0;
}
.realm-faction-placeholder {
  color: #ff9e9e;
  font-size: 13px;
  margin-top: 8px;
  max-width: 400px;
  line-height: 1.4;
}

main {
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns: 3fr 1fr;
  gap:10px;
  padding:10px;
  align-items:start;
}
.content {
  flex:3;
}
.sidebar {
  flex:1;
}
.sidebar-box {
  overflow: hidden;
  margin-bottom: 10px;
  border-radius:5px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
}
.sidebar-title {
  width: 100%;
  padding: 14px 20px;
  background-image: url("../images/title_texture.jpg");
}
.sidebar-content {
  padding: 10px;
  background-image: url("../images/bg_texture.jpg");
}

.news {
  display:flex;
  margin-bottom:10px;
  border-radius:5px;
  overflow:hidden;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
}
.news img {
  width:200px;
  object-fit:cover;
}
.news-text {
  padding: 0;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-text-title {
  font-weight: bold;
  display: block;
  width: 100%;
  padding: 14px 20px;
  background-image: url("../images/title_texture.jpg");
  box-sizing: border-box;
  color: #FFFFFF;
}
.news-text-content {
  padding: 10px;
  background-image: url("../images/bg_texture.jpg");
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.news-excerpt {
  flex: 1;
  min-height: 0;
}
.news-actions-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}
.news-vote-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.news-text button:not(.btn-vote) {
  margin-top:10px;
  background:orange;
  border:none;
  padding:8px 15px;
  cursor:pointer;
}
footer, .site-footer {
  text-align:center;
  padding:20px;
  background:#0d141d;
  margin-top:auto;
  font-size:12px;
  flex-shrink:0;
}
.g-recaptcha, .cf-turnstile {
  margin: 16px 0;
}


nav > ul > li.nav-lang {
  position: absolute;
  right: 200px;
}
nav > ul > li.nav-lang ~ li.right {
  right: 30px;
}
.page-wrap {
  max-width: 900px;
  margin: 120px auto 40px;
  padding: 24px;
  background: rgba(14, 23, 35, 0.75);
  border: 1px solid #3a9ec8;
  border-radius: 8px;
}
.form-page h1, .download-page h1, .ladder-page h1, .profile-layout h1, .admin-nav + h1 {
  font-family: 'Deltha', sans-serif;
  margin-bottom: 16px;
}
.site-form label {
  display: block;
  margin-top: 12px;
  margin-bottom: 4px;
  font-family: "Lato", sans-serif;
}
.site-form input[type="text"],
.site-form input[type="email"],
.site-form input[type="password"],
.site-form input[type="number"],
.site-form select,
.site-form textarea {
  width: 100%;
  max-width: 420px;
  padding: 10px;
  border: 1px solid #3a9ec8;
  border-radius: 4px;
  background: rgba(0,0,0,0.3);
  color: #fff;
}
.site-form select {
  cursor: pointer;
}
.site-form button, .site-btn {
  margin-top: 16px;
  padding: 10px 20px;
  background: #c6861a;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-family: "Lato", sans-serif;
}
.site-flash {
  max-width: 900px;
  margin: 80px auto 0;
  padding: 12px;
  border-radius: 4px;
  text-align: center;
}
.site-flash-ok { background: rgba(0,120,0,0.4); border: 1px solid #0a0; }
.site-flash-err { background: rgba(120,0,0,0.4); border: 1px solid #a00; }
.profile-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 100px auto 40px;
  padding: 16px;
  align-items: start;
}
.profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.profile-nav {
  padding: 12px 16px;
  background: rgba(14, 23, 35, 0.85);
  border: 1px solid #3a9ec8;
  color: #fff;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  border-radius: 4px;
}
.profile-nav:hover, .profile-nav.active {
  color: #00a2ff;
  border-color: #00a2ff;
}
.profile-main {
  background: rgba(14, 23, 35, 0.75);
  border: 1px solid #3a9ec8;
  border-radius: 8px;
  padding: 20px;
  min-height: 200px;
}
.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.admin-nav a {
  padding: 8px 12px;
  background: rgba(0,0,0,0.25);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #3a9ec8;
  font-size: 13px;
}
.admin-nav a.active {
  background: rgba(0, 162, 255, 0.2);
  color: #00a2ff;
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.admin-stat-box {
  padding: 16px;
  background: rgba(0,0,0,0.25);
  border-radius: 6px;
  border: 1px solid #3a9ec8;
  text-align: center;
}
.admin-stat-box strong {
  display: block;
  font-size: 28px;
  margin-top: 8px;
  color: #00d8ff;
}
.admin-form textarea {
  width: 100%;
  max-width: 100%;
}
.admin-list {
  list-style: none;
  margin-top: 20px;
}
.admin-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.inline-form {
  display: inline;
}
.inline-form button {
  margin-left: 8px;
  padding: 4px 8px;
  background: #600;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
}
.download-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  max-width: 640px;
}
.download-block {
  padding: 20px;
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  border: 1px solid #3a9ec8;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.download-block p {
  margin: 0 0 4px 0;
  max-width: 100%;
}
.download-block > .site-btn {
  margin-top: 14px;
}
.download-btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  width: 100%;
}
.download-btn-row .site-btn {
  margin-top: 0;
}
.download-block label {
  display: block;
  width: 100%;
  margin-bottom: 4px;
  font-family: "Lato", sans-serif;
}
.realmlist-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  margin-top: 10px;
  width: 100%;
  max-width: 520px;
  align-self: center;
}
.realmlist-row input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding: 10px 12px;
  box-sizing: border-box;
  background: rgba(0,0,0,0.3);
  border: 1px solid #3a9ec8;
  color: #fff;
  font-size: 14px;
}
.realmlist-row .site-btn,
.realmlist-row button.site-btn {
  margin-top: 0;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  box-sizing: border-box;
}
.news-vote-form {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}
.btn-vote {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  padding: 4px 8px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}
.btn-vote:hover {
  border-color: #00a2ff;
  color: #00a2ff;
}
.btn-readmore {
  display: inline-block;
  margin-top: 0;
  padding: 8px 15px;
  background: orange;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.btn-readmore:hover {
  filter: brightness(1.08);
}
.news-single-page {
  max-width: 900px;
}
.news-single img {
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
}
.news-body {
  margin-top: 16px;
  line-height: 1.6;
}
.news-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 22px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #e8f4ff;
  background: linear-gradient(165deg, rgba(0, 162, 255, 0.22) 0%, rgba(14, 23, 35, 0.95) 45%, rgba(9, 54, 85, 0.9) 100%);
  border: 1px solid rgba(0, 162, 255, 0.55);
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 4px 14px rgba(0, 80, 140, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s, transform 0.15s;
}
.news-back-btn i {
  font-size: 18px;
  opacity: 0.95;
}
.news-back-btn:hover {
  color: #fff;
  border-color: #00d8ff;
  box-shadow:
    0 0 0 1px rgba(0, 216, 255, 0.35),
    0 6px 20px rgba(0, 120, 200, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}
.news-single-votes {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.news-single-votes form {
  display: inline-block;
  margin-right: 8px;
}
.ticket-list {
  list-style: none;
  margin: 16px 0;
}
.ticket-list li {
  margin: 6px 0;
}
.ticket-msg {
  margin: 12px 0;
  padding: 12px;
  background: rgba(0,0,0,0.2);
  border-radius: 6px;
}
.ticket-msg.staff {
  border-left: 3px solid #00a2ff;
}
.ticket-msg-meta {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 6px;
}
.admin-ticket-list {
  list-style: none;
}
.admin-ticket-detail {
  margin-top: 20px;
  padding: 16px;
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
}
.admin-news-preview {
  margin: 12px 0;
}
.admin-news-preview img {
  max-height: 160px;
  max-width: 100%;
  border-radius: 6px;
  border: 1px solid #3a9ec8;
}
.site-form input[type="file"] {
  max-width: 100%;
  padding: 8px 0;
  color: #ccc;
}
.vote-page {
  margin-top: 8px;
}
.vote-page-card {
  max-width: 520px;
  padding: 28px 24px;
  background: rgba(10, 18, 28, 0.85);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  text-align: center;
}
.vote-page-title {
  font-family: 'Deltha', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #fff;
}
.vote-page-sub {
  font-size: 14px;
  color: #b8c9d9;
  margin-bottom: 16px;
}
.vote-page-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #dde8f0;
  margin-bottom: 20px;
  text-align: left;
}
.vote-portal-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #093655;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  border: 2px solid #fff;
  transition: background 0.15s, color 0.15s;
}
.vote-portal-btn:hover {
  background: transparent;
  color: #fff;
}
.vote-claim-block {
  margin-top: 24px;
}
.vote-claim-btn {
  padding: 12px 24px;
  background: #fff;
  color: #093655;
  border: 2px solid #fff;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Lato", sans-serif;
}
.vote-claim-btn:hover {
  background: rgba(255,255,255,0.9);
}

.progress-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 400px;          /* teljes szélesség */
  margin-top: 10px;     /* kis távolság a szöveg alatt */
}

.progress-track {
  display: flex;          /* flex, hogy a sávok egymás mellett legyenek */
  width: 100%;
  max-width: 400px;
  height: 25px;
  background: #222;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

/* Fill sávok */
.progress-fill {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
}

/* Horde */
.horde {
  background-image: url("../images/horde_bar.jpg");
  background-size: cover;
  border-right: 1px solid #000; /* elválasztás */
}

/* Alliance */
.alliance {
  background-image: url("../images/alliance_bar.jpg");
  background-size: cover;
}

/*========================================================*/
/*==================== MOBILE VIEW =======================*/
/*========================================================*/

@media (max-width: 768px) {
  body {
    background-size: contain;
    background-position: center 50px; 
  }
  .menu-icon {
    display:block;
  }
  .menu-icon {
    background:#0e1723;
  }
  nav > ul {
    display:none;
    flex-direction:column;
    width:100%;
    background:#0e1723;
  }
  #menu-toggle:checked + .menu-icon + ul {
    display:flex;
  }
  nav > ul > li {
    width:100%;
    text-align:left;
    border-bottom:1px solid rgba(255,255,255,0.05);
  }
  nav > ul > li > a {
    padding:18px 20px;
    font-size:15px;
    display:block;
  }
  nav > ul > li > a:hover {
    margin-left: 8px;
    transform: none;
    color: #00a2ff;
    text-shadow: 1px 1px 10px rgba(0, 162, 255, 0.9);
  }
  nav > ul > li.right, nav > ul > li.nav-lang {
    position:relative;
    right:auto;
  }
  .profile-layout {
    grid-template-columns: 1fr;
  }
  .admin-nav {
    flex-direction: column;
  }
  nav ul ul {
    position:relative;
    left:0;
    top:0;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
    background:#0e1723;
  }
  nav ul ul li a {
    padding:15px 30px;
    font-size:14px;
    margin-left: 10px;
  }
  nav ul ul li a:hover {
    transform:none;
    margin-left: 20px;
  }
  nav ul li:hover > ul {
    display:block;
  }
  nav ul ul ul {
    position:relative;
    left:0;
  }
  .hero {
    height: 300px;
    padding: 10px;
    margin-bottom: 100px;
  }
  .hero-center {
    width: 90%;
    padding: 15px;
  }
  .realm-status {
    position:absolute;
    width: 90%;
    left:30px;
    top:200px;
  }
  .logo_text {
    font-size: 16px;
  }
  .text-container > span {
    font-size: 25px;
  }
  main {
    display: block;
    padding: 15px;
  }
  .sidebar {
    flex:1;
  }
  .sidebar-box {
    overflow: hidden;
    margin-bottom: 10px;
  }
  .sidebar-title {
    width: 100%;
    padding: 14px 20px;
  }
  .sidebar-content {
    padding: 10px;
  }
  .news img {
    width: 100px;
  }
  .news-text {
    padding: 0;
  }
  .news-text-title {
    display: block;
    padding: 5px 10px;
  }
  .news-text-content {
    padding: 10px;
  }
  .news-actions-row {
    flex-direction: column;
    align-items: stretch;
  }
  .news-vote-btns {
    margin-left: 0;
    align-self: flex-end;
  }
}

.ladder-page {
  max-width: 1100px;
}
.ladder-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.ladder-section-wide {
  grid-column: 1 / -1;
}
.ladder-heading {
  font-size: 18px;
  margin: 0 0 10px;
  color: #00d8ff;
  font-family: 'Deltha', sans-serif;
}
.ladder-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.ladder-table th {
  text-align: left;
  color: #8ecae6;
  border-bottom: 1px solid #3a9ec8;
  padding: 8px 6px;
}
.ladder-table td {
  padding: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ladder-empty {
  text-align: center;
  color: #888;
  padding: 16px !important;
}
.social-stat {
  margin: 0 0 8px;
  font-size: 14px;
}
.social-stat strong {
  color: #00d8ff;
}
.sidebar-discord-embed {
  margin-top: 14px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(58, 158, 200, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(20, 28, 40, 0.95) 0%, rgba(14, 23, 35, 0.98) 100%);
}
.sidebar-discord-inner {
  position: relative;
  width: 100%;
  min-height: 300px;
  background: #1e2128;
}
.sidebar-discord-iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  vertical-align: bottom;
}
.admin-hint {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 12px;
  line-height: 1.4;
}