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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: #f8f8f8;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 10px;
  color: #000000;
}

@media (min-width: 768px) {
  body {
    padding: 40px 20px;
  }
}

.container {
  background: #ffffff;
  border-radius: 0;
  padding: 0;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}

@media (min-width: 768px) {
  .container {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
}



.tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 1px solid #e0e0e0;
  flex-shrink: 0;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  margin: 0;
}

@media (min-width: 768px) {
  .tabs {
    border-bottom: 1px solid #d8d8d8;
  }
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 18px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #767676;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

@media (min-width: 768px) {
  .tab-btn {
    padding: 20px 24px;
    font-size: 0.9rem;
  }
}

.tab-btn:hover {
  color: #000000;
}

.tab-btn.active {
  color: #000000;
  border-bottom-color: #000000;
}

.tab-notification-bell {
  margin-left: 5px;
  font-size: 0.9em;
  animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-15deg); }
  20%, 40% { transform: rotate(15deg); }
  50% { transform: rotate(0deg); }
}

.tab-content {
  animation: fadeIn 0.3s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 20px 10px 10px 10px;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .tab-content {
    padding: 30px 20px 20px 20px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

h1 {
  text-align: center;
  color: #000000;
  margin-bottom: 6px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-shadow: none;
  text-transform: none;
  font-family: 'Georgia', 'Times New Roman', serif;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.75rem;
    margin-bottom: 12px;
  }
}

.subtitle {
  text-align: center;
  color: #666666;
  margin-bottom: 0;
  font-size: 0.75rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

@media (min-width: 768px) {
  .subtitle {
    font-size: 0.8rem;
  }
}

.board {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 5px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

@media (min-width: 768px) {
  .board {
    margin-top: 15px;
    margin-bottom: 15px;
    gap: 8px;
  }
  
  .row {
    gap: 8px;
  }
}

.tile {
  aspect-ratio: 1;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border: 2px solid #d0d0d0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.75rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
  background: #ffffff;
  color: #000000;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 768px) {
  .tile {
    width: 68px;
    height: 68px;
    font-size: 2.25rem;
  }
}

.tile.filled {
  border-color: #878a8c;
  animation: pop 0.1s ease-in-out;
}

.tile.correct {
  background: #6aaa64;
  border-color: #6aaa64;
  color: #ffffff;
}

.tile.present {
  background: #c9b458;
  border-color: #c9b458;
  color: #ffffff;
}

.tile.absent {
  background: #787c7e;
  border-color: #787c7e;
  color: #ffffff;
}

@keyframes pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.keyboard {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 15px;
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .keyboard {
    gap: 8px;
    margin-top: 20px;
  }
}

.keyboard-row {
  display: flex;
  gap: 4px;
  justify-content: center;
  width: 100%;
}

.version-number {
  position: fixed;
  bottom: 10px;
  right: 10px;
  color: #999999;
  font-size: 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  user-select: none;
  cursor: pointer;
  z-index: 1000;
}

@media (min-width: 768px) {
  .keyboard-row {
    gap: 6px;
  }
}

.key {
  background: #d8d8d8;
  border: none;
  border-radius: 2px;
  padding: 18px 2px;
  flex: 1;
  min-width: 0;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.1s ease;
  text-transform: uppercase;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: manipulation;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .key {
    padding: 22px 12px;
    min-width: 45px;
    font-size: 0.85rem;
    flex: initial;
  }
}

.key:hover {
  background: #c0c0c0;
}

.key.wide {
  flex: 1.5;
  font-size: 0.7em;
}

@media (min-width: 768px) {
  .key.wide {
    min-width: 70px;
    font-size: 0.75rem;
    flex: initial;
  }
} background: #bbb;
}

.key.wide {
  min-width: 65px;
  font-size: 0.75em;
}

.key.correct {
  background: #6aaa64;
  color: #ffffff;
}

.key.present {
  background: #c9b458;
  color: #ffffff;
}

.key.absent {
  background: #787c7e;
  color: #ffffff;
}
.message {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #000000;
  min-height: 0;
  font-weight: 500;
  flex-shrink: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

@media (min-width: 768px) {
  .message {
    font-size: 0.95rem;
  }
}

.mobile-input-container {
  display: none;
}

.mobile-input {
  flex: 1;
  padding: 15px;
  font-size: 16px;
  border: 2px solid #667eea;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mobile-input::placeholder {
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.mobile-input:focus {
  outline: none;
  border-color: #764ba2;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.mobile-submit-btn {
  padding: 15px 20px;
  font-size: 1.2em;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #667eea;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}

.mobile-submit-btn:active:not(:disabled) {
  background: #764ba2;
}

.mobile-submit-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.compliment-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.compliment-modal.show {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.compliment-content {
  background: #ffffff;
  border-radius: 0;
  padding: 40px 30px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  animation: slideUp 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
  border: 2px solid #000000;
}

@media (min-width: 768px) {
  .compliment-content {
    padding: 50px 40px;
  }
}

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

.compliment-content h2 {
  color: #000000;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: 'Georgia', 'Times New Roman', serif;
  letter-spacing: 0.02em;
}

.compliment-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 400;
  font-family: 'Georgia', 'Times New Roman', serif;
}

@media (min-width: 768px) {
  .compliment-content h2 {
    margin-bottom: 25px;
    font-size: 1.75rem;
  }
  
  .compliment-text {
    font-size: 1.2rem;
  }
}

.compliment-from {
  color: #000000;
  font-weight: 600;
  margin-top: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.close-btn {
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 14px 36px;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 30px;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.close-btn:hover {
  background: #333333;
  transform: none;
}

.snowflake {
  position: fixed;
  top: -10px;
  color: white;
  font-size: 1em;
  opacity: 0.8;
  animation: fall linear infinite;
  z-index: 999;
}

@keyframes fall {
  to {
    transform: translateY(100vh);
  }
}

.compliments-list {
  overflow-y: auto;
  max-height: 60vh;
  padding-right: 10px;
}

.compliment-card {
  background: #f8f8f8;
  color: #000000;
  padding: 25px;
  border-radius: 0;
  margin-bottom: 15px;
  animation: slideUp 0.4s ease;
  border: 1px solid #e0e0e0;
  border-left: 3px solid #000000;
}

.compliment-card-word {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.compliment-card-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: normal;
  color: #333333;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.compliment-card-from {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: right;
  opacity: 0.8;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  letter-spacing: 0.02em;
}

.compliment-card-date {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 6px;
  text-align: right;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
/* Intro Page Styles */
.intro-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f8f8;
  padding: 20px;
}

.intro-container {
  background: #ffffff;
  border-radius: 0;
  padding: 60px 40px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 1px solid #e8e8e8;
  text-align: center;
}

.intro-title {
  font-family: 'Libre Baskerville', 'Georgia', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
  letter-spacing: -0.02em;
}

.intro-subtitle {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 50px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.avatars-container {
  display: grid;
  grid-template-columns: repeat(4, 60px);
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar:hover {
  transform: scale(1.1);
}

.play-button {
  background: #000000;
  color: white;
  border: none;
  padding: 18px 60px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.play-button:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

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

@media (max-width: 768px) {
  .intro-container {
    padding: 40px 30px;
  }
  
  .intro-title {
    font-size: 2.5rem;
  }
  
  .intro-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .avatars-container {
    grid-template-columns: repeat(4, 50px);
    gap: 10px;
    margin-bottom: 40px;
  }
  
  .avatar {
    width: 50px;
    height: 50px;
  }
  
  .play-button {
    padding: 16px 50px;
    font-size: 1rem;
  }
}

/* Waiting Message Styles */
.waiting-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
  text-align: center;
  min-height: 400px;
}

.waiting-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.waiting-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
}

.waiting-text {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.waiting-countdown {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  padding: 15px 30px;
  background: #f5f5f5;
  border-radius: 8px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .waiting-message {
    padding: 40px 20px;
    min-height: 300px;
  }
  
  .waiting-icon {
    font-size: 3rem;
  }
  
  .waiting-title {
    font-size: 1.5rem;
  }
  
  .waiting-text {
    font-size: 1rem;
  }
  
  .waiting-countdown {
    font-size: 1.1rem;
    padding: 12px 20px;
  }
}

/* Completed Message Styles */
.completed-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
  text-align: center;
  min-height: 400px;
}

.completed-icon {
  font-size: 5rem;
  margin-bottom: 20px;
  animation: bounce 1s ease-in-out infinite;
}

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

.completed-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
  font-family: 'Georgia', serif;
}

.completed-text {
  font-size: 1.2rem;
  color: #333333;
  margin-bottom: 10px;
  line-height: 1.6;
  font-weight: 600;
}

.completed-subtext {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.reset-button {
  background: #000000;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.reset-button:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

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

@media (max-width: 768px) {
  .completed-message {
    padding: 40px 20px;
    min-height: 300px;
  }
  
  .completed-icon {
    font-size: 4rem;
  }
  
  .completed-title {
    font-size: 1.6rem;
  }
  
  .completed-text {
    font-size: 1.1rem;
  }
  
  .completed-subtext {
    font-size: 0.95rem;
  }
  
  .reset-button {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

/* Debug Modal Styles */
.debug-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.debug-modal.show {
  display: flex;
}

.debug-modal-content {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.debug-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  flex-shrink: 0;
}

.debug-modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

.debug-modal-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  min-height: 0;
}

.debug-close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
}

.debug-close-btn:hover {
  background: #f0f0f0;
  color: #000;
}

.debug-section {
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.debug-section:last-child {
  border-bottom: none;
}
}

.debug-section h3 {
  margin: 0 0 12px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

.debug-solution {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  letter-spacing: 0.3em;
}

.debug-time-controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.debug-time-controls button {
  flex: 1;
  min-width: 60px;
  padding: 10px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.2s;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

.debug-time-controls button:hover {
  background: #e8e8e8;
  border-color: #ccc;
}

.debug-time-controls button:active {
  transform: scale(0.95);
}

.debug-time-display {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  font-family: monospace;
}

.debug-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.debug-buttons button {
  flex: 1;
  padding: 10px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.2s;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

.debug-buttons button:hover {
  background: #e8e8e8;
  border-color: #ccc;
}

.debug-buttons button:active {
  transform: scale(0.95);
}

.debug-compliments-list {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  margin: -8px;
  padding: 8px;
}

.debug-compliment-item {
  padding: 12px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  margin-bottom: 8px;
  background: #fafafa;
  transition: background 0.2s;
}

.debug-compliment-item.locked {
  opacity: 0.5;
  background: #f5f5f5;
}

.debug-compliment-item:hover {
  background: #f5f5f5;
}

.debug-compliment-item.locked:hover {
  background: #f5f5f5;
}

.debug-compliment-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin: 0;
}

.debug-compliment-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.debug-compliment-item span {
  font-size: 0.9rem;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

/* Mobile optimizations for debug modal */
@media (max-width: 768px) {
  .debug-modal {
    padding: 10px;
  }
  
  .debug-modal-content {
    max-height: 85vh;
    border-radius: 8px;
  }
  
  .debug-modal-header {
    padding: 16px;
  }
  
  .debug-modal-header h2 {
    font-size: 1.25rem;
  }
  
  .debug-section {
    padding: 16px;
  }
  
  .debug-solution {
    font-size: 1.5rem;
  }
  
  .debug-time-controls button {
    min-width: 50px;
    padding: 8px;
    font-size: 0.8rem;
  }
  
  .debug-compliment-item {
    padding: 10px;
  }
  
  .debug-compliment-item span {
    font-size: 0.85rem;
  }
}