/* BODY & MAIN CONTAINER */
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: Arial, sans-serif;
}

.kvi {
    display: flex;
    flex-direction: row;
    max-width: 1400px;
    padding: 120px 60px;
    margin: auto;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

/* LEFT IMAGE */
.left img {
    width: 100%;
    height: 315px;
    border: none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    object-fit: cover;
}

/* RIGHT CONTENT */
.right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.ri
.right h1 {
    font-size: 32px;
    color: #AA1920;
    font-weight: bold;
    margin: 0;
}

.right span {
    font-size: 20px;
    color: #FE9900;
}

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

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

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

/* DOWNLOAD STEPS CONTAINER */
.btn1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* WINDOWS STEPS */
.vlc {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vlc p {
    font-size: 22px;
    font-weight: 500;
}

/* APPLE STEPS */
.vlc-apple {
    display: flex;
    flex-direction: column;
    gap: 10px;
    display: none;
}

.vlc-apple p {
    font-size: 22px;
    font-weight: bold;
}

/* PHONE STEPS */
.vlc-phone {
    display: flex;
    flex-direction: column;
    gap: 10px;
    display: none;
}

.vlc-phone p {
    font-size: 22px;
    font-weight: bold;
}

/* BUTTONS WITH ICON AND TEXT */
.vlc button,
.vlc-apple button,
.vlc-phone button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 20px;
    height: 70px;
    cursor: pointer;
    width: 380px;
    border: 3px solid #AA1920; /* default Windows border */
    background-color: white;
    color: #0a0a0a;
    transition: all 0.3s;
}

/* APPLE & PHONE BUTTON WIDTH & BORDER COLOR */
.vlc-apple button,
.vlc-phone button {
    width: 350px;
    border: 3px solid #AA1920;
}

/* ICON + TEXT DESCRIPTION */
.vlc button .description,
.vlc-apple button .description,
.vlc-phone button .description {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #0a0a0a;
    transition: color 0.3s;
}

.vlc button .description i,
.vlc-apple button .description i,
.vlc-phone button .description i {
    font-size: 40px;
    color: #000000;
    transition: color 0.3s;
}

/* HOVER EFFECT: BUTTON, TEXT, ICON */
.vlc button:hover,
.vlc-apple button:hover,
.vlc-phone button:hover {
    background-color: #AA1920; /* Windows hover default */
    border: none;
}

.vlc button:hover .description,
.vlc-apple button:hover .description,
.vlc-phone button:hover .description,
.vlc button:hover .description i,
.vlc-apple button:hover .description i,
.vlc-phone button:hover .description i {
    color: white; /* icon and text become white */
}

/* MOBILE DOWNLOAD SECTION */
.mobile {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 60%;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin: auto;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.mobile p {
    font-size: 18px;
    width: 100%;
    line-height: 1.5;
}

.button {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

/* GOOGLE PLAY BUTTON */
.google a {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 12px 16px;
    border-radius: 10px;
    width: 250px;
    height: 40px;
    background-color: #AA1920;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 25px;
    color: white;
}

.google span {
    font-size: 18px;
    color: white;
}

/* APP STORE BUTTON */
.appstore {
    display: none;
    flex-direction: row;
    gap: 20px;
    padding: 12px 16px;
    border-radius: 10px;
    width: 180px;
    height: 40px;
    background-color: #AA1920;
    align-items: center;
    justify-content: center;
}

.appstore a {
    text-decoration: none;
    font-size: 25px;
    color: white;
    width: 40%;
}

.appstore span {
    font-size: 18px;
    color: white;
}

/* MEDIA QUERIES */
@media (max-width: 1024px) {
    .kvi {
        flex-direction: column;
        gap: 40px;
        padding: 40px;
        text-align: center;
    }
    .right {
        align-items: center;
    }
    .vlc button,
    .vlc-apple button {
        width: 300px;
    }
    .mobile {
        width: 80%;
        flex-direction: column;
        text-align: center;
    }
    .button {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .kvi {
        padding: 20px;
        gap: 30px;
    }
    .left img {
        height: 220px;
    }
    .right h1 {
        font-size: 26px;
    }
    .right span {
        font-size: 18px;
    }
    .btn {
        justify-content: center;
    }
    .windows {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    .vlc p,
    .vlc-apple p {
        font-size: 18px;
    }
    .vlc button,
    .vlc-apple button {
        width: 100%;
        font-size: 18px;
    }
    .mobile {
        width: 90%;
        padding: 16px;
    }
    .mobile p {
        font-size: 16px;
    }
    .button {
        flex-direction: column;
        gap: 12px;
    }
    .google a,
    .appstore a {
        width: 90%;
        font-size: 20px;
    }
}
