* {

    margin:0;
    padding:0;
    box-sizing:border-box;

}


body {

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;


    background:

    radial-gradient(
        circle at 20% 30%,
        rgba(0,120,255,.45),
        transparent 35%
    ),

    radial-gradient(
        circle at 80% 70%,
        rgba(0,220,255,.25),
        transparent 40%
    ),

    #050816;


    font-family:
    'Segoe UI',
    sans-serif;

    color:white;

}



/* LETÖLTÉS KÁRTYA */

.download-box {


    width:450px;

    padding:45px;


    text-align:center;


    background:
    rgba(255,255,255,.12);


    backdrop-filter:
    blur(20px);


    border:
    1px solid rgba(255,255,255,.25);


    border-radius:30px;


    box-shadow:

    0 20px 60px rgba(0,0,0,.4);


}



/* LOGO */


.logo {

    width:100px;

    margin-bottom:20px;

}



h1 {

    font-size:35px;

    margin-bottom:15px;

}



.download-box p {

    opacity:.8;

}



/* VERZIÓ */

.version {


    margin:30px 0;


    padding:15px;


    border-radius:15px;


    background:
    rgba(255,255,255,.1);


    display:flex;

    justify-content:space-between;

}



.version strong {

    color:#4ddfff;

}



/* GOMB */


.download-btn {


    display:block;


    padding:16px;


    border-radius:30px;


    background:

    linear-gradient(
        135deg,
        #008cff,
        #00d9ff
    );


    color:white;


    text-decoration:none;


    font-weight:800;


    transition:.3s;


}



.download-btn:hover {


    transform:scale(1.05);


    box-shadow:

    0 0 30px #00c8ff;


}



/* INFO */


.info {

    margin-top:30px;

    text-align:left;

}


.info p {

    margin:10px 0;

    opacity:.9;

}