* {
    box-sizing: border-box;
    cursor: url('https://cur.cursors-4u.net/cursors/cur-2/cur116.cur'), auto;
}
*::before {
    box-sizing: border-box;
}
*::after {
    box-sizing: border-box;
}
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s forwards ease-out;
}
.back-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 22px;
    padding: 9px 22px 9px 17px;
    min-width: 92px;
    color: #00ffff;
    background: linear-gradient(90deg, rgba(0,255,255,0.11), rgba(0,0,0,0.88) 38%, rgba(0,0,0,0.96));
    border: 1px solid rgba(0,255,255,0.38);
    text-decoration: none;
    font-family: monospace;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    opacity: 0.58;
    clip-path: polygon(0 50%, 13% 0, 100% 0, 92% 50%, 100% 100%, 13% 100%);
    box-shadow: 0 0 12px rgba(0,255,255,0.14), inset 0 0 12px rgba(0,255,255,0.05);
    text-shadow: 0 0 8px rgba(0,255,255,0.8);
    transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.back-btn:hover {
    color: #00ffff;
    opacity: 1;
    transform: translateX(-3px);
    filter: drop-shadow(0 0 6px #00ffff) drop-shadow(0 0 15px rgba(0,255,255,0.55));
    text-shadow: 0 0 5px #ffffff, 0 0 12px #00ffff, 0 0 22px #00ffff;
}
.footer a {
    color: #fff;
    text-decoration: none;
    transition: 0.25s ease;
    opacity: 0.8;
}
.footer a:hover {
    color: var(--neon) !important;
    text-shadow: 0 0 12px #00ffff !important;
    opacity: 1;
    box-shadow: 0 0 25px #00ffff !important;
    border-color: #00ffff !important;
    border-radius: 8px;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    background: #000 !important;
    margin: 0;
    padding: 0;
    height: 100%;
}
body {
    background: #000 !important;
    color: #eaeaea;
    animation: fadeIn 0.6s ease;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    height: 100%;
}
body::before {
    content: "";
    position: fixed;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.05), transparent 60%);
    pointer-events: none;
    z-index: -1;
    animation: ambientGlow 12s ease-in-out infinite alternate;
}
.section {
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.85);
    border: 1px solid rgba(0,255,255,0.08);
    position: relative;
    color: #eaeaea;
    box-shadow: 0 0 18px rgba(0,255,255,0.05);
    margin: 0;
    padding: 0;
}
.section::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
    border: 1px solid rgba(0,255,255,0.08);
    box-shadow: 0 0 18px rgba(0,255,255,0.05);
}
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.015),
        rgba(255,255,255,0.015) 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: -1;
    opacity: 0.25;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(13,13,13,0.85);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
}
.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: box-shadow 0.2s ease;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 12px var(--neon);
}
.dropdown:hover .dropdown-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.hero {
    background: rgba(0,0,0,0.85);
    color: #fff;
    text-shadow: 0 0 18px rgba(0,255,255,0.25);
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 1px;
    animation: heroFloat 6s ease-in-out infinite;
    color: #fff;
    text-shadow: 0 0 18px #00ffff !important;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}
.hero p {
    font-size: 20px;
    opacity: 0.8;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}
.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    padding: 10px 0;
    margin-top: 20px;
}
.tool-overlay {
    position: fixed !important;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden !important;
}
.overlay-content {
    background: rgba(20,20,20,0.75);
    border: 1px solid #00ffff !important;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 25px #00ffff !important;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    padding-top: 50px;
    scrollbar-width: none;
    overflow: hidden;
    border-color: var(--neon) !important;
}
.overlay-close {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    background: rgba(0,255,255,0.15) !important;
    border: 1px solid #00ffff !important;
    color: #00ffff !important;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    transition: 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999 !important;
}
.category-btn {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,255,255,0.15);
    border-radius: 8px;
    color: #0ff;
    text-align: left;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.25s ease;
}
.category-tools {
    display: none;
    margin-left: 10px;
    margin-top: 8px;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}
.category-tools a {
    display: block;
    padding: 8px 12px;
    margin: 4px 0;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    color: #0ff;
    text-decoration: none;
}
.tool-highlight {
    animation: glow var(--tool-highlight-duration, 4000ms) ease-out !important;
    position: relative;
    z-index: 2;
}
.tool-card {
    background: rgba(0,0,0,0.85);
    padding: 20px;
    border-radius: 10px;
    transition: 0.25s ease;
    cursor: pointer;
    border: 1px solid rgba(0,255,255,0.1);
    transform-style: preserve-3d;
    perspective: 900px;
    backdrop-filter: blur(10px);
    color: #eaeaea;
    box-shadow: 0 0 25px rgba(0,255,255,0.15);
    text-decoration: none;
}
.tool-card:hover {
    background: rgba(0,0,0,0.95);
    transform: translateY(-8px) scale(1.04) rotateX(3deg) rotateY(1deg);
    box-shadow: 0 0 25px #00ffff !important;
    border-color: var(--neon) !important;
    color: #00ffff !important;
    text-shadow: 0 0 12px #00ffff !important;
    border-radius: 8px;
}
.tool-input textarea {
    width: 100%;
    height: 180px;
    padding: 15px;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid #333;
    background: rgba(17,17,17,0.85);
    color: #fff;
    resize: vertical;
    transition: 0.25s ease;
    font-family: "JetBrains Mono", monospace;
    line-height: 1.5;
    backdrop-filter: blur(6px);
    box-sizing: border-box;
}
.tool-output textarea {
    width: 100%;
    height: 180px;
    padding: 15px;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid #333;
    background: rgba(17,17,17,0.85);
    color: #fff;
    resize: vertical;
    transition: 0.25s ease;
    font-family: "JetBrains Mono", monospace;
    line-height: 1.5;
    backdrop-filter: blur(6px);
    box-sizing: border-box;
}
.tool-input textarea:focus {
    border-color: #0ff;
    box-shadow: 0 0 12px rgba(0,255,255,0.2);
    outline: none;
}
.tool-output textarea:focus {
    border-color: #0ff;
    box-shadow: 0 0 12px rgba(0,255,255,0.2);
    outline: none;
}
.tool-input input {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #333;
    background: rgba(17,17,17,0.85);
    color: #fff;
    transition: 0.25s ease;
    font-family: "JetBrains Mono", monospace;
    backdrop-filter: blur(6px);
    box-sizing: border-box;
}
.tool-input input:focus {
    border-color: #0ff;
    box-shadow: 0 0 12px rgba(0,255,255,0.2);
    outline: none;
}
.tool-actions {
    text-align: center;
    margin-top: 10px;
}
.btn-primary {
    padding: 12px;
    background: linear-gradient(180deg, #0088aa 0%, #006677 100%);
    color: #e0faff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.25s ease;
    font-weight: 600;
    box-shadow: 0 0 12px var(--neon-ultra-soft);
}
.btn-primary:hover {
    background: linear-gradient(180deg, #00aacc 0%, #008899 100%);
    box-shadow: 0 0 18px var(--neon-soft);
    transform: translateY(-2px);
    border-color: var(--neon) !important;
    color: #ffffff;
}
.btn-primary:active {
    transform: scale(0.97);
}
a {
    transition: opacity 0.25s ease, transform 0.25s ease;
}
a:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    color: var(--neon) !important;
    text-shadow: 0 0 8px var(--neon-soft);
}
.footer {
    margin-top: 60px;
    padding: 30px;
    text-align: center;
    background: rgba(0,0,0,0.9);
    color: #ddd;
    font-size: 14px;
    border-top: 1px solid #222;
    box-shadow: 0 -10px 25px rgba(0,255,255,0.15);
    backdrop-filter: blur(8px);
    margin: 0;
}
.section-title {
    color: var(--neon);
    text-shadow: 0 0 18px #00ffff !important;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}
.tool-title {
    color: var(--neon);
    text-shadow: 0 0 18px #00ffff !important;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}
.section-subtitle {
    color: #ccc;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
.tool-card p {
    color: #d0d0d0;
    text-decoration: none;
}
.dropdown-content {
    background: rgba(25,25,25,0.75);
    backdrop-filter: blur(10px);
}
.hero-brand {
    display: block;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #0ff;
    opacity: 0.85;
    margin-bottom: 10px;
    text-shadow: 0 0 18px #00ffff !important;
}
.hero-subtitle {
    font-size: 22px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 35px;
    text-shadow: 0 0 12px rgba(255,255,255,0.1);
}
.hero-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    color: #0ff;
    border: 2px solid #0ff;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s ease;
    backdrop-filter: blur(6px);
    background: rgba(0,255,255,0.05);
    box-shadow: 0 0 18px rgba(0,255,255,0.15);
}
.hero-btn:hover {
    background: rgba(0,255,255,0.15);
    box-shadow: 0 0 25px #00ffff !important;
    transform: translateY(-3px);
    border-color: var(--neon) !important;
    color: #00ffff !important;
    text-shadow: 0 0 12px #00ffff !important;
    border-radius: 8px;
}
.overlay-title {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0,255,255,0.4);
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-bottom: 12px;
}
.overlay-section h3 {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0,255,255,0.4);
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-bottom: 12px;
}
.tool-link {
    color: #0ff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}
.tool-link:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(0,255,255,0.5);
}
.overlay-close:hover {
    background: rgba(0,255,255,0.25);
    box-shadow: 0 0 25px #00ffff !important;
    border-color: #00ffff !important;
    color: #00ffff !important;
    text-shadow: 0 0 12px #00ffff !important;
    border-radius: 8px;
}
.category-btn:hover {
    background: rgba(0,255,255,0.15);
    color: #00ffff !important;
    box-shadow: 0 0 25px #00ffff !important;
    border-color: var(--neon) !important;
    text-shadow: 0 0 12px #00ffff !important;
    border-radius: 8px;
}
.highlight-section {
    background: rgba(0,255,255,0.05);
    border: 1px solid rgba(0,255,255,0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 0 12px rgba(0,255,255,0.1);
}
.overlay-content::-webkit-scrollbar {
    display: none;
}
body.overlay-open {
    overflow: hidden !important;
    height: 100%;
}
html.overlay-open {
    overflow: hidden !important;
    height: 100%;
}
.category {
    overflow: hidden;
}
.ad-slot {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 18px;
    background: #f3f3f3;
    border: 1px dashed #ccc;
    text-align: center;
    color: #555;
    font-size: 14px;
    border-radius: 8px;
    z-index: 2;
}
.dark .ad-slot {
    background: #222;
    border-color: #444;
    color: #aaa;
}
.tool-wrapper {
    display: block !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 20px;
    grid-area: main !important;
    width: 100%;
    min-width: 0;
    overflow: visible;
}
select {
    background-color: #111;
    color: #e0faff;
    border: 1px solid var(--neon-soft);
    border-radius: 6px;
    padding: 10px;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23ddd' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5.516 7.548l4.484 4.484 4.484-4.484L16 8.548l-6 6-6-6z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    width: 100%;
    background: rgba(0,0,0,0.6);
}
select:focus {
    border-color: var(--neon) !important;
    box-shadow: 0 0 10px var(--neon-soft);
}
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00ffff;
    cursor: pointer;
}
.tool-card h3 {
    text-decoration: none;
}
.tool-container {
    width: 100%;
    max-width: 700px;
    margin: 40px auto;
    min-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(0,0,0,0.4);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 12px var(--neon-soft);
}
.tool-input select {
    width: 100%;
    box-sizing: border-box;
}
.tool-input {
    margin-bottom: 2rem;
    width: 100%;
    min-width: 0;
}
.tool-output {
    margin-bottom: 2rem;
    width: 100%;
    min-width: 0;
}
.tool-container input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #00ffff44;
    background: rgba(10, 10, 10, 0.8);
    color: #e0faff;
    font-family: inherit;
    transition: 0.25s ease;
}
.tool-container textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #00ffff44;
    background: rgba(10, 10, 10, 0.8);
    color: #e0faff;
    font-family: inherit;
    transition: 0.25s ease;
}
.tool-container select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #00ffff44;
    background: rgba(10, 10, 10, 0.8);
    color: #e0faff;
    font-family: inherit;
    transition: 0.25s ease;
}
.tool-container input:focus {
    border-color: #00ffffaa;
    box-shadow: 0 0 10px #00ffff55;
    outline: none;
}
.tool-container textarea:focus {
    border-color: #00ffffaa;
    box-shadow: 0 0 10px #00ffff55;
    outline: none;
}
.tool-container select:focus {
    border-color: #00ffffaa;
    box-shadow: 0 0 10px #00ffff55;
    outline: none;
}
.tool-container select:hover {
    border-color: #00ffffaa;
    box-shadow: 0 0 10px #00ffff55;
}
.tool-container .btn-primary {
    background: #000;
    color: #e0faff;
    border: 1px solid #00ffff55;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 0 14px #00ffff33;
    transition: 0.25s ease;
}
.tool-container .btn-primary:hover {
    border-color: #00ffffaa;
    box-shadow: 0 0 20px #00ffff77;
    color: #ffffff;
    background: #000;
}
.tool-container #output {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid #00ffff44;
    color: #e0faff;
    border-radius: 8px;
    padding: 10px;
}
.tool-container .section-title {
    text-align: center;
    color: #00ffff;
    text-shadow: 0 0 12px #00ffffaa;
}
.tool-container .section-subtitle {
    text-align: center;
    color: #99ccdd;
    margin-bottom: 20px;
}
body.no-scroll {
    overflow: hidden;
}
.tool-ad {
    width: 100%;
    padding: 18px;
    background: #f3f3f3;
    border: 1px dashed #ccc;
    border-radius: 8px;
    text-align: center;
    color: #555;
    font-size: 14px;
    margin: 20px 0;
}
.dark .tool-ad {
    background: #222;
    border-color: #444;
    color: #aaa;
}
.page-layout {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) 160px;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "left main right"
    "left main right"
    "bottom bottom bottom";
    gap: 20px;
    min-height: 100vh;
    align-items: stretch;
}
#ads-tool-left {
    grid-area: left;
    background: #f3f3f3;
    border: 1px dashed #ccc;
    border-radius: 8px;
    padding: 10px;
    height: 100%;
}
#ads-tool-right {
    grid-area: right;
    background: #f3f3f3;
    border: 1px dashed #ccc;
    border-radius: 8px;
    padding: 10px;
    height: 100%;
}
#ads-tool-bottom {
    grid-area: bottom;
    margin-top: 20px;
}
#toolOverlay.hidden {
    display: none !important;
}
:root {
    --neon: #00ffff;
    --neon-soft: rgba(0, 255, 255, 0.22);
    --neon-ultra-soft: rgba(0, 255, 255, 0.12);
}
input:focus {
    border-color: var(--neon) !important;
    box-shadow: 0 0 10px var(--neon-soft);
}
textarea:focus {
    border-color: var(--neon) !important;
    box-shadow: 0 0 10px var(--neon-soft);
}
.overlay-content .tool-link {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.2s ease;
    color: #eaeaea !important;
}
.overlay-content .tool-link:hover {
    background: rgba(0, 255, 255, 0.15) !important;
    color: var(--neon) !important;
    text-shadow: 0 0 10px var(--neon-soft) !important;
    box-shadow: 0 0 12px var(--neon-ultra-soft) !important;
    transform: translateX(4px);
}
footer {
    grid-column: 1 / -1 !important;
}
label {
    font-weight: 600;
    margin-top: 6px;
}
input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid var(--neon-soft);
    background: rgba(0,0,0,0.6);
    color: #e0faff;
}
textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid var(--neon-soft);
    background: rgba(0,0,0,0.6);
    color: #e0faff;
    resize: vertical;
    height: 100px;
}
.output {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#output {
    height: 120px;
}
.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}
h1 {
    text-align: center;
    color: var(--neon);
    text-shadow: 0 0 6px var(--neon-soft);
}
.seo-text {
    margin-top: 40px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
}
.seo-text h2 {
    color: #00ffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-shadow: 0 0 6px rgba(0,255,255,0.3);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ambientGlow {
    0% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    100% { transform: translate(20px, 30px) scale(1.1); opacity: 0.6; }
}

@keyframes heroFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 24px #00ffff, 0 0 52px rgba(0,255,255,0.95), 0 0 90px rgba(0,255,255,0.8);
        border-color: #00ffff;
        transform: scale(1.03);
    }
    35% {
        box-shadow: 0 0 20px #00ffff, 0 0 42px rgba(0,255,255,0.85), 0 0 72px rgba(0,255,255,0.6);
        border-color: #00ffff;
        transform: scale(1.02);
    }
    75% {
        box-shadow: 0 0 14px rgba(0,255,255,0.8), 0 0 30px rgba(0,255,255,0.5);
        transform: scale(1.01);
    }
    100% {
        box-shadow: none;
        transform: scale(1);
    }
}


#back-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 48px;
    height: 58px;
    border: 1px solid rgba(0,255,255,0.42);
    background: linear-gradient(180deg, rgba(0,255,255,0.10), rgba(0,0,0,0.92) 42%, rgba(0,0,0,0.98));
    color: #00ffff;
    font-family: monospace;
    font-size: 25px;
    font-weight: 300;
    cursor: pointer;
    opacity: 0.42;
    z-index: 9999;
    clip-path: polygon(50% 0%, 100% 22%, 82% 82%, 50% 100%, 18% 82%, 0% 22%);
    box-shadow: 0 0 12px rgba(0,255,255,0.18), inset 0 0 14px rgba(0,255,255,0.06);
    text-shadow: 0 0 8px #00ffff, 0 0 18px rgba(0,255,255,0.7);
    transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

#back-to-top:hover {
    opacity: 0.95;
    transform: translateY(-3px);
    filter: drop-shadow(0 0 7px #00ffff) drop-shadow(0 0 18px rgba(0,255,255,0.65));
    text-shadow: 0 0 5px #ffffff, 0 0 12px #00ffff, 0 0 26px #00ffff;
}
