:root {
  --primary-color: #f58cae;
  --secondary-color: #a8417a;
  --accent-color: #ff99c8;
  --bg-gradient-start: #ffe4ec;
  --bg-gradient-end: #fff0f6;
  --light-bg: #fff0f6;
  --border-color: #ffc6e7;
  --text-color: #6b4a6f;
}

/* General body */
body {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  color: var(--text-color);
  padding: 40px;
  max-width: 900px;
  margin: auto;
  transition: background 0.4s ease, color 0.4s ease;
}

/* Dark mode */
body.dark-mode {
  background: #1e1e1e;
  color: #fcd6ec;
}

body.dark-mode header h1 {
  color: var(--accent-color);
}

body.dark-mode header p,
body.dark-mode label,
body.dark-mode h2,
body.dark-mode .commission-info p,
body.dark-mode li,
body.dark-mode footer {
  color: #ffc6e0;
}

body.dark-mode form {
  background: #2a2a2a;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
  background: #333;
  color: #fcd6ec;
  border-color: var(--accent-color);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* Profile Picture */
.pfp-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
}

.pfp-container img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--border-color);
  box-shadow: 0 4px 8px rgba(245, 140, 174, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.4s ease;
}

.pfp-container img:hover {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 6px 12px rgba(245, 140, 174, 0.6);
}

/* Like Button */
#like-btn {
  background-color: var(--accent-color);
  border: none;
  border-radius: 15px;
  padding: 12px 20px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
}

#like-btn:hover {
  background-color: var(--primary-color);
  transform: scale(1.05);
}

#like-count {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--text-color);
}

/* Robux Text */
.robux-text {
  color: var(--accent-color);
  text-shadow: 0 0 4px var(--light-bg);
}

/* Pop-in animation */
@keyframes popIn {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Body border */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  border: 10px dotted var(--border-color);
  pointer-events: none;
  z-index: 999;
  transition: border-color 0.4s ease;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 3rem;
  color: var(--primary-color);
  letter-spacing: 4px;
  transition: color 0.4s ease;
}

header p {
  font-style: italic;
  color: var(--secondary-color);
  transition: color 0.4s ease;
}

/* Sections */
section {
  margin-bottom: 50px;
}

h2 {
  color: var(--secondary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 6px;
  margin-bottom: 20px;
  transition: color 0.4s ease, border-color 0.4s ease;
}

/* Portfolio */
.portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.portfolio img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(245, 140, 174, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.portfolio img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 5px var(--accent-color));
  border: 3px dashed var(--primary-color);
}

/* Info boxes */
.info-box {
  background: var(--light-bg);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease, transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.info-box h3 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.3rem;
  border-bottom: none;
  padding-bottom: 0;
  transition: color 0.4s ease;
}

.info-box p {
  margin: 8px 0;
  font-size: 1rem;
}

.info-box ul {
  margin: 8px 0;
}

.info-box strong {
  color: var(--secondary-color);
  transition: color 0.4s ease;
}

/* Form */
form {
  background: var(--light-bg);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 15px rgba(245, 140, 174, 0.3);
  transition: background 0.4s ease, color 0.4s ease;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: color 0.4s ease;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  resize: vertical;
  transition: border-color 0.4s ease;
}

button {
  background: var(--primary-color);
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

button:hover {
  background: var(--secondary-color);
}

/* Social icons */
.social-icons a img {
  width: 100px;
  height: auto;
  margin-right: 20px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

/* Dark mode toggles */
#darkModeToggle,
#musicToggle {
  margin: 10px 10px 30px 0;
  padding: 8px 15px;
  border-radius: 12px;
  border: 2px solid var(--primary-color);
  background: white;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: bold;
  color: var(--secondary-color);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.4s ease;
}

#darkModeToggle:hover,
#musicToggle:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--secondary-color);
}

/* Footer */
footer {
  text-align: center;
  margin-top: 50px;
  font-size: 0.9rem;
  color: var(--text-color);
  transition: color 0.4s ease;
}

/* Shop link */
.shop-link {
  color: var(--primary-color);
  font-weight: 900;
  font-size: 1.5rem;
  text-decoration: underline dotted var(--primary-color);
  padding: 8px 12px;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.4s ease;
}

.shop-link:hover {
  transform: scale(1.1);
  background: var(--light-bg);
  color: var(--secondary-color);
}

/* Mascot */
#mascot {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  z-index: 1000;
  pointer-events: none;
}

/* Chatbox */
.chatbox {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--light-bg);
  border: 2px solid var(--primary-color);
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 0.9rem;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  z-index: 999;
  transition: background 0.4s ease, border-color 0.4s ease;
}

/* Now playing & price */
#nowPlaying {
  font-size: 0.9rem;
  color: var(--secondary-color);
  margin-top: 10px;
  transition: color 0.4s ease;
}

#priceDisplay {
  margin-top: 10px;
  font-weight: bold;
  color: var(--primary-color);
  transition: color 0.4s ease;
}

/* Marquee */
marquee {
  background: var(--light-bg);
  padding: 10px;
  color: var(--secondary-color);
  font-weight: bold;
  transition: background 0.4s ease, color 0.4s ease;
}

/* Seasonal badge */
#seasonal-badge {
  position: fixed;
  top: 140px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1100;
  animation: slideIn 0.5s ease-out;
  transition: background 0.4s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Donate section */
.donate {
  text-align: center;
  padding: 50px 20px;
  background: #fff0f6;
  color: #6b4a6f;
}

.donate-btn {
  display: inline-block;
  background: #f58cae;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 1rem;
  margin: 10px;
}

.donate-btn:hover {
  background: #ffa6c9;
}

/* Finished Commissions Section */
.done-commissions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.done-commissions .comm-img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.done-commissions .comm-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.done-commissions .comm-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(245, 140, 174, 0.4);
}

/* Tag for USD / Robux */
.done-commissions .price-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--primary-color);
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 4px 8px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.done-commissions .comm-img:hover .price-tag {
  background: var(--accent-color);
}
