/* style.css */
:root { --primary: #00ff88; --dark: #0f0f13; --glass: rgba(255, 255, 255, 0.05); --border: rgba(255, 255, 255, 0.1); }
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', sans-serif; user-select: none; }
body { background-color: var(--dark); color: white; overflow-x: hidden; touch-action: pan-x pan-y; }
.container { max-width: 600px; margin: 0 auto; padding: 20px; min-height: 100vh; padding-bottom: 60px; }
header h1 { text-align: center; color: var(--primary); text-shadow: 0 0 10px var(--primary); margin-bottom: 20px; font-size: 22px; text-transform: uppercase; letter-spacing: 2px; }
.card { background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: 15px; padding: 15px; margin-bottom: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
label { display: block; margin-bottom: 8px; font-weight: bold; color: #ccc; font-size: 14px; }
.input-box { position: relative; margin-bottom: 15px; }
input, select { width: 100%; padding: 12px; background: rgba(0,0,0,0.3); border: 1px solid var(--primary); border-radius: 8px; color: white; outline: none; font-size: 16px; }
.paste-icon { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: var(--primary); cursor: pointer; padding: 5px; }
.emote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.emote-item { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; padding: 10px; text-align: center; cursor: pointer; transition: 0.3s; }
.emote-item:hover, .emote-item.selected { border-color: var(--primary); background: rgba(0, 255, 136, 0.1); box-shadow: 0 0 10px var(--primary); }
.emote-item img { width: 100%; height: auto; border-radius: 5px; }
.emote-item p { font-size: 11px; margin-top: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.98); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.task-btn { display: block; width: 85%; padding: 12px; margin: 10px 0; background: linear-gradient(45deg, #ff0055, #ff00aa); color: white; text-decoration: none; border-radius: 25px; font-weight: bold; animation: pulse 2s infinite; }
.hidden { display: none !important; }
.credit { text-align: center; margin-top: 30px; color: #555; font-size: 12px; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.02); } 100% { transform: scale(1); } }
/* Login Modal */
#login-modal input { text-align: center; font-size: 20px; letter-spacing: 5px; }
.admin-btn { width: 100%; padding: 12px; background: var(--primary); border: none; font-weight: bold; cursor: pointer; margin-top: 10px; border-radius: 8px; color: black; }
.del-btn { background: red; color: white; border: none; padding: 5px 10px; cursor: pointer; border-radius: 5px; float: right;}
.list-item { background: #222; padding: 10px; margin: 5px 0; border-radius: 5px; }
