/* ----------------- GENERAL ----------------- */
body {
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  margin: 0;
}

.head {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.head img {
  width: 180px;
}

.kvi {
  display: flex;
  max-width: 1200px;
  margin: auto;
  padding: 20px 40px 20px 40px;
  gap: 60px;
  align-items: center;
}

/* ----------------- LEFT VIDEO SECTION ----------------- */
.left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.left span {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}



/* ----------------- LAPTOP & MACBOOK UNIFIED ----------------- */
.windows-laptop{
 /* unified width */
  width: 90%;
  
}
.macbook {
  width: 100%;
}

/* ----------------- SCREEN ----------------- */
.laptop-screen,
.mac-screen {
  background: #1a1a1a;
  border-radius: 12px 12px 0 0;
  padding: 20px; 
  box-shadow:
    0 -5px 20px rgba(0, 0, 0, 0.3),
    inset 0 0 0 2px #333;
  /* position: relative; */

  height: 360px; 
  box-sizing: border-box;
}



/* Mac camera */
.mac-camera {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #1a4d2e;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(26, 77, 46, 0.8);
  z-index: 10;
}

/* ----------------- VIDEO ----------------- */
.laptop-screen video,
.mac-screen video {
  width: 100%;
  height: 100%; /* fill the container */
  border-radius: 4px;
  background: #000;
  object-fit: contain;
}

/* ----------------- BASE ----------------- */
.laptop-base,
.mac-base {
  height: 18px; /* unified height */
  border-radius: 0 0 8px 8px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Windows base style */
.laptop-base {
  background: linear-gradient(to bottom, #444 0%, #2a2a2a 100%);
}

.laptop-notch {
  width: 70px;
  height: 7px;
  background: #333;
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
  box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.5);
}

/* Mac base style */
.mac-base {
  background: linear-gradient(to bottom, #d4d4d4 0%, #a8a8a8 50%, #8a8a8a 100%);
  box-shadow:
    0 5px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mac-notch {
  width: 70px;
  height: 6px;
  background: linear-gradient(to bottom, #999 0%, #777 100%);
  margin: 0 auto;
  border-radius: 0 0 6px 6px;
  box-shadow:
    inset 0 -1px 3px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.2);
}



/* PHONE BUTTON */
.phone-button {
  width: 50px;
  height: 50px;
  background: #2a2a2a;
  border-radius: 50%;
  margin: 15px auto 0;
  box-shadow:
    inset 0 2px 5px rgba(0, 0, 0, 0.5),
    0 2px 5px rgba(255, 255, 255, 0.1);
}

/* ----------------- VIDEO SELECTOR ----------------- */
.video-selector {
  margin-top: 15px;
  text-align: center;
}

.video-btn {
  padding: 8px 15px;
  margin: 5px;
  border: none;
  cursor: pointer;
  background: #ddd;
  border-radius: 5px;
}

.video-btn:hover {
  background: #ccc;
}

.video-btn.active {
  background: #AA1920;
  color: white;
}

/* ----------------- RIGHT SECTION ----------------- */
.right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.right h1 {
  color: #AA1920;
  margin: 0;
}

.right span {
  color: #FE9900;
}

/* ----------------- OS BUTTONS ----------------- */
.btn {
  display: flex;
  gap: 20px;
}

.windows {
  width: 70px;
  height: 70px;
  font-size: 30px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: #f1f1f1;
  transition: all 0.3s ease;
}

.windows:hover {
  background: #e0e0e0;
}

.windows.active {
  background: #FE9900;
  color: white;
}

/* ----------------- DOWNLOAD BUTTONS ----------------- */
.btn1 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vlc button,
.vlc-phone button {
  padding: 12px;
  border-radius: 10px;
  width: 360px;
  border: 2px solid #AA1920;
  background: white;
  cursor: pointer;
  transition: 0.3s;
}

.vlc-phone {
  display: none;
}
.vlc-phone{
  font-size: 18px;
}
.vlc-phone button{
  margin-top: 10px;
}
.description {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.description i {
  font-size: 30px;
}

.vlc button:hover,
.vlc-phone button:hover {
  background: #AA1920;
  color: white;
}

.vlc button:hover i,
.vlc-phone button:hover i {
  color: white;
}

/* ----------------- MINIMUM REQUIREMENTS ----------------- */
.mini {
  max-width: 1400px;
  margin: 0px 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

.mini-computer,
.mini-mobile-container {
  display: none;
  gap: 40px;
  margin-top: 20px;
}

.mini-computer div,
.mini-mobile-container div {
  width: 50%;
}

.mini h3 {
  color: #333;
  margin-bottom: 10px;
}

.mini h3 b {
  color: #AA1920;
}

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

.mini li {
  padding: 5px 0;
  color: #555;
  position: relative;
  padding-left: 20px;
}

.mini li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #AA1920;
  font-weight: bold;
}

/* ----------------- MOBILE RESPONSIVE ----------------- */
@media (max-width: 900px) {
  .kvi {
    flex-direction: column;
    text-align: center;
  }

  .left {
    width: 100%;
  }

  .windows-laptop,
  .macbook {
    max-width: 100%;
  }

  .laptop-screen,
  .mac-screen {
    height: 250px;
  }

  .vlc button,
  .vlc-phone button {
    width: 100%;
  }

  .mini {
    margin: 0px 20px;
  }

  .mini-computer,
  .mini-mobile-container {
    flex-direction: column;
  }

  .mini-computer div,
  .mini-mobile-container div {
    width: 100%;
  }

  #phone-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
  }

  #phone-content img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    display: block;
  }
}