Gag Appeal Form
Please fill in the following information accurately to request a gag removal.
Name: (Your Name)
Time: (The time at which you got gagged)
Reason: (Reason of your gag)
Admin: (The admin who gagged you) [Optional]
Important Notes
The administrator who issued the gag must reply to the post, stating the reason for the gag.
You are required to express remorse and assure that you will refrain from repeating the behavior that led to the gag.
If this is your first gag, the removal process will be relatively straightforward. However, if this is your second or third request for gag removal, it will be more difficult, as repeated offenses indicate a pattern of misconduct.
Submit Gag Appeal
/* --- Button Styling --- */
.gag-form .appeal-btn {
display:inline-block;
margin-top:35px;
padding:14px 40px;
font-size:20px;
font-weight:bold;
color:#fff;
background:linear-gradient(90deg,#a855f7,#ec4899);
border:none;
border-radius:10px;
text-decoration:none;
box-shadow:0 0 20px rgba(168,85,247,0.6);
transition:0.3s;
position:relative;
overflow:hidden;
}
.gag-form .appeal-btn:hover {
box-shadow:0 0 35px rgba(217,70,239,0.8), 0 0 20px rgba(236,72,153,0.6);
transform:scale(1.05);
}
/* --- Shining light effect on button --- */
.gag-form .shine {
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
animation:shine 3s infinite;
z-index:1;
}
@keyframes shine {
0% { left:-100%; }
50% { left:100%; }
100% { left:100%; }
}
/* --- Floating glow animation ONLY for gag form container --- */
.gag-form {
animation:softGlow 5s ease-in-out infinite alternate;
}
@keyframes softGlow {
from { box-shadow:0 0 25px rgba(139,92,246,0.4); }
to { box-shadow:0 0 45px rgba(217,70,239,0.8); }
}