body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #0b0f19;
    background-image: radial-gradient(circle at center, #1a233a 0%, #0b0f19 100%);
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

/* Draggable Block Styles */
.draggable-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #131a2a;
    padding: 20px 25px 25px 25px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 0 1px #2a3655;
    width: 340px;
    text-align: center;
}

.drag-handle {
    cursor: grab;
    color: #4a5c85;
    font-size: 0.85em;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2a3655;
    user-select: none;
    display: flex;
    justify-content: space-between;
}

.drag-handle:active {
    cursor: grabbing;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

h1 {
    margin: 0;
    color: #ff4757;
    font-size: 1.5em;
    letter-spacing: 1px;
}

#score-display {
    font-weight: bold;
    background: #202b42;
    padding: 5px 12px;
    border-radius: 20px;
    color: #2ed573;
}

/* Directive Box */
.directive-box {
    background: rgba(255, 71, 87, 0.1);
    border: 1px dashed #ff4757;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.directive-label {
    font-size: 0.7em;
    color: #ff4757;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

#directive-text {
    font-family: monospace;
    font-size: 1.1em;
    color: #fff;
}

/* Profile Content */
.card-content img {
    border-radius: 8px;
    width: 140px;
    height: 140px;
    border: 3px solid #2a3655;
    object-fit: cover;
    background-color: #0b0f19;
}

#user-name {
    margin: 15px 0 5px 0;
    font-size: 1.3em;
}

#user-location, .meta {
    margin: 5px 0;
    color: #8a9bbd;
    font-size: 0.9em;
}

/* Custom Div Buttons */
.actions {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.custom-btn {
    width: 46%;
    padding: 14px 0;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.9em;
    letter-spacing: 1px;
    cursor: pointer;
    user-select: none;
    transition: transform 0.1s, filter 0.2s;
}

.custom-btn:active {
    transform: scale(0.92);
}

.btn-sus {
    background-color: #ff4757;
    color: white;
    box-shadow: 0 4px 0 #c23642;
}

.btn-safe {
    background-color: #2ed573;
    color: #0b0f19;
    box-shadow: 0 4px 0 #22a056;
}

.btn-sus:hover, .btn-safe:hover {
    filter: brightness(1.15);
}

/* Custom Message (Toast) */
.toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    color: white;
    z-index: 1000;
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 1;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.toast.hidden {
    opacity: 0;
    transform: translate(-50%, -20px);
}

