.gm-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.7);
backdrop-filter: blur(6px);
z-index: 9998;
opacity: 0;
visibility: hidden;
transition: all 0.25s;
}
.gm-overlay.active {
opacity: 1;
visibility: visible;
}
.gm-modal {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%,-50%) scale(0.95);
background: #1c2130;
border: 1px solid rgba(255,255,255,0.08);
border-radius: 14px;
padding: 18px;
width: 92%;
max-width: 340px;
z-index: 9999;
opacity: 0;
visibility: hidden;
transition: all 0.25s;
}
.gm-modal.active {
opacity: 1;
visibility: visible;
transform: translate(-50%,-50%) scale(1);
}
.gm-x {
position: absolute;
top: 10px;
right: 10px;
background: none;
border: none;
color: rgba(255,255,255,0.4);
font-size: 20px;
cursor: pointer;
padding: 0;
line-height: 1;
}
.gm-x:hover {
color: white;
}
.gm-progress {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
margin-bottom: 16px;
}
.gm-dot {
width: 8px;
height: 8px;
background: rgba(255,255,255,0.15);
border-radius: 50%;
transition: all 0.25s;
}
.gm-dot.active {
background: #4a9eff;
width: 20px;
border-radius: 4px;
}
.gm-dot.done {
background: #22c55e;
}
.gm-step {
display: none;
}
.gm-step.active {
display: block;
animation: fadeIn 0.2s;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(6px); }
to { opacity: 1; transform: translateY(0); }
}
.gm-step h3 {
margin: 0 0 14px;
font-size: 14px;
font-weight: 600;
color: white;
text-align: center;
}
.gm-opt {
color: rgba(255,255,255,0.35);
font-size: 10px;
font-weight: 400;
margin-left: 4px;
}
.gm-vs {
display: flex;
align-items: center;
gap: 10px;
}
.gm-pick {
flex: 1;
position: relative;
background: rgba(255,255,255,0.03);
border: 2px solid rgba(255,255,255,0.08);
border-radius: 10px;
padding: 10px;
cursor: pointer;
transition: all 0.2s;
text-align: center;
}
.gm-pick:hover {
border-color: rgba(255,255,255,0.2);
}
.gm-pick.selected {
border-color: #4a9eff;
background: rgba(74,158,255,0.1);
}
.gm-pick img {
width: 100%;
border-radius: 6px;
margin-bottom: 6px;
}
.gm-pick span {
font-size: 11px;
font-weight: 500;
color: white;
}
.gm-check {
position: absolute;
top: 6px;
right: 6px;
width: 18px;
height: 18px;
background: #4a9eff;
border-radius: 50%;
font-size: 10px;
color: white;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transform: scale(0.5);
transition: all 0.2s;
}
.gm-pick.selected .gm-check {
opacity: 1;
transform: scale(1);
}
.gm-or {
font-size: 11px;
font-weight: 600;
color: rgba(255,255,255,0.25);
}
.gm-rate-single {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
padding: 10px 0;
}
.gm-rate-img {
width: 120px;
border-radius: 8px;
}
.gm-fb-img {
width: 80px;
border-radius: 6px;
display: block;
margin: 0 auto 12px;
}
.gm-stars {
display: flex;
gap: 6px;
}
.gm-stars span {
font-size: 32px;
color: rgba(255,255,255,0.15);
cursor: pointer;
transition: all 0.15s;
}
.gm-stars span:hover {
transform: scale(1.1);
}
.gm-stars span.active {
color: #fbbf24;
}
.gm-stars span.pop {
animation: pop 0.35s;
}
@keyframes pop {
50% { transform: scale(1.3); }
}
.gm-field {
margin-bottom: 10px;
}
.gm-field label {
display: block;
font-size: 11px;
color: rgba(255,255,255,0.5);
margin-bottom: 4px;
}
.gm-field textarea {
width: 100%;
min-height: 55px;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 8px;
padding: 10px;
color: white;
font-size: 12px;
resize: none;
}
.gm-field textarea:focus {
outline: none;
border-color: #4a9eff;
}
.gm-field textarea::placeholder {
color: rgba(255,255,255,0.25);
}
.gm-nav {
display: flex;
justify-content: space-between;
gap: 10px;
margin-top: 14px;
}
.gm-btn {
padding: 9px 16px;
background: rgba(255,255,255,0.08);
border: none;
border-radius: 8px;
color: rgba(255,255,255,0.7);
font-size: 12px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
}
.gm-btn:hover {
background: rgba(255,255,255,0.12);
color: white;
}
.gm-btn.primary {
background: #4a9eff;
color: white;
}
.gm-btn.primary:hover {
background: #3b8de6;
}
.gm-btn.primary:disabled {
background: rgba(255,255,255,0.08);
color: rgba(255,255,255,0.25);
cursor: not-allowed;
}
.gm-btn.submit {
background: #22c55e;
color: white;
}
.gm-btn.submit:hover {
background: #1db954;
}
.gm-btn.submit:disabled {
background: rgba(255,255,255,0.08);
color: rgba(255,255,255,0.25);
cursor: not-allowed;
}
.gm-btn.submit.update-mode {
background: #3b82f6;
}
.gm-btn.submit.update-mode:hover {
background: #2563eb;
}
.gm-thanks {
text-align: center;
padding: 20px 0;
}
.gm-thanks-icon {
font-size: 48px;
margin-bottom: 12px;
}
.gm-thanks h3 {
margin: 0 0 8px;
font-size: 18px;
color: white;
}
.gm-thanks p {
margin: 0 0 20px;
font-size: 13px;
color: rgba(255,255,255,0.6);
line-height: 1.5;
}
.gm-thanks strong {
color: #4a9eff;
}
@media (max-width: 380px) {
.gm-modal {
padding: 14px;
}
.gm-vs {
flex-direction: column;
gap: 8px;
}
.gm-or {
margin: 2px 0;
}
.gm-stars span {
font-size: 28px;
}
}