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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
    transition: background 0.5s ease;
}

body.rainbow-event {
    background: linear-gradient(45deg, #ff0000, #ff8000, #ffff00, #80ff00, #00ff80, #0080ff, #8000ff, #ff0080);
    background-size: 800% 800%;
    animation: rainbowMove 3s ease infinite;
}

body.chocolate-event {
    background: linear-gradient(45deg, #8b4513, #a0522d, #cd853f, #deb887, #f4a460, #d2691e, #8b4513);
    background-size: 800% 800%;
    animation: chocolateMove 2s ease infinite;
}

@keyframes chocolateMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes rainbowMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.announcement-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.announcement-overlay.hidden {
    display: none;
}

.announcement-overlay.fade-in {
    opacity: 1;
}

.announcement-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 500px;
    margin: 0 1rem;
    transform: translateY(-20px);
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.announcement-content h3 {
    margin-bottom: 1rem;
    color: #667eea;
    font-weight: bold;
}

.status-bar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff4444;
    transition: background-color 0.3s ease;
}

.status-light.connected {
    background: #44ff44;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.admin-btn:hover {
    background: #ff5252;
}

.owner-btn {
    background: #e91e63;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.owner-btn:hover {
    background: #c2185b;
}

.logout-btn {
    background: #757575;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.logout-btn:hover {
    background: #616161;
}

.profile-btn {
    background: #4caf50;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.profile-btn:hover {
    background: #45a049;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.section.hidden {
    display: none;
}

h1, h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

.webhook-section {
    margin-bottom: 2rem;
}

.webhook-section label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.webhook-section input {
    width: 70%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-right: 0.5rem;
}

.webhook-section button {
    padding: 0.8rem 1.5rem;
    background: #7289da;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.webhook-section button:hover {
    background: #5b6eae;
}

.message-type {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.message-type label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.message-form {
    margin-bottom: 2rem;
}

.message-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.message-form input,
.message-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
    resize: vertical;
}

.message-form textarea {
    min-height: 100px;
}

.send-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: end;
}

.send-options label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.send-options input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
}

#send-btn {
    grid-column: span 2;
    padding: 1rem;
    background: #43a047;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#send-btn:hover {
    background: #388e3c;
}

#send-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.coin-shop {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.coin-shop button {
    background: #ffa726;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.coin-shop button:hover {
    background: #ff9800;
}

.coin-shop button:nth-child(4) {
    background: #9c27b0;
    margin-top: 1rem;
}

.coin-shop button:nth-child(4):hover {
    background: #8e24aa;
}

.ban-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.ban-screen.hidden {
    display: none;
}

.ban-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 500px;
    margin: 0 1rem;
    border: 3px solid #ff0000;
}

.ban-content h2 {
    color: #ff0000;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.ban-content p {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.ban-content button {
    background: #ff0000;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ban-content button:hover {
    background: #cc0000;
}

.admin-panel-inline {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.admin-panel-inline h3 {
    color: #495057;
    margin-bottom: 1.5rem;
    text-align: center;
}

.admin-panel-inline h4 {
    color: #495057;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.admin-panel-inline .admin-section {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

#stop-event-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#stop-event-btn:hover {
    background: #c82333;
}

.hamburger-menu {
    position: fixed;
    top: 80px;
    left: 20px;
    z-index: 999;
}

.hamburger-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.hamburger-btn:hover {
    background: rgba(255, 255, 255, 1);
}

.hamburger-btn span {
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
}

.side-menu.open {
    right: 0;
}

.side-menu-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.close-menu {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}

.search-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-section input {
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.search-section button {
    background: #4caf50;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.search-section button:hover {
    background: #45a049;
}

.menu-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.admin-access-btn {
    width: 100%;
    background: #673ab7;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.admin-access-btn:hover {
    background: #5e35b1;
}

.user-profile-content {
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 1rem;
}

.close-profile {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}

.profile-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.profile-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.profile-tag.owner { background: #fce4ec; color: #c2185b; }
.profile-tag.admin { background: #ffebee; color: #d32f2f; }
.profile-tag.premium { background: #f3e5f5; color: #7b1fa2; }

.profile-created {
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.profile-desc-section {
    margin-bottom: 1.5rem;
}

.desc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.desc-content textarea {
    width: 100%;
    min-height: 80px;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    font-family: inherit;
}

.desc-content textarea[readonly] {
    background: #f5f5f5;
    border-color: #eee;
}

.desc-content button {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#edit-desc-btn {
    background: #2196f3;
    color: white;
}

#edit-desc-btn:hover {
    background: #1976d2;
}

#save-desc-btn {
    background: #4caf50;
    color: white;
}

#save-desc-btn:hover {
    background: #45a049;
}

.profile-badges h4 {
    margin-bottom: 1rem;
}

.badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.badge.owner {
    background: linear-gradient(45deg, #e91e63, #f06292);
    color: white;
}

.badge.admin {
    background: linear-gradient(45deg, #f44336, #ef5350);
    color: white;
}

.badge.premium {
    background: linear-gradient(45deg, #9c27b0, #ba68c8);
    color: white;
}

.badge.first {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
}

.badge-icon {
    font-size: 1.2em;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    margin: 0 1rem;
}

.modal-content h3 {
    margin-bottom: 1rem;
    color: #333;
}

.modal-content input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-buttons button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-buttons button:first-child {
    background: #4caf50;
    color: white;
}

.modal-buttons button:first-child:hover {
    background: #45a049;
}

.modal-buttons button:last-child {
    background: #f44336;
    color: white;
}

.modal-buttons button:last-child:hover {
    background: #da190b;
}

.welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.welcome-screen.hidden {
    display: none;
}

.welcome-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    margin: 0 1rem;
}

.welcome-content h2 {
    color: #4caf50;
    margin-bottom: 1rem;
}

.welcome-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.accept-btn {
    background: #4caf50;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
}

.accept-btn:hover {
    background: #45a049;
}

.decline-btn {
    background: #f44336;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
}

.decline-btn:hover {
    background: #da190b;
}

.access-owner {
    margin-top: 1rem;
    text-align: center;
}

#access-owner-btn {
    background: #e91e63;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#access-owner-btn:hover {
    background: #c2185b;
}

#ban-reason {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
}

#message-logs,
#premium-logs,
#ban-logs {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
    font-family: monospace;
    font-size: 0.9rem;
    border: 1px solid #ddd;
}

#rainbow-event-btn {
    background: linear-gradient(45deg, #ff0000, #ff8000, #ffff00, #80ff00, #00ff80, #0080ff, #8000ff, #ff0080);
    background-size: 800% 800%;
    animation: rainbowButton 2s ease infinite;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 1rem;
}

@keyframes rainbowButton {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#rainbow-event-btn:disabled {
    background: #ccc;
    animation: none;
    cursor: not-allowed;
}

#event-status {
    font-weight: bold;
    margin-top: 0.5rem;
}

.admin-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.admin-section h3 {
    margin-bottom: 1rem;
    color: #333;
}

.admin-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.admin-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.admin-buttons button:nth-child(1) { background: #f44336; color: white; }
.admin-buttons button:nth-child(2) { background: #ff9800; color: white; }
.admin-buttons button:nth-child(3) { background: #4caf50; color: white; }
.admin-buttons button:nth-child(4) { background: #9c27b0; color: white; }
.admin-buttons button:nth-child(5) { background: #2196f3; color: white; }

#admin-username,
#coins-amount,
#announcement-input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
}

#announcement-input {
    min-height: 80px;
    resize: vertical;
}

#user-activity {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    font-family: monospace;
    font-size: 0.9rem;
}

.chat-container {
    max-height: 400px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 1rem;
    background: #f9f9f9;
    border-bottom: 1px solid #ddd;
}

.chat-message {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 5px;
    font-size: 0.9rem;
}

.chat-input-container {
    display: flex;
    padding: 1rem;
    background: white;
}

.chat-input-container input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 0.5rem;
}

.chat-input-container button {
    background: #4caf50;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
}

.bot-section {
    margin-bottom: 1.5rem;
}

.bot-section label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bot-section input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.bot-send-btn {
    background: #7289da;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    margin-right: 1rem;
}

.bot-send-btn:hover {
    background: #5b6eae;
}

.settings-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.settings-section h3 {
    margin-bottom: 1rem;
    color: #333;
}

.settings-section label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.settings-section input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.menu-options {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-btn {
    background: #2196f3;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.menu-btn:hover {
    background: #1976d2;
}

#chocolate-event-btn {
    background: linear-gradient(45deg, #8b4513, #a0522d, #cd853f, #deb887);
    background-size: 400% 400%;
    animation: chocolateButton 2s ease infinite;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 1rem;
}

@keyframes chocolateButton {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#chocolate-event-btn:disabled {
    background: #ccc;
    animation: none;
    cursor: not-allowed;
}

.badge.coin-10 { background: linear-gradient(45deg, #ffeb3b, #ffc107); }
.badge.coin-50 { background: linear-gradient(45deg, #4caf50, #8bc34a); }
.badge.coin-100 { background: linear-gradient(45deg, #2196f3, #03a9f4); }
.badge.coin-150 { background: linear-gradient(45deg, #9c27b0, #e91e63); }
.badge.coin-200 { background: linear-gradient(45deg, #ff5722, #ff9800); }
.badge.coin-250 { background: linear-gradient(45deg, #795548, #8d6e63); }
.badge.coin-300 { background: linear-gradient(45deg, #607d8b, #90a4ae); }
.badge.coin-350 { background: linear-gradient(45deg, #3f51b5, #5c6bc0); }
.badge.coin-400 { background: linear-gradient(45deg, #009688, #26a69a); }
.badge.coin-450 { background: linear-gradient(45deg, #cddc39, #d4e157); }
.badge.coin-500 { background: linear-gradient(45deg, #ffc107, #ffca28); }
.badge.coin-550 { background: linear-gradient(45deg, #ff4081, #f8bbd9); }
.badge.coin-600 { background: linear-gradient(45deg, #00bcd4, #4dd0e1); }
.badge.coin-650 { background: linear-gradient(45deg, #8bc34a, #aed581); }
.badge.coin-700 { background: linear-gradient(45deg, #ff7043, #ffab91); }
.badge.coin-750 { background: linear-gradient(45deg, #ab47bc, #ce93d8); }
.badge.coin-800 { background: linear-gradient(45deg, #42a5f5, #90caf9); }
.badge.coin-850 { background: linear-gradient(45deg, #66bb6a, #a5d6a7); }
.badge.coin-900 { background: linear-gradient(45deg, #ffa726, #ffcc02); }
.badge.coin-950 { background: linear-gradient(45deg, #ec407a, #f8bbd9); }
.badge.coin-1000 { background: linear-gradient(45deg, #ffd700, #ffed4a); }

.badge.new { 
    background: linear-gradient(45deg, #4caf50, #8bc34a); 
    color: white;
}

.badge.og { 
    background: linear-gradient(45deg, #ff6b35, #f7931e); 
    color: white;
}

.hidden {
    display: none !important;
}

input, textarea, button {
    font-family: inherit;
}

button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #7289da;
    outline-offset: 2px;
}

@media (max-width: 600px) {
    .status-bar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .send-options {
        grid-template-columns: 1fr;
    }
    
    .admin-buttons {
        flex-direction: column;
    }
    
    .webhook-section input {
        width: 100%;
        margin-bottom: 1rem;
    }
}
