:root{
  --bg:#0a0f1c;
  --bg-alt:#0d1424;
  --surface:#111a2e;
  --surface-2:#162138;
  --border:rgba(255,255,255,0.09);
  --text:#eef2fa;
  --text-dim:#8b9bc0;
  --amber:#1ce009;
  --amber-dim:rgba(52,211,153,0.14);
  --cyan:#22d3ee;
  --cyan-dim:rgba(34,211,238,0.13);
  --success:#3ddc97;
  --shadow:rgba(0,0,0,0.55);
}

*{box-sizing:border-box;}

html{scroll-behavior:smooth;}

body{
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
  cursor:default;
}

h1,h2,h3,h4,.display-font{
  font-family:'Space Grotesk',sans-serif;
}

.mono{
  font-family:'IBM Plex Mono',monospace;
}

a{text-decoration:none;}

/* ---------- Cursor Spotlight ---------- */
#cursor-glow{
  position:fixed;
  top:0;left:0;
  width:600px;height:600px;
  border-radius:50%;
  pointer-events:none;
  background:radial-gradient(circle, rgba(37,99,235,0.07) 0%, rgba(14,165,233,0.04) 35%, transparent 70%);
  transform:translate(-50%,-50%);
  z-index:2;
  transition:opacity .3s ease;
  will-change:transform;
}

/* ---------- Nav ---------- */
.navbar-kh{
  background:rgba(10,15,28,0.82);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  padding:.9rem 0;
}

.navbar-kh .navbar-brand{
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:1.35rem;
  color:var(--text);
  letter-spacing:.5px;
}

.navbar-kh .navbar-brand .blink{
  color:var(--amber);
  animation:blink 1.4s steps(1) infinite;
}

@keyframes blink{
  0%,49%{opacity:1;}
  50%,100%{opacity:0;}
}

.navbar-kh .nav-link{
  font-family:'IBM Plex Mono',monospace;
  font-size:.85rem;
  color:var(--text-dim) !important;
  margin:0 .6rem;
  transition:color .2s ease;
}
.navbar-kh .nav-link:hover{color:var(--cyan) !important;}

.btn-amber{
  background:var(--amber);
  border:none;
  color:#12100a;
  font-weight:600;
  font-family:'IBM Plex Mono',monospace;
  font-size:.85rem;
  padding:.55rem 1.3rem;
  border-radius:6px;
  transition:transform .2s ease, box-shadow .2s ease;
}
.btn-amber:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(245,176,67,.30);
  color:#12100a;
}

.btn-outline-kh{
  border:1px solid var(--border);
  color:var(--text);
  font-family:'IBM Plex Mono',monospace;
  font-size:.85rem;
  padding:.55rem 1.3rem;
  border-radius:6px;
  transition:all .2s ease;
  background:transparent;
}
.btn-outline-kh:hover{
  border-color:var(--cyan);
  color:var(--cyan);
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  padding:7.5rem 0 5rem;
  z-index:1;
  overflow:hidden;
}

.hero::before{
  content:'';
  position:absolute;
  top:-200px; right:-200px;
  width:600px;height:600px;
  background:radial-gradient(circle, var(--amber-dim) 0%, transparent 70%);
  z-index:-1;
}
.hero::after{
  content:'';
  position:absolute;
  bottom:-250px; left:-150px;
  width:600px;height:600px;
  background:radial-gradient(circle, var(--cyan-dim) 0%, transparent 70%);
  z-index:-1;
}

.eyebrow{
  font-family:'IBM Plex Mono',monospace;
  font-size:.78rem;
  letter-spacing:2px;
  color:var(--cyan);
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  margin-bottom:1.2rem;
}
.eyebrow .dot{
  width:7px;height:7px;
  border-radius:50%;
  background:var(--success);
  box-shadow:0 0 8px var(--success);
  animation:pulse 1.8s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{opacity:1;}
  50%{opacity:.35;}
}

.hero h1{
  font-size:3.1rem;
  font-weight:700;
  line-height:1.1;
  letter-spacing:-1px;
  margin-bottom:1.4rem;
}
.hero h1 span{color:var(--amber);}

.hero p.lead{
  color:var(--text-dim);
  font-size:1.08rem;
  max-width:520px;
  margin-bottom:2rem;
}

.hero-stats{
  display:flex;
  gap:2.2rem;
  margin-top:3rem;
  flex-wrap:wrap;
}
.hero-stats .stat-num{
  font-family:'Space Grotesk',sans-serif;
  font-size:1.6rem;
  font-weight:700;
  color:var(--text);
}
.hero-stats .stat-label{
  font-family:'IBM Plex Mono',monospace;
  font-size:.72rem;
  color:var(--text-dim);
  letter-spacing:1px;
  text-transform:uppercase;
}

/* ---------- 3D Rack Visual ---------- */
.rack-stage{
  perspective:1400px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:420px;
  position:relative;
}

.rack{
  width:100%;
  max-width:380px;
  background:linear-gradient(160deg, var(--surface-2), var(--surface));
  border:1px solid var(--border);
  border-radius:16px;
  padding:1.4rem;
  transform-style:preserve-3d;
  transform:rotateX(8deg) rotateY(-14deg);
  transition:transform .15s ease-out;
  box-shadow:0 40px 90px -25px var(--shadow), 0 0 0 1px rgba(255,255,255,.05) inset;
  will-change:transform;
}

.rack-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:1rem;
  font-family:'IBM Plex Mono',monospace;
  font-size:.7rem;
  color:var(--text-dim);
  letter-spacing:1px;
}
.rack-header .leds span{
  width:7px;height:7px;
  border-radius:50%;
  display:inline-block;
  margin-left:4px;
}

.rack-unit{
  background:rgba(255,255,255,.03);
  border:1px solid var(--border);
  border-radius:8px;
  padding:.8rem 1rem;
  margin-bottom:.65rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  transform:translateZ(20px);
  transition:transform .15s ease-out;
}
.rack-unit:last-child{margin-bottom:0;}

.rack-unit .u-label{
  font-family:'IBM Plex Mono',monospace;
  font-size:.72rem;
  color:var(--text-dim);
}
.rack-unit .u-name{
  font-family:'IBM Plex Mono',monospace;
  font-size:.82rem;
  color:var(--text);
  font-weight:500;
}
.rack-unit .u-led{
  width:8px;height:8px;
  border-radius:50%;
  background:var(--success);
  box-shadow:0 0 6px var(--success);
  animation:pulse 2.2s ease-in-out infinite;
}
.rack-unit:nth-child(3) .u-led{animation-delay:.4s;}
.rack-unit:nth-child(4) .u-led{animation-delay:.9s;}

.rack-footer{
  margin-top:1rem;
  padding-top:.9rem;
  border-top:1px dashed var(--border);
  display:flex;
  justify-content:space-between;
  font-family:'IBM Plex Mono',monospace;
  font-size:.68rem;
  color:var(--text-dim);
}
.rack-footer .ok{color:var(--success);}

/* ---------- Neon Circuit Cat Mascot ---------- */
.neon-cat-stage{
  position:absolute;
  top:-34px;
  right:9%;
  width:196px;
  height:222px;
  z-index:4;
  pointer-events:none;
}
.neon-cat-halo{
  position:absolute;
  inset:-34px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(34,211,238,.22), rgba(168,85,247,.10) 45%, transparent 72%);
  filter:blur(4px);
  animation:haloPulse 3.6s ease-in-out infinite;
}
@keyframes haloPulse{
  0%,100%{ opacity:.55; transform:scale(1); }
  50%{ opacity:1; transform:scale(1.09); }
}

.neon-cat{
  position:relative;
  width:100%;
  height:100%;
  animation:neonFloat 5s ease-in-out infinite;
}
@keyframes neonFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

.neon-cat-svg{
  width:100%;
  height:100%;
  overflow:visible;
  filter:
    drop-shadow(0 0 1.5px #cdf7ff)
    drop-shadow(0 0 4.5px #22d3ee)
    drop-shadow(0 0 10px rgba(168,85,247,.5));
  animation:neonFlicker 4.2s linear infinite;
}
@keyframes neonFlicker{
  0%,100%{ opacity:1; }
  4%{ opacity:.86; }
  6%{ opacity:1; }
  46%{ opacity:1; }
  47%{ opacity:.62; }
  48%{ opacity:1; }
  71%{ opacity:1; }
  72%{ opacity:.82; }
  74%{ opacity:1; }
}

.cat-line{
  fill:rgba(4,8,15,.92);
  stroke:#22d3ee;
  stroke-width:1.5;
  stroke-linejoin:round;
  stroke-linecap:round;
}
.cat-line-accent{
  fill:none;
  stroke:#c084fc;
  stroke-width:1.4;
  stroke-linecap:round;
}
.cat-spine{
  fill:none;
  stroke:url(#neonGrad);
  stroke-width:1.4;
  stroke-linecap:round;
}
.cat-node{
  fill:#22d3ee;
  transform-box:fill-box;
  transform-origin:center;
  animation:nodePulse 2.2s ease-in-out infinite;
}
@keyframes nodePulse{
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.55; transform:scale(1.4); }
}

.cat-eye{
  fill:url(#eyeGlow);
  transform-box:fill-box;
  transform-origin:center;
  animation:catBlink2 5s ease-in-out infinite;
}
@keyframes catBlink2{
  0%,90%,100%{ transform:scaleY(1); }
  93%{ transform:scaleY(.12); }
}

.cat-whisker-thin{
  fill:none;
  stroke:#67e8f9;
  stroke-width:1;
  opacity:.75;
}

.cat-tendril{
  fill:none;
  stroke:url(#neonGrad);
  stroke-width:2;
  stroke-linecap:round;
  stroke-dasharray:8 7;
  animation:tendrilFlow 2.2s linear infinite;
}
@keyframes tendrilFlow{
  to{ stroke-dashoffset:-150; }
}
.cat-tendril-group{
  transform-box:fill-box;
  transform-origin:top center;
  animation:tendrilSway 3.4s ease-in-out infinite;
}
.cat-tendril-group.right{ animation-delay:-1.7s; }

.neon-badge{
  position:absolute;
  bottom:-4px; left:50%;
  transform:translateX(-50%);
  white-space:nowrap;
  font-family:'IBM Plex Mono',monospace;
  font-size:.6rem;
  letter-spacing:1px;
  color:#bdf5ff;
  background:rgba(10,15,28,.75);
  border:1px solid rgba(34,211,238,.5);
  padding:.15rem .55rem;
  border-radius:20px;
  box-shadow:0 0 10px rgba(34,211,238,.35);
}

@media (max-width:991px){
  .neon-cat-stage{ display:none; }
}

/* ---------- Ticker ---------- */
.ticker-bar{
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:var(--bg-alt);
  padding:.8rem 0;
  overflow:hidden;
  white-space:nowrap;
}
.ticker-track{
  display:inline-block;
  font-family:'IBM Plex Mono',monospace;
  font-size:.8rem;
  color:var(--text-dim);
  animation:ticker 28s linear infinite;
}
.ticker-track span{margin:0 2.2rem;}
.ticker-track span strong{color:var(--cyan);}
@keyframes ticker{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

/* ---------- Sections ---------- */
section{padding:6rem 0;position:relative;}

.section-eyebrow{
  font-family:'IBM Plex Mono',monospace;
  font-size:.75rem;
  letter-spacing:2px;
  color:var(--amber);
  text-transform:uppercase;
  margin-bottom:.8rem;
}
.section-title{
  font-size:2.2rem;
  font-weight:700;
  margin-bottom:1rem;
  max-width:640px;
}
.section-sub{
  color:var(--text-dim);
  max-width:560px;
  margin-bottom:3rem;
}

/* ---------- Product Cards (3D tilt) ---------- */
.tilt-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:16px;
  padding:2rem;
  height:100%;
  transform-style:preserve-3d;
  transition:transform .12s ease-out, border-color .2s ease;
  position:relative;
  overflow:hidden;
}
.tilt-card:hover{border-color:rgba(245,176,67,.35); box-shadow:0 20px 45px -20px var(--shadow);}

.tilt-card .glow{
  position:absolute;
  width:220px;height:220px;
  background:radial-gradient(circle, rgba(14,165,233,.16), transparent 70%);
  border-radius:50%;
  pointer-events:none;
  opacity:0;
  transition:opacity .25s ease;
  transform:translate(-50%,-50%);
}
.tilt-card:hover .glow{opacity:1;}

.tilt-card .u-tag{
  font-family:'IBM Plex Mono',monospace;
  font-size:.7rem;
  color:var(--text-dim);
  letter-spacing:1.5px;
  display:inline-block;
  border:1px solid var(--border);
  border-radius:4px;
  padding:.2rem .55rem;
  margin-bottom:1.2rem;
}

.tilt-card .icon-wrap{
  width:52px;height:52px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.4rem;
  margin-bottom:1.2rem;
  background:var(--amber-dim);
  color:var(--amber);
  transform:translateZ(30px);
}
.tilt-card:nth-of-type(2) .icon-wrap{background:var(--cyan-dim); color:var(--cyan);}
.tilt-card:nth-of-type(3) .icon-wrap{background:rgba(61,220,151,.15); color:var(--success);}

.tilt-card h3{
  font-size:1.3rem;
  margin-bottom:.7rem;
  transform:translateZ(20px);
}
.tilt-card p{
  color:var(--text-dim);
  font-size:.92rem;
  margin-bottom:1.3rem;
  transform:translateZ(10px);
}
.tilt-card ul{
  list-style:none;
  padding:0;
  margin:0 0 1.5rem;
}
.tilt-card ul li{
  font-size:.85rem;
  color:var(--text-dim);
  padding:.35rem 0;
  display:flex;
  align-items:center;
  gap:.5rem;
}
.tilt-card ul li i{color:var(--success); font-size:.8rem;}

.tilt-card .price{
  font-family:'Space Grotesk',sans-serif;
  font-size:1.5rem;
  font-weight:700;
  margin-bottom:1.2rem;
}
.tilt-card .price span{
  font-family:'IBM Plex Mono',monospace;
  font-size:.75rem;
  color:var(--text-dim);
  font-weight:400;
}

/* ---------- Process ---------- */
.process-step{
  display:flex;
  gap:1.3rem;
  padding:1.6rem 0;
  border-bottom:1px solid var(--border);
}
.process-step:last-child{border-bottom:none;}
.process-num{
  font-family:'IBM Plex Mono',monospace;
  font-size:.85rem;
  color:var(--amber);
  min-width:60px;
}
.process-step h4{
  font-size:1.1rem;
  margin-bottom:.4rem;
}
.process-step p{
  color:var(--text-dim);
  font-size:.9rem;
  margin:0;
  max-width:500px;
}

/* ---------- Trust / Testimonial ---------- */
.quote-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:16px;
  padding:2rem;
  height:100%;
}
.quote-card i.bi-quote{color:var(--amber); font-size:1.5rem;}
.quote-card p{
  color:var(--text-dim);
  font-size:.95rem;
  margin:1rem 0 1.3rem;
}
.quote-author{
  font-family:'IBM Plex Mono',monospace;
  font-size:.8rem;
  color:var(--text);
}
.quote-role{
  font-family:'IBM Plex Mono',monospace;
  font-size:.72rem;
  color:var(--text-dim);
}

/* ---------- CTA banner ---------- */
.cta-banner{
  background:linear-gradient(120deg, var(--surface-2), var(--surface));
  border:1px solid var(--border);
  border-radius:24px;
  padding:3.5rem 3rem;
  position:relative;
  overflow:hidden;
}
.cta-banner::before{
  content:'';
  position:absolute;
  top:-100px;right:-100px;
  width:340px;height:340px;
  background:radial-gradient(circle, var(--amber-dim), transparent 70%);
}
.cta-banner h2{font-size:2rem; font-weight:700; max-width:480px;}
.cta-banner p{color:var(--text-dim); max-width:460px;}

/* ---------- Footer ---------- */
footer{
  border-top:1px solid var(--border);
  padding:3rem 0 2rem;
  background:var(--bg-alt);
}
footer .f-brand{
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:1.2rem;
}
footer h6{
  font-family:'IBM Plex Mono',monospace;
  font-size:.72rem;
  letter-spacing:1.5px;
  color:var(--text-dim);
  text-transform:uppercase;
  margin-bottom:1rem;
}
footer a{
  display:block;
  color:var(--text-dim);
  font-size:.88rem;
  margin-bottom:.6rem;
  transition:color .2s ease;
}
footer a:hover{color:var(--cyan);}
.footer-bottom{
  border-top:1px solid var(--border);
  margin-top:2.5rem;
  padding-top:1.5rem;
  font-family:'IBM Plex Mono',monospace;
  font-size:.75rem;
  color:var(--text-dim);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:1rem;
}

/* ---------- Marketplace ---------- */
.filter-bar{
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
  margin-bottom:2.5rem;
}
.filter-pill{
  font-family:'IBM Plex Mono',monospace;
  font-size:.78rem;
  color:var(--text-dim);
  background:var(--bg-alt);
  border:1px solid var(--border);
  border-radius:20px;
  padding:.45rem 1rem;
  cursor:pointer;
  transition:all .2s ease;
}
.filter-pill:hover{
  color:var(--amber);
  border-color:var(--amber);
}
.filter-pill.active{
  background:var(--amber);
  color:#12100a;
  border-color:var(--amber);
}

.market-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  height:100%;
  transition:transform .12s ease-out, box-shadow .2s ease, border-color .2s ease;
  transform-style:preserve-3d;
}
.market-card:hover{
  border-color:rgba(245,176,67,.35);
  box-shadow:0 24px 50px -24px var(--shadow);
}

.market-thumb{
  height:150px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2.1rem;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.market-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
.market-thumb.t-blue{background:linear-gradient(135deg, #0e2a4a, #22d3ee);}
.market-thumb.t-navy{background:linear-gradient(135deg, #0f2e22, #34d399);}
.market-thumb.t-sky{background:linear-gradient(135deg, #0b3b34, #3ddc97);}

.market-badge{
  position:absolute;
  top:.7rem; left:.7rem;
  font-family:'IBM Plex Mono',monospace;
  font-size:.65rem;
  letter-spacing:.5px;
  text-transform:uppercase;
  background:rgba(10,15,28,.85);
  color:var(--amber);
  border:1px solid rgba(245,176,67,.3);
  padding:.25rem .6rem;
  border-radius:20px;
}

.market-body{padding:1.3rem 1.4rem 1.5rem;}
.market-cat{
  font-family:'IBM Plex Mono',monospace;
  font-size:.68rem;
  color:var(--text-dim);
  text-transform:uppercase;
  letter-spacing:1px;
}
.market-body h4{
  font-size:1.05rem;
  margin:.4rem 0 .5rem;
}
.market-stars{
  color:#f5a524;
  font-size:.78rem;
  margin-bottom:.8rem;
}
.market-stars span{
  font-family:'IBM Plex Mono',monospace;
  color:var(--text-dim);
  margin-left:.3rem;
}
.market-price-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  margin-top:.4rem;
}
.market-price{
  font-family:'Space Grotesk',sans-serif;
  font-weight:700;
  font-size:1.25rem;
  color:var(--text);
}
.market-price-old{
  font-family:'IBM Plex Mono',monospace;
  font-size:.78rem;
  color:var(--text-dim);
  text-decoration:line-through;
  margin-left:.4rem;
}
.market-cart-btn{
  border:1px solid var(--border);
  background:transparent;
  color:var(--amber);
  border-radius:8px;
  width:38px;height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .2s ease;
}
.market-cart-btn:hover{
  background:var(--amber);
  color:#12100a;
  border-color:var(--amber);
}

/* ---------- Mobile Drawer (left → right slide) ---------- */
.navbar-toggler{
  border:1px solid var(--border);
  background:transparent;
  color:var(--text);
  border-radius:8px;
  padding:.4rem .6rem;
  font-size:1.2rem;
  line-height:1;
}
.navbar-toggler:focus{box-shadow:0 0 0 3px var(--cyan-dim);}

.drawer-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(2px);
  opacity:0;
  visibility:hidden;
  transition:opacity .3s ease, visibility .3s ease;
  z-index:1040;
}
.drawer-backdrop.show{
  opacity:1;
  visibility:visible;
}

.mobile-drawer{
  position:fixed;
  top:0;
  left:0;
  height:100%;
  width:82%;
  max-width:340px;
  background:var(--bg-alt);
  border-right:1px solid var(--border);
  z-index:1050;
  padding:1.4rem 1.5rem 2rem;
  display:flex;
  flex-direction:column;
  transform:translateX(-100%);
  transition:transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow:20px 0 60px rgba(0,0,0,.4);
}
.mobile-drawer.open{
  transform:translateX(0);
}

.drawer-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--border);
  padding-bottom:1.1rem;
  margin-bottom:1.2rem;
}

.drawer-close{
  background:transparent;
  border:1px solid var(--border);
  color:var(--text);
  width:36px;
  height:36px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1rem;
  transition:all .2s ease;
}
.drawer-close:hover{
  border-color:var(--cyan);
  color:var(--cyan);
}

.drawer-nav{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
}
.drawer-link{
  display:block;
  font-family:'IBM Plex Mono',monospace;
  font-size:.95rem;
  color:var(--text);
  padding:.9rem .2rem;
  border-bottom:1px solid var(--border);
  transition:color .2s ease, padding-left .2s ease;
}
.drawer-link:hover,
.drawer-link:focus{
  color:var(--cyan);
  padding-left:.5rem;
}

body.drawer-locked{
  overflow:hidden;
}

@media (max-width:768px){
  .hero h1{font-size:2.2rem;}
  .rack-stage{min-height:320px; margin-top:2rem;}
  .cta-banner{padding:2.5rem 1.5rem;}
}

@media (prefers-reduced-motion: reduce){
  *{animation:none !important; transition:none !important;}
}

.whatsapp-button {
	position: fixed;
	bottom: 15px;
	right: 15px;
	left: 15px;
	z-index: 99;
	background-color: #4fce5d;
	border-radius: 50px;
	color: #fff;
	text-decoration: none;
	width: 50px;
	height: 50px;
	font-size: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	-webkit-box-shadow: 0 0 25px -6px #000;
	-moz-box-shadow: 0 0 25px -6px #000;
	box-shadow: 0 0 25px -6px #000;
	animation: effect 5s infinite ease-in
}

@keyframes effect {

	100%,
	20% {
		width: 60px;
		height: 60px;
		font-size: 40px
	}

	0%,
	10% {
		width: 60px;
		height: 60px;
		font-size: 35px
	}

	5% {
		width: 50px;
		height: 50px;
		font-size: 30px
	}
}