* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", monospace;
}

body {
  background: url(tmobss.gif) center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

/* Overlay intro */
.click-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  cursor: pointer;
  transition: opacity 0.8s ease-out;
}
.click-prompt {
  text-align: center;
  animation: pulse 2s infinite;
}
.click-prompt h2 { color: #ffffff; }

/* Profile Card */
.profile-card {
  background: rgba(20, 20, 20, 0.6); /* transparent dark */
  backdrop-filter: blur(6px);
  border-radius: 12px;
  width: 360px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  transition: opacity 1s ease-in;
}

/* Terminal header */
.card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
  font-size: 12px;
  color: #888;
}
.card-header .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }
.card-header .title { margin-left: auto; }

/* Avatar */
.avatar img {
  width: 320px;
  height: 80px;
  border-radius: 12px;
  object-position: center;
  display: block;
  background: transparent;
}

/* Name */
.profile-name {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

/* Quote */
.quote-box {
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px;
}
.profile-quote {
  font-size: 14px;
  color: #ffffff;
  font-style: italic;
  min-height: 22px;
}

/* Discord Status Card */
#discordStatus {
  display: flex;
  flex-direction: column;   /* stack vertically */
  align-items: center;      /* center horizontally */
  justify-content: center;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 12px;
  font-size: 13px;
  color: #fff;
  margin-top: 10px;
  text-align: center;
}

#discordStatus {
  background: rgba(0,0,0,0.4);
  border-radius: 10px;
  padding: 14px;
  font-size: 13px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Activity Icon */
#activityImage {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 8px;   /* space between icon and text */
}

/* Status text */
#playingStatus {
  font-size: 13px;
  line-height: 1.4;
}

/* Social Links */
.socials-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.socials-list a {
  text-decoration: none;
  color: #ddd;
  font-size: 15px;
  padding: 12px;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.3s;
}
.socials-list a:hover {
  background: rgba(255,255,255,0.1);
}
.socials-list i {
  font-size: 20px;
  margin-bottom: 6px;
  color: #fff;
}
.socials-list span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}


/* Footer bar inside card */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #aaa;
  border-top: 1px solid #333;
  padding-top: 8px;
}
.visit-counter {
  display: flex;
  align-items: center;
  gap: 5px;
}
.music-control {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.music-control:hover { color: #fff; }

/* Floating background circles */
.background-elements {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}
.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

/* Footer */
.footer {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Modal Layout */
.pc-specs-modal {
  display: none;
  position: fixed;
  z-index: 200;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  width: 420px;
  max-height: 80vh;
  overflow-y: auto;
  color: #fff;
}

.modal-content h3 {
  margin-bottom: 14px;
  color: #ffffff;
  text-align: center;
}

.close-btn {
  float: right;
  font-size: 22px;
  cursor: pointer;
}
.close-btn:hover { color: #fdbb2d; }

/* Specs Grid */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.spec-box {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px;
  font-size: 13px;
  text-align: left;
}

.spec-box b {
  color: #fdbb2d;
  display: block;
  margin-bottom: 4px;
}
.spec-box p {
  color: #ddd;
  margin: 0;
  font-size: 12px;
}

.spec-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.3s, transform 0.2s;
}

.spec-box:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.spec-box b {
  color: #ffffff;
  margin-bottom: 6px;
  font-size: 13px;
}

.spec-box p {
  color: #ddd;
  margin: 0;
  font-size: 12px;
}

/* PC Specs Button - same style as socials */
.pc-specs-btn {
  text-decoration: none;
  color: #ddd;
  font-size: 13px;
  padding: 14px;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 12px;
}

.pc-specs-btn i {
  font-size: 20px;
  color: #fff;
}

.pc-specs-btn:hover {
  background: rgba(255,255,255,0.1);
}

/* Popup Animation */
@keyframes popupSlowMo {
  0% { transform: scale(0.8); opacity: 0; }
  60% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.modal-content {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  width: 420px;
  max-height: 80vh;
  overflow-y: auto;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  animation: popupSlowMo 0.6s ease; /* <— slow mo effect */
}

/* reapet writher &*/
.quote-cursor {
  display: inline-block;
  margin-left: 2px;
  animation: blink 1s infinite;
  color: #ffffff;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  50.1%, 100% { opacity: 0; }
}

