:root {
  --accent: #00e5ff;
  --bg1: #0b0f18;
  --bg2: #141a26;
  --card1: rgba(30, 35, 50, 0.95);
  --card2: rgba(18, 22, 35, 0.95);
}


/* ======================
   BODY
====================== */

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  color: white;

  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;

  background:
    radial-gradient(circle at 20% 20%, #1b2735, #090a0f 70%);
}


/* GRID BACKGROUND */
body::before {
  content: "";
  position: fixed;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);

  background-size: 40px 40px;
  opacity: 0.2;

  z-index: -1;
}


/* ======================
   CARD (FAKE GLASS)
====================== */

.container {
  text-align: center;
  width: 90%;
  max-width: 420px;

  padding: 30px 26px;

  border-radius: 22px;

  /* layered gradient (glass look without blur) */
  background:
    linear-gradient(145deg, var(--card1), var(--card2));

  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 0 50px rgba(0,229,255,0.12),
    0 20px 60px rgba(0,0,0,0.8);

  transition: transform 0.15s ease;

  animation: float 7s ease-in-out infinite;
}


/* ======================
   STATUS BAR
====================== */

.status-bar {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 20px;
  color: #9aa0a6;
}


/* LED */
.led {
  width: 10px;
  height: 10px;
  border-radius: 50%;

  background: #00ff6a;

  box-shadow:
    0 0 6px #00ff6a,
    0 0 14px #00ff6a;

  display: inline-block;
  margin-right: 8px;

  animation: blink 1.8s infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}


/* CLOCK */
.clock {
  font-family: monospace;
  color: var(--accent);
}


/* ======================
   PROFILE
====================== */

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;

  border: 2px solid var(--accent);
  box-shadow: 0 0 18px var(--accent);

  margin-bottom: 15px;
}


/* ======================
   LINKS
====================== */

.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin: 12px 0;
  padding: 13px;

  border-radius: 12px;

  text-decoration: none;
  color: white;

  background: rgba(255,255,255,0.05);

  border: 1px solid rgba(255,255,255,0.06);

  transition: 0.25s;
}

.links a:hover {
  transform: translateY(-3px);

  border-color: var(--accent);

  box-shadow:
    0 0 12px var(--accent);
}


/* ======================
   SOCIAL
====================== */

.social-icons {
  margin-top: 28px;
}

.social-icons a {
  color: #aaa;
  font-size: 20px;
  margin: 0 12px;
  transition: 0.25s;
}

.social-icons a:hover {
  color: var(--accent);
}


/* ======================
   FLOAT
====================== */

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
