body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background: #ffffff;
    color: #222;
    transition: background 0.4s ease, color 0.3s ease;
}
.bot-list {
    list-style-type: none;
    padding: 0;
}
.bot-list li {
    margin: 10px 0;
    padding: 18px 15px; 
    padding-right: 140px; 
    border-left: 4px solid #4CAF50;
    background-color: #f9f9f9;
    position: relative; 
    min-height: 24px; 
    transition: all 0.3s ease;
}
.bot-list a {
    text-decoration: none;
    color: #ffffff;
    background-color: #4CAF50;
    padding: 8px 22px;
    border-radius: 25px; 
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    bottom: 10px; 
    transition: background-color 0.2s, transform 0.1s;
}
.bot-list a:hover {
    background-color: #3e8e41;
}
.contact {
    margin-top: 40px;
    text-align: center;
}
.contact p {
    font-size: 18px;
    color: #444;
    margin-bottom: 12px;
    transition: color 0.3s;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-links a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    padding: 10px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all .25s;
    background: #fff;
}
.social-links a:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}
.social-links .fa-github { margin-right: 8px; }
.social-links .fa-facebook { margin-right: 8px; color: #1877F2; }
#theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    color: #6366f1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}
#theme-toggle:hover {
    transform: scale(1.05);
}
body.dark {
    background-color: #020205;
    background-image: 
        radial-gradient(white, rgba(255,255,255,.3) 1.5px, transparent 2px),
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 2px),
        radial-gradient(rgba(255,255,255,.4), rgba(255,255,255,.05) 2px, transparent 3px);
    background-size: 450px 450px, 250px 250px, 150px 150px;
    background-position: 0 0, 70px 120px, 130px 200px;
    background-attachment: fixed;
    color: #f1f5f9;
    animation: cosmic_dust 150s linear infinite;
}
body.dark::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(100, 30, 200, 0.2), transparent 50%),
        radial-gradient(circle at 15% 75%, rgba(0, 100, 180, 0.15), transparent 45%);
    z-index: -2;
    pointer-events: none;
}
@keyframes cosmic_dust {
    from { background-position: 0 0, 70px 120px, 130px 200px; }
    to { background-position: 450px 450px, 520px 620px, 580px 650px; }
}
#meteor-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.meteor {
    position: absolute;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 80%);
    width: 100px;
    height: 2px;
    transform: rotate(-35deg);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
    animation: meteor-fall 3s linear forwards;
    opacity: 0;
}
.meteor::before {
    content: "";
    position: absolute;
    left: 0; top: -2px; width: 5px; height: 5px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 12px 2px #60a5fa, 0 0 4px 1px #fff;
}
@keyframes meteor-fall {
    0% { transform: translate3d(100px, -100px, 0) rotate(-35deg); opacity: 0; width: 0px; }
    10% { opacity: 1; width: 120px; }
    90% { opacity: 1; }
    100% { transform: translate3d(-600px, 600px, 0) rotate(-35deg); opacity: 0; width: 30px; }
}
body.dark .bot-list li {
    background: rgba(255, 255, 255, 0.07);
    border-left: 4px solid #fbbf24;     
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
body.dark .bot-list a {
    background-color: #fbbf24; 
    color: #020205;
}
body.dark .bot-list a:hover {
    background-color: #ffffff;
}
body.dark .contact p {
    color: #e2e8f0;
    text-shadow: 0 0 4px rgba(255,255,255,0.2);
}
body.dark .social-links a {
    background: rgba(30, 41, 59, 0.6);
    color: #f1f5f9;
    border-color: rgba(251, 191, 36, 0.2);
    backdrop-filter: blur(2px);
}
body.dark .social-links a:hover {
    background: #fbbf24;
    color: #000;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}
body.dark .social-links .fa-github { color: #fbbf24; }
body.dark .social-links .fa-facebook { color: #3b82f6; }
body.dark .social-links a:hover .fa-github,
body.dark .social-links a:hover .fa-facebook { color: #000; }
body.dark #theme-toggle {
    background: #fbbf24;
    color: #000000;
    border-color: #fbbf24;
}