body {
    margin: 0;
    padding: 0;
    background: #141414;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.row {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;   /* tarpas tarp logo ir pavadinimo */
}


/* Pavadinimas */
.brand h1 {
    margin: 0;
    padding: 0;
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
}


.hero .placeholder {
    background: #141414;
    border: 1px solid #333;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
  background: #141414;
}

/* 16:9 proporcijos video rėmas */
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border-radius: 12px;
  border: 1px solid #1f1f1f;
  box-shadow: 0 0 25px rgba(0,0,0,0.35);
}

/* Video viduje */
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* užpildo be deformacijos */
  border-radius: 12px;
}

.logo {
    width: 100px;          /* švarus premium dydis */
    margin: 0;
    opacity: 0.95;         /* padaro vizualiai sleek */
}



.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    padding: 5px 0;
}

.screenshots .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.screenshots .shot {
    background: #222;
    border: 1px solid #1f1f1f;
    border-radius: 12px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.25);
}

footer {
    text-align: right;
    margin-top: 50px;
    color: #666;
}
