/* ============================================
   AUTHENTIC MYSPACE PAGE - MESSY & CHAOTIC
   ============================================ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Tiled background pattern - classic MySpace */
body {
  font-family: "Comic Sans MS", "Comic Sans", "Impact", "Arial", sans-serif;
  background: #000;
  color: #000;
  overflow-x: auto;
  min-height: 100vh;
}

.tiled-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 0, 255, 0.1) 10px, rgba(255, 0, 255, 0.1) 20px),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0, 255, 255, 0.1) 10px, rgba(0, 255, 255, 0.1) 20px),
    linear-gradient(135deg, #ff0080, #ff8c00, #ffd700, #32cd32, #00bfff, #8a2be2, #ff1493);
  background-size: 400% 400%, 400% 400%, 100% 100%;
  animation: bg-move 20s ease infinite;
  opacity: 0.4;
}

@keyframes bg-move {
  0%, 100% { background-position: 0% 0%, 0% 0%, 0% 0%; }
  50% { background-position: 100% 100%, 100% 100%, 50% 50%; }
}

/* Main wrapper - two column layout */
.profile-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

/* Left Sidebar */
.sidebar-left {
  width: 180px;
  flex-shrink: 0;
}

.sidebar-title {
  font-family: "Impact", sans-serif;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(to bottom, #ff00ff, #ff1493);
  padding: 5px;
  margin: 0;
  text-align: center;
  border: 2px solid #00ffff;
  text-shadow: 2px 2px 0 #000;
  transform: rotate(-1deg);
}

.contact-box,
.music-box,
.about-box {
  background: #fff;
  border: 3px solid #ff00ff;
  margin-bottom: 15px;
  padding: 10px;
  box-shadow: 5px 5px 0 rgba(255, 0, 255, 0.5);
  transform: rotate(0.5deg);
}

/* Large Profile Pic Section - Front and Center */
.profile-pic-large-section {
  background: linear-gradient(135deg, #ffff00, #ff69b4);
  border: 4px solid #ff00ff;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  transform: rotate(-0.5deg);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}

.large-profile-pic-frame {
  border: 5px solid #00ffff;
  padding: 10px;
  background: #fff;
  margin: 15px auto 0;
  max-width: 400px;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 0, 255, 0.6);
}

.large-profile-pic {
  width: 100%;
  height: auto;
  display: block;
}

/* CTA Box - Super Prominent */
.cta-box {
  background: linear-gradient(135deg, #ff00ff, #ff1493, #ff00ff);
  border: 5px solid #ffff00;
  padding: 25px;
  margin-bottom: 20px;
  text-align: center;
  transform: rotate(1deg);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 0, 255, 0.8);
  animation: cta-pulse 2s infinite;
}

@keyframes cta-pulse {
  0%, 100% { transform: rotate(1deg) scale(1); }
  50% { transform: rotate(1deg) scale(1.02); }
}

.cta-text {
  font-size: 16px;
  color: #fff;
  text-shadow: 2px 2px 0 #000;
  margin: 10px 0 20px;
  font-weight: bold;
}

.huge-message-button {
  display: inline-block;
  background: linear-gradient(to bottom, #ffff00, #ffd700);
  color: #000;
  padding: 20px 40px;
  font-size: 20px;
  font-weight: bold;
  font-family: "Impact", sans-serif;
  text-decoration: none;
  border: 4px solid #00ffff;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 255, 0, 0.8);
  text-shadow: 2px 2px 0 #fff;
  transform: rotate(-2deg);
  transition: all 0.3s;
}

.huge-message-button:hover {
  transform: rotate(2deg) scale(1.1);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 255, 0, 1);
}

/* Friends Section - Right Sidebar */
.friends-section-sidebar {
  background: #fff;
  border: 3px solid #ff00ff;
  padding: 10px;
  box-shadow: 5px 5px 0 rgba(255, 0, 255, 0.5);
  transform: rotate(-0.5deg);
}

.friends-list-compact {
  margin-top: 10px;
}

.friend-item-compact {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px;
  margin: 3px 0;
  background: rgba(255, 255, 255, 0.9);
  border-left: 2px solid #ff00ff;
  font-size: 11px;
}

.friend-rank-small {
  font-weight: bold;
  color: #ff00ff;
  font-size: 11px;
  min-width: 18px;
}

.friend-pic-small {
  width: 30px;
  height: 30px;
  border: 2px solid #00ffff;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.friend-pic-small.placeholder-pic {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  border: 2px solid #00ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 2px;
}

.friend-name-compact {
  font-size: 10px;
  color: #333;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.contact-text {
  font-size: 12px;
  color: #333;
  margin: 5px 0;
  line-height: 1.4;
}

.music-box {
  font-size: 11px;
}

.music-play-btn {
  width: 100%;
  background: linear-gradient(to bottom, #ff00ff, #ff1493);
  color: #fff;
  border: 3px solid #00ffff;
  padding: 10px;
  font-family: "Impact", sans-serif;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  text-shadow: 2px 2px 0 #000;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
  margin: 10px 0;
  transition: all 0.2s;
  transform: rotate(0.5deg);
}

.music-play-btn:hover {
  transform: rotate(-0.5deg) scale(1.05);
  box-shadow: 5px 5px 0 rgba(255, 0, 255, 0.6);
}

.music-play-btn:active {
  transform: rotate(0deg) scale(0.98);
}

.music-play-btn.playing {
  background: linear-gradient(to bottom, #06d6a0, #06a085);
  animation: pulse 1.5s infinite;
}

#youtubePlayer {
  position: fixed;
  top: -9999px;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  border: none;
}

.music-label {
  font-size: 10px;
  color: #666;
  margin-top: 5px;
}

/* Main Content */
.main-content {
  flex: 1;
  background: #fff;
  border: 5px solid #ff00ff;
  padding: 15px;
  box-shadow: 8px 8px 0 rgba(255, 0, 255, 0.6);
  transform: rotate(-0.5deg);
}

.profile-header-messy {
  background: linear-gradient(to bottom, #ff69b4, #ff1493, #ff00ff);
  border: 4px solid #00ffff;
  padding: 15px;
  margin-bottom: 15px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
  transform: rotate(1deg);
}

.main-title {
  font-family: "Impact", sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  color: #fff;
  text-shadow: 
    3px 3px 0 #ff00ff,
    -3px -3px 0 #00ffff,
    5px 5px 0 #ffff00,
    0 0 15px rgba(255, 255, 255, 0.9);
  margin: 0 0 10px 0;
  transform: rotate(-2deg);
  animation: title-pulse 3s infinite;
  white-space: nowrap;
}

@keyframes title-pulse {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  50% { transform: rotate(-2deg) scale(1.05); }
}

.marquee-banner {
  background: rgba(0, 0, 0, 0.5);
  padding: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  border: 2px solid #ffff00;
}

/* Friends Section */
.friends-section {
  background: linear-gradient(135deg, #ffff00, #ff69b4);
  border: 3px solid #ff00ff;
  padding: 12px;
  margin-bottom: 15px;
  transform: rotate(0.5deg);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.section-header {
  font-family: "Impact", sans-serif;
  font-size: 18px;
  color: #fff;
  text-shadow: 2px 2px 0 #000;
  margin: 0 0 10px 0;
  text-align: center;
  transform: rotate(-1deg);
}

.friends-list {
  background: #fff;
  padding: 10px;
  border: 2px solid #00ffff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.friend-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.friend-item:nth-child(2) { grid-column: 1; grid-row: 2; }
.friend-item:nth-child(3) { grid-column: 1; grid-row: 3; }
.friend-item:nth-child(4) { grid-column: 1; grid-row: 4; }
.friend-item:nth-child(5) { grid-column: 2; grid-row: 1; }
.friend-item:nth-child(6) { grid-column: 2; grid-row: 2; }
.friend-item:nth-child(7) { grid-column: 2; grid-row: 3; }
.friend-item:nth-child(8) { grid-column: 2; grid-row: 4; }

.friend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-left: 3px solid #ff00ff;
}

.friend-rank {
  font-weight: bold;
  color: #ff00ff;
  font-size: 14px;
  min-width: 20px;
}

.tiny-friend-pic {
  width: 85px;
  height: 85px;
  border: 2px solid #00ffff;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}

.placeholder-pic {
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  border: 2px solid #00ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  border-radius: 5px;
  flex-shrink: 0;
}

.friend-name-small {
  font-size: 12px;
  color: #333;
  font-weight: bold;
}

/* About Box */
.about-text {
  background: #fff;
  padding: 10px;
  border: 2px solid #ff00ff;
  font-size: 12px;
  line-height: 1.6;
  color: #333;
  margin-top: 10px;
}

.blink-text {
  animation: blink 1s infinite;
  font-size: 16px;
  font-weight: bold;
  color: #ff00ff;
  text-shadow: 1px 1px 0 #ffff00;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

.blink {
  animation: blink 0.8s infinite;
}

/* Pulse animation - gentle scaling */
@keyframes pulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 1;
  }
  50% { 
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
  display: inline-block;
}

.pulse-text {
  animation: pulse 2s ease-in-out infinite;
  font-size: 16px;
  font-weight: bold;
  color: #ff00ff;
  text-shadow: 1px 1px 0 #ffff00;
}

/* Bounce animation */
@keyframes bounce {
  0%, 100% { 
    transform: translateY(0);
  }
  25% { 
    transform: translateY(-5px);
  }
  75% { 
    transform: translateY(-3px);
  }
}

.bounce {
  animation: bounce 1.5s ease-in-out infinite;
  display: inline-block;
}

/* Rotate animation */
@keyframes rotate {
  0% { 
    transform: rotate(0deg);
  }
  25% { 
    transform: rotate(5deg);
  }
  75% { 
    transform: rotate(-5deg);
  }
  100% { 
    transform: rotate(0deg);
  }
}

.rotate {
  animation: rotate 3s ease-in-out infinite;
  display: inline-block;
}

.messy-link {
  display: inline-block;
  background: linear-gradient(to bottom, #ff00ff, #ff1493);
  color: #fff;
  padding: 8px 15px;
  text-decoration: none;
  font-weight: bold;
  border: 3px solid #00ffff;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
  transform: rotate(2deg);
  transition: all 0.2s;
}

.messy-link:hover {
  transform: rotate(-2deg) scale(1.1);
  box-shadow: 5px 5px 0 rgba(255, 0, 255, 0.8);
}

.admin-login-btn {
  display: inline-block;
  background: linear-gradient(to bottom, #00ffff, #06d6a0);
  color: #fff;
  border: 2px solid #ff00ff;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
  text-shadow: 1px 1px 0 #000;
  box-shadow: 2px 2px 0 #ff00ff;
  transform: rotate(1deg);
  transition: all 0.2s;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
}

.admin-login-btn:hover {
  transform: rotate(-1deg) scale(1.05);
  background: linear-gradient(to bottom, #06d6a0, #00ffff);
}

/* Status Box */
.status-box {
  background: linear-gradient(135deg, #ff1493, #8a2be2);
  border: 3px solid #00ffff;
  padding: 12px;
  margin-bottom: 15px;
  transform: rotate(0.5deg);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.status-message {
  background: #fff;
  padding: 10px;
  border: 2px solid #ff00ff;
  font-size: 14px;
  font-weight: bold;
  color: #ff00ff;
  text-align: center;
  margin: 0 0 8px 0;
}

.mood-display {
  background: #fff;
  padding: 8px;
  border: 2px solid #ff00ff;
  font-size: 13px;
  color: #333;
  text-align: center;
  margin: 0;
}

/* Footer */
.profile-footer {
  background: linear-gradient(to bottom, #ff1493, #8a2be2);
  border: 3px solid #00ffff;
  padding: 10px;
  text-align: center;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.footer-note {
  font-size: 11px;
  color: #fff;
  text-shadow: 1px 1px 0 #000;
  margin: 3px 0;
}

/* Board page styles */
.board-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  position: relative;
  z-index: 1;
}

.greg-box {
  width: 100%;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #fff, #e0f7fa);
  border: 2px solid #00ffff;
  border-radius: 8px;
  padding: 0.75rem;
  box-shadow: 0 2px 12px rgba(0, 255, 255, 0.4);
  transform: rotate(-1deg);
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.greg-box::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
  border-radius: 8px;
  z-index: -1;
  animation: rainbow-bg 3s linear infinite;
}

.greg-image {
  flex: 0 0 auto;
  width: 80px;
  height: auto;
  display: block;
  border: 2px solid #ff00ff;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(255, 0, 255, 0.5);
}

.greg-message {
  flex: 1;
  text-align: left;
}

.greg-text {
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  font-size: 0.7rem;
  color: #333;
  line-height: 1.3;
  margin: 0;
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  border: 2px dashed #ff00ff;
}

.post-form-section {
  margin-bottom: 3rem;
}

.post-form-card {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff, #ffe4e1);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 4px solid #ff00ff;
  position: relative;
}

.post-form-card h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: #ff00ff;
  font-family: "Impact", sans-serif;
  text-shadow: 2px 2px 0 #ffff00;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #555;
}

.form-group input[type="text"],
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b81;
}

.form-group input[type="file"] {
  width: 100%;
  padding: 0.5rem;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
}

.image-preview {
  position: relative;
  margin-top: 1rem;
  display: inline-block;
}

.image-preview img {
  max-width: 200px;
  max-height: 200px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.remove-image {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff3b5c;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.remove-image:hover {
  transform: scale(1.1);
}

.submit-button {
  width: 100%;
  background: #ff6b81;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.submit-button:hover {
  background: #ff3b5c;
  transform: translateY(-2px);
}

.submit-button:active {
  transform: translateY(0);
}

.messages-section {
  margin-top: 3rem;
}

.messages-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #ff6b81;
  margin-bottom: 2rem;
}

.messages-board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

.message-card {
  background: linear-gradient(135deg, #fff, #ffe4e1);
  border: 3px solid #ff00ff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 3px 15px rgba(255, 0, 255, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: fadeIn 0.5s ease;
  position: relative;
}

.message-card::before {
  content: '~*~';
  position: absolute;
  top: -5px;
  left: 10px;
  color: #ff00ff;
  font-size: 1.2rem;
}

.message-card:hover {
  transform: translateY(-4px) rotate(1deg);
  box-shadow: 0 6px 20px rgba(255, 0, 255, 0.8);
  border-color: #00ffff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f0f0f0;
}

.message-name {
  margin: 0;
  font-size: 1.2rem;
  color: #ff6b81;
}

.message-date {
  font-size: 0.85rem;
  color: #888;
}

.message-text {
  margin: 0 0 1rem 0;
  line-height: 1.6;
  color: #555;
  white-space: pre-wrap;
}

.message-image {
  margin-top: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.message-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.no-messages {
  text-align: center;
  padding: 3rem;
  color: #888;
  font-size: 1.2rem;
  grid-column: 1 / -1;
}

/* Confetti */
.confetti {
  position: fixed;
  width: 10px;
  height: 20px;
  opacity: 0.95;
  z-index: 9999;
  will-change: transform;
  animation: confetti-fall 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(50vh) rotate(180deg);
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

.confetti:nth-child(odd) {
  width: 8px;
  height: 14px;
  animation-duration: 4.2s;
}

.confetti:nth-child(even) {
  animation-duration: 6.2s;
}

/* Responsive */
@media (max-width: 768px) {
  .profile-wrapper {
    flex-direction: column;
    padding: 5px;
    gap: 10px;
  }
  
  .sidebar-left {
    width: 100%;
    order: 7;
    display: contents; /* Makes children direct children of parent */
  }
  
  .about-box {
    order: 3;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
  }
  
  .main-content {
    padding: 10px;
    order: 1;
    display: contents; /* Makes children direct children of parent */
  }
  
  .profile-header-messy {
    order: 1;
    width: 100%;
  }
  
  .cta-box {
    order: 2;
    width: 100%;
  }
  
  .profile-pic-large-section {
    order: 4;
    width: 100%;
  }
  
  .music-box {
    order: 5;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
  }
  
  .friends-section {
    order: 6;
    width: 100%;
  }
  
  .contact-box {
    order: 7;
    width: 100%;
    margin-bottom: 0;
    padding: 10px;
  }
  
  .status-box {
    order: 8;
    width: 100%;
  }
  
  .profile-footer {
    order: 9;
    width: 100%;
  }
  
  .main-title {
    font-size: clamp(16px, 4vw, 24px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .profile-header-messy {
    padding: 10px;
  }
  
  .marquee-banner {
    font-size: 12px;
    padding: 5px;
  }
  
  .large-profile-pic-frame {
    max-width: 100%;
    padding: 5px;
  }
  
  .cta-box {
    padding: 15px;
  }
  
  .huge-message-button {
    padding: 15px 25px;
    font-size: 16px;
  }
  
  .friends-section {
    padding: 10px;
  }
  
  .friends-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 8px;
  }
  
  .friend-item {
    padding: 6px;
    gap: 8px;
  }
  
  .tiny-friend-pic {
    width: 60px;
    height: 60px;
  }
  
  .placeholder-pic {
    width: 60px;
    height: 60px;
    font-size: 16px;
  }
  
  .friend-name-small {
    font-size: 11px;
  }
  
  .friend-rank {
    font-size: 12px;
  }
  
  .status-box,
  .about-box {
    padding: 10px;
  }
  
  .section-header {
    font-size: 16px;
  }
  
  .status-message,
  .mood-display {
    font-size: 12px;
    padding: 8px;
  }
  
  .about-text {
    font-size: 11px;
    padding: 8px;
  }
  
  .contact-box,
  .music-box,
  .about-box {
    padding: 8px;
    margin-bottom: 10px;
  }
  
  .sidebar-title {
    font-size: 11px;
    margin-bottom: 5px;
    padding: 4px;
  }
  
  .contact-text {
    font-size: 11px;
  }
  
  .music-label {
    font-size: 9px;
  }
  
  .music-play-btn {
    padding: 8px;
    font-size: 12px;
  }
  
  .messages-board {
    grid-template-columns: 1fr;
  }
  
  .post-form-card {
    padding: 1.5rem;
  }
  
  .board-container {
    padding: 1rem;
  }

  .greg-box {
    transform: rotate(0deg);
    flex-direction: column;
    margin-bottom: 1rem;
    padding: 1rem;
  }

  .greg-image {
    width: 70px;
    margin: 0 auto;
  }

  .greg-message {
    text-align: center;
  }

  .greg-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.85rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    line-height: 1.5;
  }

  .post-form-card {
    max-width: 100%;
  }
}
