:root {
    --bg-void: #050505;
    --text-primary: #e0e0e0;
    --text-dim: #666;
    --accent-red: #ff1a1a;
    --accent-red-dim: rgba(255, 26, 26, 0.15);
    --border-glass: rgba(255, 255, 255, 0.1);
    --font-mono: 'JetBrains Mono', monospace;
    --font-display: 'Rajdhani', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg-void); color: var(--text-primary); font-family: var(--font-mono); min-height: 100vh; overflow-x: hidden; display: flex; flex-direction: column; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #333; border: 1px solid #444; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-red); }

.scanlines { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.3)); background-size: 100% 4px; z-index: 99; pointer-events: none; opacity: 0.5; }
.noise { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 98; opacity: 0.04; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); }
.vignette { position: fixed; width: 100%; height: 100%; background: radial-gradient(circle, transparent 40%, #000 100%); z-index: 90; pointer-events: none; }

.top-nav { display: flex; justify-content: space-between; align-items: center; padding: 2rem 4rem; z-index: 100; flex-wrap: wrap; gap: 1rem; }
.logo { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: 2px; }
.auth-buttons { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.btn-text { color: var(--text-dim); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; white-space: nowrap; }
.btn-text:hover, .btn-text.danger:hover { color: var(--text-primary); }
.btn-text.danger { color: var(--accent-red); }
.btn-solid { background: var(--text-primary); color: var(--bg-void); padding: 0.8rem 1.5rem; text-decoration: none; font-weight: 700; font-size: 0.85rem; clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); transition: all 0.3s; white-space: nowrap; }
.btn-solid:hover { background: var(--accent-red); box-shadow: 0 0 15px var(--accent-red); }

.hero-layout { display: grid; grid-template-columns: 1fr 1fr; max-width: 1400px; margin: 0 auto; padding: 2rem 4rem; flex: 1; align-items: center; position: relative; z-index: 10; gap: 2rem; }
.status-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border-glass); padding: 6px 12px; border-radius: 50px; font-size: 0.75rem; color: var(--text-dim); margin-bottom: 2rem; background: rgba(255, 255, 255, 0.02); }
.dot { width: 8px; height: 8px; background: var(--accent-green); border-radius: 50%; box-shadow: 0 0 8px var(--accent-green); }
.glitch-title { font-family: var(--font-display); font-size: clamp(3rem, 5vw, 5rem); line-height: 0.9; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
.red-text { color: var(--accent-red); text-shadow: 0 0 20px rgba(255, 26, 26, 0.4); }
.hero-desc { font-size: 1.1rem; color: var(--text-dim); max-width: 500px; line-height: 1.6; margin-bottom: 3rem; border-left: 2px solid var(--accent-red); padding-left: 1.5rem; }
.username-claim { display: flex; gap: 1rem; margin-bottom: 4rem; max-width: 600px; }
.input-wrapper { flex: 1; display: flex; align-items: center; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-glass); padding: 0 1.5rem; transition: border-color 0.3s; }
.input-wrapper:focus-within { border-color: var(--accent-red); }
.prefix { color: var(--text-dim); user-select: none; font-size: 0.9rem; }
.input-wrapper input { background: transparent; border: none; color: var(--text-primary); font-family: var(--font-mono); font-size: 1.1rem; width: 100%; padding: 1.2rem 0 1.2rem 0.5rem; outline: none; }
.btn-claim { background: transparent; border: 1px solid var(--accent-red); color: var(--accent-red); font-family: var(--font-mono); font-weight: 700; padding: 0 2rem; cursor: pointer; transition: all 0.3s; white-space: nowrap; }
.btn-claim:hover { background: var(--accent-red); color: #000; box-shadow: 0 0 20px var(--accent-red-dim); }
.stats-row { display: flex; gap: 4rem; }
.stat { display: flex; flex-direction: column; }
.num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; }
.label { font-size: 0.75rem; color: var(--text-dim); letter-spacing: 1px; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; perspective: 1500px; }
.profile-preview { width: 380px; background: rgba(10, 10, 10, 0.8); backdrop-filter: blur(20px); border: 1px solid var(--border-glass); padding: 2rem; transform: rotateY(-15deg) rotateX(10deg); transition: transform 0.1s ease-out; box-shadow: -30px 30px 60px rgba(0, 0, 0, 0.8); position: relative; z-index: 2; }
.profile-preview::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent-red); box-shadow: 0 0 15px var(--accent-red); }
.preview-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.preview-pfp { width: 60px; height: 60px; background: #222; border: 1px solid var(--text-dim); }
.preview-name { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; }
.preview-role { font-size: 0.7rem; color: var(--accent-red); border: 1px solid var(--accent-red); display: inline-block; padding: 2px 6px; margin-top: 4px; }
.preview-link { background: rgba(255, 255, 255, 0.03); padding: 1rem; margin-bottom: 0.8rem; font-size: 0.85rem; border: 1px solid transparent; color: var(--text-dim); display: flex; align-items: center; }
.preview-link::before { content: '>'; margin-right: 10px; color: var(--accent-red); }
.preview-link.active { border-color: var(--accent-red); color: var(--text-primary); box-shadow: 0 0 10px var(--accent-red-dim); }
.preview-footer { margin-top: 2rem; font-size: 0.7rem; color: var(--text-dim); border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 1rem; }
.visual-glow { position: absolute; width: 400px; height: 400px; background: var(--accent-red); filter: blur(150px); opacity: 0.15; z-index: 1; }

.ticker-wrap { position: fixed; bottom: 0; width: 100%; overflow: hidden; height: 3rem; background: rgba(0, 0, 0, 0.8); border-top: 1px solid var(--border-glass); display: flex; align-items: center; z-index: 95; }
.ticker { display: flex; white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker__item { padding: 0 2rem; font-size: 0.8rem; color: var(--text-dim); letter-spacing: 2px; }

.container, .auth-container { flex: 1; display: flex; justify-content: center; align-items: center; perspective: 1200px; padding: 2rem; z-index: 10; width: 100%; }
.auth-box, .profile-card { width: 100%; max-width: 450px; background: rgba(10, 10, 10, 0.7); backdrop-filter: blur(15px); border: 1px solid var(--border-glass); padding: 3rem; position: relative; transform-style: preserve-3d; transition: transform 0.2s ease-out; }
.anamorphic:hover { transform: rotateX(2deg) rotateY(-2deg); border-color: rgba(255, 255, 255, 0.15); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8); }
.profile-card { max-width: 500px; }
.profile-card::before { content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px; background: linear-gradient(45deg, transparent 95%, var(--accent-red) 100%); z-index: -1; opacity: 0.5; }
.profile-header { display: flex; flex-direction: column; align-items: center; margin-bottom: 2rem; transform: translateZ(30px); }
.pfp-container { width: 100px; height: 100px; margin-bottom: 1rem; position: relative; border: 2px solid var(--text-dim); border-radius: 50%; padding: 4px; }
.pfp { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; filter: grayscale(100%); transition: 0.3s; }
.profile-card:hover .pfp { filter: grayscale(0%); box-shadow: 0 0 20px var(--accent-red-dim); }
.username { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; text-transform: uppercase; color: var(--text-primary); text-shadow: 2px 2px 0px var(--accent-red); text-align: center; line-height: 1.2; word-break: break-word; }
.badges { display: flex; gap: 0.5rem; margin-top: 0.5rem; flex-wrap: wrap; justify-content: center; }
.badge { font-size: 0.7rem; background: rgba(255, 255, 255, 0.05); padding: 2px 6px; border: 1px solid var(--text-dim); color: var(--text-dim); }
.status-box { background: rgba(0, 0, 0, 0.5); padding: 1rem; border-left: 2px solid var(--accent-red); font-size: 0.8rem; margin-bottom: 2rem; transform: translateZ(20px); }
.status-box p { margin-bottom: 0.3rem; color: var(--text-dim); }
.highlight { color: #fff; }
.links-grid { display: flex; flex-direction: column; gap: 10px; transform: translateZ(40px); }
.link-item { display: flex; justify-content: space-between; padding: 1rem; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-glass); text-decoration: none; color: var(--text-primary); font-size: 0.9rem; transition: all 0.2s; cursor: pointer; align-items: center; }
.link-item:hover { background: var(--accent-red); color: #000; border-color: var(--accent-red); box-shadow: 0 0 15px var(--accent-red); transform: scale(1.02); }
.footer-terminal { margin-top: 2rem; font-size: 0.7rem; color: var(--text-dim); border-top: 1px solid var(--border-glass); padding-top: 1rem; transform: translateZ(10px); }

.auth-header { text-align: center; margin-bottom: 2.5rem; }
.auth-header h2 { font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 2px; }
.auth-sub { font-size: 0.8rem; color: var(--accent-red); letter-spacing: 1px; }
.auth-form { display: flex; flex-direction: column; gap: 1.5rem; }
.input-group { display: flex; flex-direction: column; gap: 0.5rem; }
.input-group label { font-size: 0.75rem; color: var(--text-dim); letter-spacing: 1px; }
.danger { color: var(--accent-red); }
.input-group input { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-glass); padding: 1rem; color: var(--text-primary); font-family: var(--font-mono); font-size: 0.9rem; transition: all 0.3s; }
.input-group input:focus { border-color: var(--accent-red); background: rgba(255, 26, 26, 0.02); box-shadow: 0 0 15px var(--accent-red-dim); outline: none; }
.key-input { letter-spacing: 3px; text-align: center; }

.tos-group { margin-top: 0.5rem; }
.checkbox-container { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 0.8rem; color: var(--text-dim); user-select: none; }
.checkbox-container input { display: none; }
.checkmark { height: 16px; width: 16px; background-color: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-glass); position: relative; flex-shrink: 0; }
.checkbox-container input:checked~.checkmark { background-color: var(--accent-red); border-color: var(--accent-red); }
.checkbox-container a { color: var(--text-primary); text-decoration: none; border-bottom: 1px solid var(--accent-red); }

.btn-block { margin-top: 1rem; width: 100%; padding: 1.2rem; background: var(--text-primary); border: none; cursor: pointer; position: relative; overflow: hidden; font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: 2px; }
.btn-block:hover { background: var(--accent-red); color: black; }
.btn-block:hover .btn-glitch { animation: glitch-anim 0.3s cubic-bezier(.25, .46, .45, .94) both infinite; }
.auth-footer { margin-top: 3rem; text-align: center; font-size: 0.8rem; color: var(--text-dim); }
.highlight-link { color: var(--accent-red); text-decoration: none; font-weight: 700; }
.terminal-log { margin-top: 1.5rem; font-size: 0.7rem; opacity: 0.5; border-top: 1px solid var(--border-glass); padding-top: 1rem; }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(5px); display: flex; justify-content: center; align-items: center; z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; padding: 1rem; }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box { width: 100%; max-width: 600px; background: #0a0a0a; border: 1px solid var(--accent-red); padding: 2rem; box-shadow: 0 0 50px rgba(255, 26, 26, 0.2); text-align: center; transform: scale(0.95); transition: transform 0.3s ease; max-height: 90vh; display: flex; flex-direction: column; }
.modal-overlay.active .modal-box { transform: scale(1); }
.modal-scrollable-content { overflow-y: auto; padding-right: 10px; padding-bottom: 20px; text-align: left; flex: 1; }
.modal-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 1rem; }
.modal-content p { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 0.5rem; line-height: 1.5; }
.form-msg { margin-top: 15px; word-wrap: break-word; white-space: normal; font-size: 0.8rem; line-height: 1.4; text-align: center; }
.contact-box { background: rgba(255, 255, 255, 0.05); padding: 1rem; margin: 1.5rem 0; border-left: 3px solid var(--accent-red); display: flex; flex-direction: column; gap: 5px; }
.discord-link { color: var(--text-primary); text-decoration: none; font-weight: 700; font-size: 1.1rem; word-break: break-all; }
.btn-close { background: transparent; border: 1px solid var(--text-dim); color: var(--text-dim); padding: 0.8rem 2rem; cursor: pointer; font-family: var(--font-mono); font-size: 0.8rem; transition: all 0.3s; margin-top: 1rem; }
.btn-close:hover { border-color: var(--text-primary); color: var(--text-primary); background: rgba(255, 255, 255, 0.05); }

.admin-table-container { overflow-x: auto; margin-top: 1rem; }
.cyber-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; color: var(--text-dim); min-width: 500px; }
.cyber-table th { text-align: left; padding: 1rem; border-bottom: 2px solid var(--border-glass); color: var(--text-primary); font-family: var(--font-display); letter-spacing: 1px; }
.cyber-table td { padding: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.cyber-table tr:hover td { background: rgba(255, 255, 255, 0.02); color: var(--text-primary); }
.tag-used { color: var(--accent-red); }
.tag-free { color: #00f3ff; }
.btn-mini { background: transparent; border: 1px solid var(--accent-red); color: var(--accent-red); padding: 0.3rem 0.8rem; font-size: 0.7rem; cursor: pointer; transition: all 0.2s; }
.btn-mini:hover { background: var(--accent-red); color: #000; }

@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-100%, 0, 0); } }
@keyframes blink { 50% { opacity: 0; } }

.nexus-container { max-width: 1400px; margin: 0 auto; padding: 2rem; width: 100%; }
.nexus-controls { display: flex; gap: 1rem; margin-bottom: 2rem; }
.search-bar { flex: 1; background: rgba(0,0,0,0.5); border: 1px solid var(--border-glass); padding: 1rem; color: #fff; font-family: var(--font-mono); outline: none; }
.search-bar:focus { border-color: var(--accent-red); }

.nexus-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
.nexus-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border-glass); padding: 1.5rem; display: flex; flex-direction: column; align-items: center; transition: all 0.3s; text-decoration: none; position: relative; overflow: hidden; }
.nexus-card:hover { border-color: var(--accent-red); transform: translateY(-5px); background: rgba(255,255,255,0.05); }
.nexus-pfp { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; border: 1px solid var(--text-dim); filter: grayscale(100%); transition: 0.3s; }
.nexus-card:hover .nexus-pfp { filter: grayscale(0%); border-color: var(--accent-red); }
.nexus-name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.nexus-role { font-size: 0.6rem; border: 1px solid var(--text-dim); padding: 2px 6px; color: var(--text-dim); margin-bottom: 0.5rem; }
.nexus-card:hover .nexus-role { border-color: var(--accent-red); color: var(--accent-red); }
.nexus-stats { font-size: 0.7rem; color: var(--text-dim); display: flex; gap: 10px; }

.switch-container { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.02); padding: 1rem; border: 1px solid var(--border-glass); margin-bottom: 1rem; }
.switch { position: relative; display: inline-block; width: 50px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #333; transition: .4s; }
.slider:before { position: absolute; content: ""; height: 16px; width: 16px; left: 4px; bottom: 4px; background-color: white; transition: .4s; }
input:checked + .slider { background-color: var(--accent-red); }
input:focus + .slider { box-shadow: 0 0 1px var(--accent-red); }
input:checked + .slider:before { transform: translateX(26px); }

@media (max-width: 1024px) {
    .hero-layout { grid-template-columns: 1fr; padding: 2rem; text-align: center; gap: 4rem; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-desc { border-left: none; border-bottom: 2px solid var(--accent-red); padding-bottom: 1rem; padding-left: 0; }
    .username-claim { flex-direction: column; width: 100%; }
    .btn-claim { padding: 1rem; }
    .stats-row { justify-content: center; gap: 2rem; }
    .top-nav { padding: 1.5rem 2rem; }
}
@media (max-width: 768px) {
    .top-nav { flex-direction: column; gap: 1.5rem; padding: 1rem; }
    .auth-buttons { width: 100%; justify-content: center; gap: 1rem; }
    .hero-layout { padding: 1rem; }
    .hero-visual { display: none; }
    .stats-row { flex-wrap: wrap; gap: 2rem; }
    .auth-box, .profile-card { padding: 1.5rem; margin: 0; max-width: 100%; }
    .anamorphic:hover { transform: none; box-shadow: none; }
    .modal-box { padding: 1.5rem; width: 95%; }
    .link-item { padding: 0.8rem; }
    .nexus-controls { flex-direction: column; }
}
@media (max-width: 480px) {
    .glitch-title { font-size: 2.5rem; }
    .input-wrapper { padding: 0 1rem; }
    .prefix { font-size: 0.8rem; }
    .btn-solid, .btn-text { font-size: 0.8rem; padding: 0.6rem 1rem; }
}

.effect-rainbow { background-image: linear-gradient(to left, violet, indigo, blue, green, yellow, orange, red); -webkit-background-clip: text; color: transparent !important; background-size: 400% 100%; animation: rainbow 5s infinite linear; }
@keyframes rainbow { 0% { background-position: 0 0; } 100% { background-position: -100% 0; } }
.effect-gold { background: linear-gradient(to bottom, #cfc09f 22%, #634f2c 24%, #cfc09f 26%, #cfc09f 27%, #ffecb3 40%, #3a2c0f 78%); -webkit-background-clip: text; color: transparent !important; text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
.effect-fire { color: #f5f5f5; text-shadow: 0px -2px 4px #fff, 0px -2px 10px #FF3, 0px -10px 20px #F90, 0px -20px 40px #C33; animation: fire-flicker 2s infinite alternate; }
@keyframes fire-flicker { 0% { text-shadow: 0px -2px 4px #fff, 0px -2px 10px #FF3, 0px -10px 20px #F90, 0px -20px 40px #C33; } 100% { text-shadow: 0px -2px 4px #fff, 0px -2px 12px #FF3, 0px -12px 22px #F90, 0px -22px 45px #C33; } }
.effect-glitch { position: relative; color: white; }
.effect-glitch::before, .effect-glitch::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #0a0a12; }
.effect-glitch::before { left: 2px; text-shadow: -1px 0 #00f3ff; clip: rect(44px, 450px, 56px, 0); animation: glitch-anim 5s infinite linear alternate-reverse; }
.effect-glitch::after { left: -2px; text-shadow: -1px 0 #ff1a1a; clip: rect(44px, 450px, 56px, 0); animation: glitch-anim2 5s infinite linear alternate-reverse; }
@keyframes glitch-anim { 0% { clip: rect(14px, 9999px, 127px, 0); } 5% { clip: rect(81px, 9999px, 60px, 0); } 10% { clip: rect(6px, 9999px, 16px, 0); } 15% { clip: rect(86px, 9999px, 83px, 0); } 20% { clip: rect(14px, 9999px, 57px, 0); } 25% { clip: rect(6px, 9999px, 99px, 0); } 30% { clip: rect(27px, 9999px, 7px, 0); } 35% { clip: rect(2px, 9999px, 81px, 0); } 40% { clip: rect(61px, 9999px, 11px, 0); } 45% { clip: rect(58px, 9999px, 122px, 0); } 50% { clip: rect(19px, 9999px, 96px, 0); } 55% { clip: rect(78px, 9999px, 12px, 0); } 60% { clip: rect(40px, 9999px, 17px, 0); } 65% { clip: rect(32px, 9999px, 110px, 0); } 70% { clip: rect(67px, 9999px, 34px, 0); } 75% { clip: rect(57px, 9999px, 96px, 0); } 80% { clip: rect(21px, 9999px, 13px, 0); } 85% { clip: rect(14px, 9999px, 68px, 0); } 90% { clip: rect(33px, 9999px, 7px, 0); } 95% { clip: rect(59px, 9999px, 122px, 0); } 100% { clip: rect(13px, 9999px, 76px, 0); } }
@keyframes glitch-anim2 { 0% { clip: rect(2px, 9999px, 48px, 0); } 5% { clip: rect(87px, 9999px, 4px, 0); } 10% { clip: rect(56px, 9999px, 8px, 0); } 15% { clip: rect(10px, 9999px, 119px, 0); } 20% { clip: rect(72px, 9999px, 69px, 0); } 25% { clip: rect(53px, 9999px, 9px, 0); } 30% { clip: rect(24px, 9999px, 113px, 0); } 35% { clip: rect(3px, 9999px, 119px, 0); } 40% { clip: rect(14px, 9999px, 92px, 0); } 45% { clip: rect(53px, 9999px, 75px, 0); } 50% { clip: rect(63px, 9999px, 102px, 0); } 55% { clip: rect(7px, 9999px, 77px, 0); } 60% { clip: rect(89px, 9999px, 57px, 0); } 65% { clip: rect(3px, 9999px, 126px, 0); } 70% { clip: rect(23px, 9999px, 83px, 0); } 75% { clip: rect(7px, 9999px, 35px, 0); } 80% { clip: rect(72px, 9999px, 9px, 0); } 85% { clip: rect(75px, 9999px, 119px, 0); } 90% { clip: rect(62px, 9999px, 11px, 0); } 95% { clip: rect(82px, 9999px, 99px, 0); } 100% { clip: rect(32px, 9999px, 79px, 0); } }
.effect-neon { color: #fff; text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #00f3ff, 0 0 40px #00f3ff, 0 0 80px #00f3ff; }
