@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a1a3c; 
    color: white;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}


#chat-popup {
    position: static;
    width: 100%;
    max-width: 600px;
    height: auto;
    background: #0a1a3c;
    border-radius: 20px;
    box-shadow: 0 0 12px rgba(0,0,0,0.5);
    padding: 16px;
    margin: 40px auto;
}

#chat-header {
    background: #122556;
    color: #fff;
    padding: 12px;
    font-weight: bold;
    text-align: center;
}

#chat-box {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    color: white;
    font-size: 14px;
}


.user {
    display: flex;
    justify-content: flex-end;
    margin: 8px 0;
}

.bot {
    display: flex;
    justify-content: flex-start;
    margin: 8px 0;
}

.user span,
.bot span {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 75%;
    word-wrap: break-word;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.user span {
    background-color: #7282ff;
    color: #ffffff;
    border-radius: 12px 12px 4px 12px;
}

.bot span {
    background-color: #3375ff;
    color: #fff;
    border-radius: 12px 12px 12px 4px;
}

#chat-options {
    background: #122556;
    padding: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

#chat-options button {
    background: #7282ff;
    color: white;
    border: none;
    width: 125px;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

#chat-options button:hover{
    opacity: 80%;
}

#restart-chat-button {
    position: absolute;
    margin-top: 10px;
    margin-left: 520px;
    display: flex;
    background: transparent;
    color: #888;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.2s;
}
  
#restart-chat-button:hover {
    background: rgba(0, 0, 0, 0.05);
}

#text-response {
    font-size: 14px;
    border: none;
    border-radius: 8px;
    padding: 10px;
}

#text-response:focus {
    outline: 2px solid #3375ff;
}

#text-response-area button {
    background: #3375ff;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
}

#chat-back-button {
    position: absolute;
    margin-top: 10px;
    margin-left: 10px;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: none; 
    padding: 4px 8px;
    border-radius: 50%;
    transition: background 0.2s;
}

#chat-back-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.gradient-text {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #004cff, #8383ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.headline {
    width: 100%;
    padding: 80px 20px;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(rgba(74, 70, 103, 0.5), rgba(64, 65, 99, 0.5)), url('images/nick_pool.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.background_img{
    position: absolute;
    width: 200px;
    opacity: 80%;

}

.information_space{
    display: flex;
    background-color: rgb(66, 129, 255);
    margin: 25px;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 50px
}

.reasons_why{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 100px;
}

.reason{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0137ad;
    width: 100%;
    height: 125px;
    margin: 5px;
    border-radius: 10px;
    font-size: larger;
    font-weight:bold
}

.telegram_text{
    margin-top: 30px;
    opacity: 80%;
}

.telegram_button{
    margin-top: 30px;
}

.telegram_button a{
    background: linear-gradient(90deg, #3375ff, #9aa5ff);
    padding: 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all .2s ease-in-out;
    color: white;
}

.telegram_button a:hover{
    opacity: 75%;
}

.evidence_section{
    background-color: #000f30;
    padding: 40px;
    margin-top: 30px;
}

.ev_text{
    font-size: xx-large;
}

.ev_images{
    width: 300px;
    border-radius: 15px;
    margin: 10px;
}


.about_us{
    margin-top: 20px;
    background-color: #000f30;
    padding: 20px;
}

.about_us img{
    margin-top: 20px;
    width: 300px;
    border-radius: 15px;
}

.about_us ul{
    list-style: none;
    margin-bottom: 50px;
}

.about_us li::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 50px;
    height: 50px;
    background-image: url(images/Bullet_point.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.about_us ul li{
    padding-left: 30px;
    position: relative;
    margin: 20px;
}

footer{
    margin-top: 30px;
    background-color: rgb(26, 26, 26);
    padding: 10px;
}

footer img{
    background-color: white;
    padding: 2px;
    margin: 10px 20px;
    border-radius: 50%;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .about_us li::before{
        transform: translateX(-20px);
        bottom: 60px;
    }

    .reason{
        height: 175px;
        width: 175px;
        padding: 75px;
        margin: 4px;
    }
    
    #restart-chat-button{
        margin-left: 310px;
    }
}

@media (min-width: 1000px) {
    .section1{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .reasons_why{
        margin: 0;
    }

    .reason{
        background-color: #0137ad;
        width: 175px;
        height: 125px;
        margin: 5px;
        border-radius: 10px;
        font-size: larger;
        font-weight:bold
    }

    .reasons_holder{
        display: flex;
        flex-direction: column;
        margin: 7px;
    }

    .information_space{
        width: 500px;
        background-color: rgb(66, 129, 255);
        margin: 25px;
        padding: 30px;
        border-radius: 10px;
        margin-bottom: 50px
    }

}