:root{
  --panel: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.65);
  --accent: #ff3b6b;
  --accent2:#00ffa8;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 22px;
}

*{margin:0;padding:0;box-sizing:border-box}
html,body{height:100%}

body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.6;
  color: var(--text);
  background:
    radial-gradient(1000px 600px at 15% 10%, rgba(255,59,107,.18), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(0,255,168,.12), transparent 55%),
    linear-gradient(180deg, #070a0f, #0b0f14 40%, #070a0f);
  overflow-x:hidden;
}

/* Animated lines background (same as /url/) */
.lines{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}
.line{
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.line::after{
  content:'';
  position:absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #ffffff 75%, #ffffff 100%);
  animation: drop 7s infinite;
  animation-timing-function: cubic-bezier(0.4,0.26,0,0.97);
}
.line:nth-child(1){ left: 25%; }
.line:nth-child(2){ left: 50%; }
.line:nth-child(3){ left: 75%; }
.line:nth-child(1)::after{ animation-delay: 2s; }
.line:nth-child(3)::after{ animation-delay: 2.5s; }

@keyframes drop{
  0%{ top: -50%; }
  100%{ top: 110%; }
}

/* Layout wrapper */
.wrapper{
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px;
  min-height: 100vh;
  display:flex;
  flex-direction:column;
  gap: 14px;
}

/* Header */
.hero{
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px;
}

.hero-top{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  flex-wrap: wrap;
  text-align:center;
}

.logo{
  width:110px;
  height:110px;
  border-radius:60%;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 0 18px rgba(255,59,107,.55), 0 0 60px rgba(255,59,107,.25);
}

.hero-text h1{
  font-size: 28px;
  letter-spacing: .8px;
  color: var(--accent);
}
.hero-text p{
  font-size: 13px;
  color: var(--muted);
}

/* Main panel */
.panel{
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px;
}

/* Responsive grid of tiles */
.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tile{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 10px;
  text-decoration:none;
  padding: 14px 10px;
  border-radius: 20px;
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  min-height: 150px;
}

.tile:hover{
  transform: translateY(-3px);
  border-color: rgba(0,255,168,.28);
  box-shadow: 0 0 20px rgba(0,255,168,.10);
}

.tile-icon{
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid rgba(255,59,107,.45);
  box-shadow: 0 10px 15px rgba(0,0,0,.55);
  background-size: cover;
  background-position: center;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.tile:hover .tile-icon{
  border-color: rgba(255,80,80,.70);
  box-shadow: 0 0 20px 5px rgba(255,80,80,.20);
}

.tile-label{
  color: rgba(255,255,255,.88);
  font-weight: 700;
  letter-spacing: .4px;
  font-size: 13px;
  text-transform: uppercase;
}

/* Note */
.note{
  margin-top: 14px;
  text-align:center;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}
.blink{
  color: rgba(255,255,255,.85);
  margin-right: 6px;
  animation: blink 1s steps(2,start) infinite;
}

@keyframes blink{
  0%,50%{opacity:1}
  51%,100%{opacity:0}
}

/* Footer */
.footer{
  margin-top:auto;
  padding-bottom: 10px;
}
.footer-inner{
  text-align:center;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  padding: 10px 0 0;
}

/* Mobile layout */
@media (max-width: 900px){
  .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .grid{ grid-template-columns: 1fr; }
  .tile{ min-height: 130px; }
}
