/* NikolaToy Landing Page */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:linear-gradient(135deg,#111,#333);
    color:white;
    min-height:100vh;
}

.container{
    width:90%;
    max-width:500px;
    margin:auto;
    text-align:center;
    padding:50px 0;
}


.logo{
    font-size:42px;
    font-weight:900;
    letter-spacing:2px;
    margin-bottom:25px;
}

.logo span{
    color:#e21b23;
}


h1{
    font-size:32px;
    margin-bottom:15px;
}


.intro{
    color:#ddd;
    line-height:1.6;
    margin-bottom:35px;
}


.links{
    display:flex;
    flex-direction:column;
    gap:15px;
}


.links a{
    background:white;
    color:#111;
    padding:16px;
    border-radius:30px;
    text-decoration:none;
    font-size:17px;
    font-weight:bold;
    transition:.3s;
}


.links a:hover{
    transform:scale(1.05);
    background:#e21b23;
    color:white;
}


.social{
    margin-top:35px;
}


.social a{
    color:white;
    margin:0 8px;
    text-decoration:none;
}


footer{
    margin-top:40px;
    color:#aaa;
    font-size:14px;
}


@media(max-width:500px){

.logo{
    font-size:34px;
}

h1{
    font-size:26px;
}

}
.profile-img{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
    border:3px solid white;
}
/* Glass Effect */

.container{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:25px;
    padding:40px 25px;
    margin-top:40px;
    margin-bottom:40px;
}

/* Better Buttons */

.links a{
    display:flex;
    align-items:center;
    justify-content:center;
    height:60px;
    font-size:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.links a:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,0,0,.35);
}

/* Social Buttons */

.social{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:35px;
}

.social a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#111;
    border-radius:50%;
    font-weight:bold;
    transition:.3s;
}

.social a:hover{
    background:#e21b23;
    color:#fff;
}