body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    color: #343a40;
    position: relative;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('http://bing.img.run/uhd.php') center/cover no-repeat;
    z-index: -1;
    filter: blur(10px);
}

h1 {
    color: #007BFF;
    text-align: center;
    margin-bottom: 30px;
}

h2 {
    color: #007BFF;
    text-align: center;
    margin-top: 20px;
}

p {
    margin-bottom: 20px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}

li {
    margin-bottom: 10px;
}

a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.container {
    max-width: 800px;
    width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section {
    background-color: #fff;
    padding: 20px 15px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.command-code {
    font-family: 'Courier New', monospace;
    background-color: #f8f9fa;
    padding: 8px;
    border-radius: 5px;
    margin-top: 10px;
    display: block;
}

.github-icon, .telegram-icon {
    position: fixed;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.github-icon {
    bottom: 20px;
    right: 60px;
}

.telegram-icon {
    bottom: 20px;
    right: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

.home-link {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #007BFF;
    text-decoration: none;
    font-size: 16px;
    white-space: pre-wrap;
    display: block;
    margin-bottom: 20px;
}

.glowing-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    transition: box-shadow 0.3s ease-in-out;
}

.glowing-icon:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 1);
}
