body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #000000, #222222);
    color: #2d3436;
    text-align: center;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    padding: 50px 20px;
}

.bot-avatar {
    margin: 20px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid #f9ca24;
    box-shadow: 0 8px 15px rgba(249, 202, 36, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.bot-avatar.playing {
    transform: scale(1.1);
    box-shadow: 0 0 30px 5px #ffdd59;
}

@keyframes beat-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes beat-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 0 30px #f9ca24; }
}

.title {
    font-size: 3em;
    margin: 20px 0;
    color: #f9ca24;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.description {
    font-size: 1.2em;
    margin: 15px 0 40px;
    color: #e3b800;
    line-height: 1.6em;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 15px;
}

.action-button {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.2em;
    font-weight: bold;
    color: #000;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.invite-button {
    background: #f9ca24;
    box-shadow: 0 6px 10px rgba(249, 202, 36, 0.4);
}

.invite-button:hover {
    background: #f6b93b;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px rgba(249, 202, 36, 0.5);
}

.vote-button {
    background: #916800;
}

.vote-button:hover {
    background: #f9ca24;
    transform: translateY(-4px);
}

.vote-text {
    font-size: 1em;
    color: #916800;
    opacity: 0.8;
}

.links {
    margin-top: 30px;
    font-size: 1em;
}

.links a {
    color: #916800;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #e3b800;
}

.tab-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-button {
    padding: 12px 24px;
    font-size: 1.1em;
    background: #dfe6e9;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active {
    background: #f9ca24;
    color: black;
    font-weight: bold;
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

.command-pack {
    margin-bottom: 40px;
    text-align: left;
    background: #202020;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pack-title {
    font-size: 1.8em;
    color: #e3b800;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #916800;
}

.command-category {
    margin-bottom: 30px;
}

.category-title {
    font-size: 1.3em;
    color: #e3b800;
    margin-bottom: 15px;
}

.commands-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.command-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    padding: 15px;
    background: black;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.command-item:hover {
    background: #2a2a2a;
}

.command-name {
    flex: 0 0 200px;
    font-family: monospace;
    color: #f9ca24;
    font-weight: bold;
}

.command-description {
    flex: 1;
    color: #636e72;
}

.premium-button {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white !important;
    box-shadow: 0 6px 10px rgba(108, 92, 231, 0.4);
}

.premium-button:hover {
    background: linear-gradient(135deg, #5f3dc4, #7048e8);
    transform: translateY(-4px);
    box-shadow: 0 10px 15px rgba(108, 92, 231, 0.5);
}

.premium-badge {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    font-size: 0.8em;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 10px;
    font-weight: bold;
    display: inline-block;
}

.premium-pack {
    border: 2px solid #6c5ce7;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(162, 155, 254, 0.1));
}

.premium-pack .pack-title {
    color: #6c5ce7;
}

.premium-command {
    border-left: 4px solid #6c5ce7;
    background: linear-gradient(90deg, rgba(108, 92, 231, 0.1), transparent);
}

.premium-command .command-name {
    color: #a29bfe;
}

.premium-info {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(162, 155, 254, 0.1));
    border: 1px solid #6c5ce7;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

.premium-info h3 {
    color: #6c5ce7;
    margin-top: 0;
}

.premium-info p {
    color: #636e72;
    margin-bottom: 0;
}

#changelog h2 {
    color: #e3b800;
}

#changelog-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #202020;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #636e72;
}

#changelog-list li {
    margin-bottom: 15px;
    padding: 10px;
    background: black;
    border-radius: 8px;
}

.footer {
    margin: 50px 0 20px;
    padding: 20px;
    color: #e3b800;
}

.footer a {
    color: #e3b800;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #f9ca24;
}

.error {
    color: #e74c3c;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
}

.collapsible.collapsed .pack-content {
    display: none;
}

.collapsible .pack-title {
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-right: 20px;
}

.collapsible .pack-title::after {
    content: '▼';
    position: absolute;
    right: 0;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.collapsible.collapsed .pack-title::after {
    transform: rotate(-90deg);
}

.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #f9ca24;
    color: #000;
    font-size: 1em;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
    pointer-events: auto;
}

/* Add these new status styles to your existing CSS */

.status-container {
    margin: 15px 0 25px;
    display: flex;
    justify-content: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.status-online {
    border-color: #00aa00;
    background: rgba(0, 170, 0, 0.1);
}

.status-offline {
    border-color: #aa0000;
    background: rgba(170, 0, 0, 0.1);
}

.status-unknown {
    border-color: #666666;
    background: rgba(102, 102, 102, 0.1);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.online-dot {
    background: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.offline-dot {
    background: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.unknown-dot {
    background: #666666;
    box-shadow: 0 0 10px rgba(102, 102, 102, 0.5);
}

.status-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.status-text {
    font-weight: bold;
    font-size: 1.1em;
    color: #f9ca24;
}

.status-details {
    font-size: 0.9em;
    color: #b8860b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.status-separator {
    color: #666;
    font-weight: bold;
}

.status-guilds,
.status-users,
.status-update,
.status-info {
    white-space: nowrap;
}

@keyframes pulse {
    0% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.1);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile responsiveness for status */
@media (max-width: 768px) {
    .status-indicator {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 10px 16px;
    }
    
    .status-details {
        justify-content: center;
        font-size: 0.8em;
    }
    
    .status-separator {
        display: none;
    }
    
    .status-details {
        flex-direction: column;
        gap: 2px;
    }
}

/* Existing styles remain the same... */
/* (keep all your existing CSS) */

@media (max-width: 768px) {
    .container {
        padding: 30px 10px;
    }
    
    .title {
        font-size: 2em;
    }
    
    .bot-avatar {
        width: 140px;
        height: 140px;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .action-button {
        width: 80%;
        max-width: 300px;
    }

    .command-item {
        flex-direction: column;
    }

    .command-name {
        flex: 0 0 auto;
        margin-bottom: 8px;
    }

    .tab-container {
        padding: 0 10px;
    }
}