@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: black;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 60px;
    /* Adjusted padding for navbar */
    overflow-y: auto;
    width: 100%;
}

/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    z-index: 10;
}

.nav-item {
    font-size: 1.5rem;
    color: #fff;
    margin: 0 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-item:hover {
    transform: translateY(-3px);
    color: #0033FF;
    /* Updated to vibrant blue */
}

.container {
    width: 90%;
    max-width: 1200px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.bot-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    border: 4px solid transparent;
    animation: glow 2s infinite;
}

@keyframes glow {

    0%,
    100% {
        border-color: rgba(0, 51, 255, 0.5);
        /* Updated to vibrant blue */
        box-shadow: 0 0 10px rgba(0, 51, 255, 0.7), 0 0 20px rgba(0, 51, 255, 0.5);
    }

    50% {
        border-color: rgba(0, 51, 255, 1);
        /* Updated to vibrant blue */
        box-shadow: 0 0 15px rgba(0, 51, 255, 1), 0 0 30px rgba(0, 51, 255, 0.9);
    }
}

h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 600;
}

p {
    margin: 10px 0;
    font-size: 1.2rem;
    font-weight: 300;
}

.buttons {
    margin-top: 20px;
}

.button {
    display: inline-block;
    margin: 0 10px;
    padding: 12px 25px;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(135deg, #0033FF, #0022CC);
    /* Updated gradient to blue */
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.status {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.status-indicator {
    margin-left: 10px;
    font-size: 2rem;
    display: inline-block;
}

.status-indicator.online {
    color: #28a745;
    /* Green for online */
}

.status-indicator.offline {
    color: #dc3545;
    /* Red for offline */
}

.users-box {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 1.5rem;
    color: #0033FF;
    /* Updated to vibrant blue */
}

.commands {
    margin-top: 40px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.commands h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.command-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.command-item {
    width: 200px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.command-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.team {
    margin-top: 50px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.team h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    width: 250px;
    font-size: 1rem;
}

.footer {
    margin-top: 30px;
}

.terms-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
    font-size: 1rem;
}

.terms-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.terms-box ul {
    list-style-type: none;
    padding: 0;
}

.terms-box ul li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .bot-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .bot-image {
        width: 120px;
        height: 120px;
    }
}