/* ================================================
   LetsRandomize.com — Shared Styles
   Modern, clean, mobile-first design
   Accent: #10b981 (green)
   ================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #f9fafb;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #10b981; text-decoration: none; transition: color 0.2s; }
a:hover { color: #059669; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}
main { flex: 1; }

/* --- Utility --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* --- Site Header --- */
.site-header {
  background: #111827;
  color: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.site-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-logo span { color: #10b981; }
.site-logo:hover { color: #fff; }
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a { color: #d1d5db; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.site-nav a:hover { color: #10b981; }
.mobile-menu-btn {
  display: none;
  background: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}
@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #111827;
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .site-nav.active { display: flex; }
  .site-nav a { padding: 0.75rem 1rem; width: 100%; border-radius: 0.375rem; }
  .site-nav a:hover { background: #1f2937; }
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, #111827 0%, #1e3a5f 50%, #064e3b 100%);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.hero p {
  font-size: 1.1rem;
  color: #d1d5db;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
.hero-search {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
.hero-search input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1rem;
  transition: all 0.2s;
}
.hero-search input::placeholder { color: #9ca3af; }
.hero-search input:focus { background: rgba(255,255,255,0.15); border-color: #10b981; }
.hero-search-icon {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}
@media (min-width: 768px) {
  .hero { padding: 4rem 0; }
  .hero h1 { font-size: 2.75rem; }
}

/* --- Tool Page Hero (smaller) --- */
.tool-hero {
  background: linear-gradient(135deg, #111827 0%, #1e3a5f 50%, #064e3b 100%);
  color: #fff;
  padding: 2rem 0;
}
.tool-hero h1 { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.5rem; }
.tool-hero p { color: #d1d5db; font-size: 1rem; }
.breadcrumb { margin-bottom: 0.75rem; font-size: 0.85rem; }
.breadcrumb a { color: #9ca3af; }
.breadcrumb a:hover { color: #10b981; }
.breadcrumb span { color: #6b7280; margin: 0 0.35rem; }
@media (min-width: 768px) {
  .tool-hero h1 { font-size: 2.25rem; }
}

/* --- Section Titles --- */
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #111827;
}
.section-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  margin-top: -0.75rem;
  margin-bottom: 1.25rem;
}

/* --- Card Base --- */
.card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* --- Tool Cards Grid --- */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 480px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .tools-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .tools-grid { grid-template-columns: repeat(4, 1fr); } }

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e5e7eb;
}
.tool-card:hover { border-color: #10b981; }
.tool-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  background: #ecfdf5;
  color: #10b981;
}
.tool-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; color: #111827; }
.tool-card p { font-size: 0.8rem; color: #6b7280; line-height: 1.4; }

/* --- Category Tags --- */
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}
.category-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  background: #f3f4f6;
  color: #374151;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.category-tag:hover, .category-tag.active {
  background: #ecfdf5;
  color: #059669;
  border-color: #10b981;
}

/* --- Generator Tool UI --- */
.generator-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.generator-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .generator-options { grid-template-columns: repeat(2, 1fr); }
}
.option-group { display: flex; flex-direction: column; gap: 0.35rem; }
.option-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}
.option-group select,
.option-group input[type="number"],
.option-group input[type="text"],
.option-group input[type="range"],
.option-group textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  color: #1f2937;
  transition: border-color 0.2s;
}
.option-group select:focus,
.option-group input:focus,
.option-group textarea:focus {
  border-color: #10b981;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}
.option-group textarea { resize: vertical; min-height: 100px; }

/* Checkboxes */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: #374151;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: #10b981;
  cursor: pointer;
}

/* Range slider */
.range-value {
  font-size: 0.85rem;
  color: #10b981;
  font-weight: 600;
}
input[type="range"] {
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: #e5e7eb;
  padding: 0 !important;
  border: none !important;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #10b981;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary {
  background: #10b981;
  color: #fff;
  box-shadow: 0 2px 4px rgba(16,185,129,0.3);
}
.btn-primary:hover { background: #059669; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary.generating {
  animation: pulse-btn 0.6s ease-in-out;
}
@keyframes pulse-btn {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.btn-secondary {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}
.btn-secondary:hover { background: #e5e7eb; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn-group { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* --- Result Display --- */
.result-display {
  background: #f0fdf4;
  border: 2px solid #10b981;
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin: 1rem 0;
  min-height: 60px;
  position: relative;
  transition: all 0.3s;
}
.result-display.flash {
  animation: result-flash 0.4s ease;
}
@keyframes result-flash {
  0% { background: #d1fae5; }
  100% { background: #f0fdf4; }
}
.result-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #065f46;
  word-break: break-all;
}
.result-text.large { font-size: 2rem; text-align: center; }
.result-list { display: flex; flex-direction: column; gap: 0.5rem; }
.result-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.7);
  border-radius: 0.375rem;
  font-weight: 500;
  color: #065f46;
}
.result-list-item .num {
  background: #10b981;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.result-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  justify-content: flex-end;
}

/* --- Copy Button --- */
.copy-btn {
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  cursor: pointer;
  color: #374151;
  font-weight: 500;
  transition: all 0.2s;
}
.copy-btn:hover { border-color: #10b981; color: #059669; }
.copy-btn.copied { background: #10b981; color: #fff; border-color: #10b981; }

/* --- Toast --- */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.toast {
  background: #111827;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  animation: toast-in 0.3s ease, toast-out 0.3s ease 2.5s forwards;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.toast-success { border-left: 3px solid #10b981; }
@keyframes toast-in { from { opacity: 0; transform: translateY(1rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes toast-out { from { opacity: 1; } to { opacity: 0; transform: translateY(1rem); } }

/* --- History Panel --- */
.history-panel {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  padding: 1.25rem;
  margin: 1.5rem 0;
}
.history-panel h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.history-panel .clear-btn {
  font-size: 0.8rem;
  color: #9ca3af;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 500;
}
.history-panel .clear-btn:hover { color: #ef4444; }
.history-list { display: flex; flex-direction: column; gap: 0.375rem; }
.history-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: #f9fafb;
  border-radius: 0.375rem;
  font-size: 0.85rem;
  color: #374151;
}
.history-item time { font-size: 0.75rem; color: #9ca3af; }
.history-empty { text-align: center; color: #9ca3af; font-size: 0.85rem; padding: 1rem 0; }

/* --- Related Tools --- */
.related-section { margin: 2.5rem 0; }
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 480px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .related-grid { grid-template-columns: repeat(4, 1fr); } }

/* --- How to Use --- */
.how-to {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.how-to h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.steps { display: flex; flex-direction: column; gap: 1rem; }
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #10b981;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.step-content h3 { font-size: 0.95rem; font-weight: 600; }
.step-content p { font-size: 0.875rem; color: #6b7280; }

/* --- FAQ --- */
.faq-section {
  margin: 2rem 0;
}
.faq-section h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.faq-item {
  background: #fff;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-question:hover { background: #f9fafb; }
.faq-question .faq-icon { transition: transform 0.2s; font-size: 0.8rem; color: #9ca3af; }
.faq-question.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 1.25rem 1rem;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.7;
}

/* --- Ad Slots --- */
.ad-slot {
  background: #f3f4f6;
  border: 1px dashed #d1d5db;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.8rem;
  margin: 1.5rem 0;
}

/* --- Author Byline --- */
.author-byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  font-size: 0.85rem;
  color: #6b7280;
  border-top: 1px solid #e5e7eb;
  margin-top: 1.5rem;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.author-byline a { font-weight: 600; }

/* --- Footer --- */
.site-footer {
  background: #111827;
  color: #9ca3af;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.footer-col a {
  display: block;
  color: #9ca3af;
  font-size: 0.85rem;
  padding: 0.2rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: #10b981; }
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}

/* --- Strength Indicator --- */
.strength-bar {
  height: 6px;
  border-radius: 3px;
  background: #e5e7eb;
  margin-top: 0.5rem;
  overflow: hidden;
}
.strength-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s, background 0.3s;
}
.strength-label { font-size: 0.8rem; font-weight: 600; margin-top: 0.25rem; }
.strength-weak { color: #ef4444; }
.strength-fair { color: #f59e0b; }
.strength-good { color: #10b981; }
.strength-strong { color: #059669; }

/* --- Color Swatch --- */
.color-swatch {
  width: 100%;
  height: 120px;
  border-radius: 0.75rem;
  transition: background 0.3s;
  border: 1px solid #e5e7eb;
}
.color-palette {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 0.75rem;
}
.palette-item {
  text-align: center;
}
.palette-swatch {
  width: 100%;
  height: 80px;
  border-radius: 0.5rem;
  margin-bottom: 0.35rem;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: transform 0.2s;
}
.palette-swatch:hover { transform: scale(1.05); }
.palette-label { font-size: 0.75rem; color: #374151; font-weight: 500; }

/* --- Wheel Canvas --- */
.wheel-container {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
  position: relative;
}
.wheel-pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 20px solid #111827;
  z-index: 2;
}

/* --- Team Display --- */
.teams-display {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .teams-display { grid-template-columns: repeat(2, 1fr); } }
.team-card {
  background: #f0fdf4;
  border: 2px solid #10b981;
  border-radius: 0.75rem;
  padding: 1rem;
}
.team-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 0.5rem;
}
.team-member {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: #374151;
  border-bottom: 1px solid #d1fae5;
}
.team-member:last-child { border-bottom: none; }

/* --- About Page --- */
.about-content {
  max-width: 800px;
  margin: 2rem auto;
}
.about-content h1 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.about-content h2 { font-size: 1.25rem; font-weight: 700; margin: 1.5rem 0 0.75rem; }
.about-content p { margin-bottom: 1rem; color: #4b5563; line-height: 1.8; }
.author-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin: 2rem 0;
}
.author-card-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.75rem;
}
@media (min-width: 640px) {
  .author-card { flex-direction: row; text-align: left; }
}

/* --- Confetti --- */
.confetti-piece {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 9998;
  animation: confetti-fall 1.5s ease forwards;
}
@keyframes confetti-fall {
  0% { opacity: 1; transform: translateY(0) rotate(0deg); }
  100% { opacity: 0; transform: translateY(100vh) rotate(720deg); }
}

/* --- Coin Flip --- */
.coin {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto;
  box-shadow: 0 4px 12px rgba(16,185,129,0.3);
  transition: transform 0.1s;
}
.coin.flipping {
  animation: coin-flip 0.6s ease-in-out;
}
@keyframes coin-flip {
  0% { transform: rotateY(0); }
  50% { transform: rotateY(1800deg) scale(1.1); }
  100% { transform: rotateY(3600deg); }
}

/* --- Page Sections Spacing --- */
.page-section { padding: 2rem 0; }
@media (min-width: 768px) { .page-section { padding: 3rem 0; } }

/* --- Search Filter --- */
.search-filter {
  margin-bottom: 1.5rem;
}
.search-filter input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  background: #fff;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.search-filter input:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}
