@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background-color: #2c2f33;
    height: 100%;
    overflow: hidden;
    scroll-behavior: smooth;
}

header {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('https://i.pinimg.com/736x/3e/49/59/3e49597717901d03cc0db596675f3b46.jpg') no-repeat center center;
    background-size: cover;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 47, 51, 0.8);
    z-index: -1;
}

.content {
    position: relative;
    padding: 20px;
    background: rgba(44, 47, 51, 0.8);
    border-radius: 10px;
    animation: fadeInContent 2s ease-in-out forwards;
    backdrop-filter: blur(10px);
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    box-sizing: border-box;
    background-size: cover;
}

.bot-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.avatar-wrapper {
    position: relative;
    width: 170px;
    height: 170px;
    margin-bottom: 10px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #E0BBE4; /* Pink border */
}

.bot-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the wrapper without being distorted */
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bot-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(224, 187, 228, 0.8);
}

h1 {
    font-size: 3em;
    margin: 10px 0;
    color: #E0BBE4;
    letter-spacing: 2px;
}

h2 {
    font-size: 2em;
    margin: 10px 0;
    color: #E0BBE4;
    letter-spacing: 1px;
}

p {
    font-size: 1.5em;
    margin: 10px 0;
    color: #957DAD;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links img {
    width: 40px;
    height: 40px;
}

@keyframes fadeInContent {
    from { opacity: 0; }
    to { opacity: 1; }
}
