body {
    background-color: #1e1e1e;
    color: #b9bbbe;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}
h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(255, 0, 230, 0.3);
}
.subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
}
.stats-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.stat-box {
    background-color: #2f3136;
    border: 2px solid #ff00e6;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    width: 220px;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05), 0 8px 16px rgba(0, 0, 0, 0.4);
}
.stat-label {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ff00e6;
    text-shadow: 0 0 10px rgba(255, 0, 230, 0.4);
    display: inline-block;
}
.swipe-animate {
    animation: swipeUp 0.15s ease-out;
}

@keyframes swipeUp {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.header {
    position: absolute;
    top: 20px;
    right: 20px;
}
.discord-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    object-fit: cover;
    display: block;
    background-color: #2f3136;
    color: transparent;
}
    .discord-icon:hover {
        border-color: #ff00e6;
    }

.settings-box {
    background-color: #2f3136;
    border: 2px solid #ff00e6;
    border-radius: 12px;
    padding: 30px;
    width: 400px;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05), 0 8px 16px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.setting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    color: #fff;
}
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #7289da;
    transition: .4s;
}
    .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #ff00e6;
}
    input:checked + .slider:before {
        transform: translateX(26px);
    }

.slider.round {
    border-radius: 24px;
}
    .slider.round:before {
        border-radius: 50%;
    }

.uuid-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 200px;
    overflow-y: auto;
}
.uuid-item {
    display: flex;
    justify-content: space-between;
    background: #202225;
    padding: 10px;
    border-radius: 6px;
    align-items: center;
}
.remove-uuid {
    color: #ed4245;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
}
.danger-btn {
    background-color: #ed4245;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 20px;
}
    .danger-btn:hover {
        background-color: #c03537;
    }

.logout-btn {
    background-color: #4f545c;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 10px;
}

    .logout-btn:hover {
        background-color: #686d73;
    }

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-box {
    background: #2f3136;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ff00e6;
    text-align: center;
    width: 300px;
}
.modal-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
.cancel-btn, .confirm-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
.cancel-btn {
    background: #4f545c;
    color: white;
}
.confirm-btn {
    background: #ed4245;
    color: white;
}
