/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Quicksand:wght@400;600&display=swap');

/* ===== GLOBAL ===== */
body {
  background: #ffeaf3;
  background-image: url('https://i.imgur.com/8Q1Z6kN.png');
  font-family: 'Quicksand', sans-serif;
  color: #ff6fae;
  cursor: url('https://cur.cursors-4u.net/nature/nat-2/nat120.cur'), auto;
}

a {
  color: #ff8fc7;
  text-decoration: none;
}

a:hover {
  text-shadow: 0 0 5px #ffd1e8;
}

/* ===== CONTAINER ===== */
#container {
  width: 900px;
  margin: auto;
  display: flex;
  gap: 15px;
}

/* ===== BOX STYLE ===== */
.box {
  background: #fff0f7;
  border: 2px solid #ffd1e8;
  border-radius: 15px;
  padding: 12px;
  box-shadow: 0 0 10px #ffd1e8;
}

/* ===== LEFT COLUMN ===== */
#left {
  width: 260px;
}

.profile-pic {
  width: 100%;
  border-radius: 12px;
}

/* ===== STATUS ===== */
.status {
  font-size: 12px;
  background: #ffe0ef;
  padding: 6px;
  border-radius: 8px;
}

/* ===== RIGHT COLUMN ===== */
#right {
  width: 620px;
}

/* ===== HEADERS ===== */
h1, h2 {
  font-family: 'Press Start 2P', cursive;
  font-size: 14px;
  color: #ff5fa2;
}

/* ===== BLOG POSTS ===== */
.post {
  background: #ffeaf3;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}

/* ===== NAV ===== */
.nav a {
  display: block;
  margin: 5px 0;
}

/* ===== VINYL PLAYER ===== */
#vinyl {
  position: fixed;
  bottom: 30px;
  right: 30px;
  animation: float 3s ease-in-out infinite, spin 5s linear infinite;
  cursor: pointer;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
