/* styles.css - black background, white text, custom cross cursor */
:root{
  --bg:#000000;
  --fg:#ffffff;
  --muted: rgba(255,255,255,0.65);
  --glass: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.12);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family:Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  cursor: url('cursor.png') 32 32, auto; /* custom white cross cursor */
  line-height:1.4;
}

.container{
  max-width:1000px;
  margin:40px auto;
  padding:24px;
}

/* Hero */
.hero{
  text-align:left;
  padding:14px 20px 28px 20px;
  margin-bottom:18px;
}
.hero h1{
  font-size:88px;
  margin:0;
  line-height:0.9;
  letter-spacing:-2px;
  font-weight:800;
  color:var(--fg);
}
.hero .name{font-style:italic; font-weight:700; color:var(--fg)}
.tag{color:var(--muted); margin-top:6px; margin-bottom:8px;}
.lead{color:var(--muted); max-width:700px;}

/* Grid */
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:18px;
}

.card{
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding:18px;
  border-radius:12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.card h3{margin-top:0}
.buttons{display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:12px;}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:8px;
  text-decoration:none;
  color:var(--fg);
  border:1px solid var(--border);
  background:transparent;
  font-weight:600;
}

/* Profile big card */
.big{display:flex; gap:18px; align-items:center}
.avatar{
  width:80px;height:80px;border-radius:50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border:1px solid var(--border);
  flex:0 0 80px;
}
.profile-text .profile-name{margin:0; font-size:20px}
.status{color:var(--muted); margin-top:6px}

/* Footer */
.foot{margin-top:18px; color:var(--muted); text-align:center;}

/* Responsive */
@media (max-width:760px){
  .hero h1{font-size:56px}
  .grid{grid-template-columns:1fr}
  .container{padding:14px}
}


/* Clock top-right */
.clock-container{
  position:fixed;
  top:12px;
  right:12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding:6px 10px;
  font-size:14px;
  text-align:right;
  box-shadow: 0 0 12px rgba(0,0,0,0.6);
}
#clock{font-weight:bold; font-size:16px;}

.ascii-art {
  color: var(--fg);
  font-family: monospace;
  font-size: 13px; /* smaller than before */
  white-space: pre;
  text-align: center;
  overflow-x: auto;
  margin: 0 auto 10px auto;
  max-width: 100%;
}
.hero p {
  text-align: center;
}
@media (max-width: 760px) {
  .ascii-art {
    font-size: 8px;
  }
}
