/* Main Styles - Base styles and layout */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #1a1a1a;
    height: 100vh;
    overflow: hidden;
    color: #e4e4e4;
}

.loading {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    padding: 20px;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Admin Badge */
.admin-badge {
    background: #5865F2;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Buttons */
button {
    cursor: pointer;
    transition: all 0.2s ease;
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
}