.acs-float-btn {
position: fixed;
bottom: 130px; right: 20px;
z-index: 99998;
display: flex;
align-items: center;
gap: 10px;
background: #ffffff; color: #C0392B; border: 2px solid #C0392B;
border-radius: 50px;
padding: 16px 28px;
font-size: 17px;
font-weight: 700;
cursor: pointer;
box-shadow: 0 6px 24px rgba(192, 57, 43, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
letter-spacing: 1px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
white-space: nowrap;
text-decoration: none;
user-select: none;
} .acs-float-icon {
flex-shrink: 0;
transition: transform 0.3s ease;
filter: drop-shadow(0 1px 2px rgba(0,0,0,0.10));
width: 24px; height: 24px;
}
.acs-float-icon path {
stroke: #C0392B; transition: stroke 0.2s ease;
}
.acs-float-btn:hover {
background: #C0392B;
color: #ffffff;
box-shadow: 0 10px 32px rgba(192, 57, 43, 0.35), 0 4px 12px rgba(0, 0, 0, 0.12);
transform: translateY(-3px);
} .acs-float-btn:hover .acs-float-icon path {
stroke: #ffffff;
}
.acs-float-btn:hover .acs-float-icon {
transform: scale(1.12);
filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
.acs-float-btn:active {
transform: translateY(-1px) scale(0.98);
box-shadow: 0 4px 16px rgba(192, 57, 43, 0.25);
} .acs-overlay {
display: none;
position: fixed;
inset: 0;
z-index: 99999;
background: rgba(0, 0, 0, 0.55);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
align-items: center;
justify-content: center;
animation: acsFadeIn 0.25s ease;
}
.acs-overlay.active {
display: flex;
}
@keyframes acsFadeIn {
from { opacity: 0; }
to   { opacity: 1; }
} .acs-modal {
background: #fff;
border-radius: 16px;
width: 92%;
max-width: 720px;
max-height: 85vh;
display: flex;
flex-direction: column;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
animation: acsSlideUp 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
overflow: hidden;
}
@keyframes acsSlideUp {
from { opacity: 0; transform: translateY(40px) scale(0.96); }
to   { opacity: 1; transform: translateY(0) scale(1); }
} .acs-modal-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 24px;
background: linear-gradient(135deg, #C0392B, #E74C3C);
color: #fff;
flex-shrink: 0;
}
.acs-modal-title {
margin: 0;
font-size: 20px;
font-weight: 700;
display: flex;
align-items: center;
gap: 10px;
letter-spacing: 1px;
}
.acs-title-icon {
flex-shrink: 0;
}
.acs-close-btn {
background: rgba(255,255,255,0.2);
border: none;
color: #fff;
width: 36px;
height: 36px;
border-radius: 50%;
font-size: 22px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s;
line-height: 1;
}
.acs-close-btn:hover {
background: rgba(255,255,255,0.35);
} .acs-modal-body {
padding: 24px;
overflow-y: auto;
flex: 1;
} .acs-search-row {
display: flex;
gap: 0;
margin-bottom: 16px;
border: 2px solid #e0e0e0;
border-radius: 10px;
overflow: hidden;
transition: border-color 0.2s;
}
.acs-search-row:focus-within {
border-color: #C0392B;
box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}
.acs-search-input {
flex: 1;
border: none;
outline: none;
padding: 14px 18px;
font-size: 15px;
color: #333;
background: #fafafa;
min-width: 0;
}
.acs-search-input::placeholder {
color: #aaa;
}
.acs-search-submit {
background: linear-gradient(135deg, #C0392B, #E74C3C);
color: #fff;
border: none;
padding: 14px 28px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
white-space: nowrap;
letter-spacing: 1px;
transition: background 0.2s;
}
.acs-search-submit:hover {
background: linear-gradient(135deg, #A93226, #D44637);
} .acs-instruction {
text-align: center;
font-size: 14px;
color: #888;
margin: 0 0 14px 0;
padding: 0;
} .acs-action-row {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 18px;
flex-wrap: wrap;
gap: 10px;
}
.acs-select-all {
display: flex;
align-items: center;
gap: 6px;
font-size: 13px;
color: #666;
cursor: pointer;
user-select: none;
}
.acs-select-all input[type="checkbox"] {
accent-color: #C0392B;
width: 16px;
height: 16px;
cursor: pointer;
} .acs-platform-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 10px;
}
.acs-platform-item {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 14px;
background: #f8f8f8;
border-radius: 10px;
cursor: pointer;
transition: all 0.2s;
border: 2px solid transparent;
user-select: none;
}
.acs-platform-item:hover {
background: #fef0ef;
border-color: rgba(192, 57, 43, 0.3);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.acs-platform-item input[type="checkbox"] {
accent-color: #C0392B;
width: 16px;
height: 16px;
cursor: pointer;
flex-shrink: 0;
}
.acs-platform-chip {
width: 32px;
height: 32px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 13px;
font-weight: 700;
flex-shrink: 0;
}
.acs-platform-name {
font-size: 14px;
font-weight: 500;
color: #333;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} @media (max-width: 600px) {
.acs-float-btn {
bottom: 110px; right: 12px;
border-radius: 50px;
padding: 14px 22px;
font-size: 15px;
}
.acs-modal {
width: 96%;
max-height: 90vh;
border-radius: 14px;
}
.acs-modal-header {
padding: 16px 18px;
}
.acs-modal-title {
font-size: 17px;
}
.acs-modal-body {
padding: 16px;
}
.acs-search-submit {
padding: 14px 18px;
font-size: 14px;
}
.acs-platform-list {
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 8px;
}
.acs-platform-item {
padding: 10px 12px;
}
.acs-action-row {
flex-direction: column;
align-items: stretch;
}
}.wp-copy-protected {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
} .wp-copy-protected input,
.wp-copy-protected textarea {
-webkit-user-select: text !important;
-moz-user-select: text !important;
-ms-user-select: text !important;
user-select: text !important;
} @media print {
body.wp-copy-rights-disable-print {
display: none !important;
}
} .wp-copy-rights-tooltip {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(0, 0, 0, 0.8);
color: #fff;
padding: 15px 25px;
border-radius: 5px;
font-size: 14px;
z-index: 999999;
pointer-events: none;
opacity: 0;
animation: fadeInOut 2s ease-in-out;
} .wp-copy-rights-watermark-container {
pointer-events: none !important;
user-select: none !important;
} @keyframes fadeInOut {
0% { opacity: 0; transform: translate(-50%, -60%); }
10% { opacity: 1; transform: translate(-50%, -50%); }
90% { opacity: 1; transform: translate(-50%, -50%); }
100% { opacity: 0; transform: translate(-50%, -40%); }
} .wp-copy-rights-devtools-modal-backdrop {
position: fixed;
inset: 0;
z-index: 2147483640;
background: rgba(0, 0, 0, 0.55);
display: flex;
align-items: center;
justify-content: center;
padding: 16px;
box-sizing: border-box;
}
.wp-copy-rights-devtools-modal {
max-width: 420px;
width: 100%;
background: #fff;
color: #1d2327;
border-radius: 6px;
padding: 22px 22px 18px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
font-size: 14px;
line-height: 1.55;
}
.wp-copy-rights-devtools-modal__title {
font-weight: 600;
font-size: 16px;
margin: 0 0 10px;
}
.wp-copy-rights-devtools-modal__text {
margin: 0 0 10px;
}
.wp-copy-rights-devtools-modal__hint {
margin: 0 0 18px;
font-size: 12px;
color: #646970;
}
.wp-copy-rights-devtools-modal__danger {
margin: -8px 0 14px;
font-size: 13px;
color: #d63638;
font-weight: 600;
}
.wp-copy-rights-devtools-modal__btn {
display: inline-block;
padding: 8px 18px;
font-size: 14px;
line-height: 1.4;
border: none;
border-radius: 4px;
cursor: pointer;
background: #2271b1;
color: #fff;
}
.wp-copy-rights-devtools-modal__btn:hover,
.wp-copy-rights-devtools-modal__btn:focus {
background: #135e96;
color: #fff;
} @media screen and (max-width: 768px) {
.wp-copy-rights-tooltip {
width: 80%;
max-width: 300px;
font-size: 12px;
padding: 10px 15px;
text-align: center;
}
.wp-copy-rights-devtools-modal {
padding: 18px 16px 14px;
font-size: 13px;
}
.wp-copy-rights-devtools-modal__btn {
width: 100%;
padding: 10px 16px;
}
}