@import url('https://fonts.googleapis.com/css2?family=Chewy&family=Poppins:wght@300;400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url("./assets/wallpaper.jpg") no-repeat center center/cover;
    font-family: "Poppins", sans-serif;
    color: white;
    backdrop-filter: blur(10px);
}

.container {
    background: rgba(0, 0, 0, 0.6);
    width: 1200px;
    height: 500px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    text-align: center;
}

.widget-bar {
    background: rgba(0, 0, 0, 0.6);
    width: 400px;
    height: 500px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    gap: 50px;
}

.bot-info {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

h1 {
    font-size: 70px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 80px;
    margin-bottom: 20px;
    font-family: "Chewy", cursive;
    background: linear-gradient(90deg, #7f8cff, #5272ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    display: inline-block;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.links a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.4s ease-in-out;
    transform: translate(-50%, -50%) scale(0);
}

.links a:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.links a:nth-child(1) {
    border-color: #5865F2;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}

.links a:nth-child(2) {
    border-color: #5865F2;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}

.links a:nth-child(3) {
    border-color: #8f8f8f;
    box-shadow: 0 5px 15px rgba(143, 143, 143, 0.3);
}

.links a:hover {
    transform: scale(1.025);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.links a svg {
    width: 24px;
    height: 24px;
    fill: white;
}