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

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      min-height: 100vh;
      padding: 20px;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    header {
      text-align: center;
      margin-bottom: 20px;
      color: white;
      padding: 20px 0 10px;
      position: sticky;
      top: 0;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      z-index: 999;
      transition: all 0.3s ease;
      position: relative;
    }

    header.scrolled {
      padding: 10px 0 5px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    h1 {
      font-size: 2.5rem;
      margin-bottom: 5px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
      transition: font-size 0.3s ease;
    }

    header.scrolled h1 {
      font-size: 2rem;
    }

    h1 {
      cursor: pointer;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      transition: all 0.3s ease;
    }

    .date {
      font-size: 1.2rem;
      opacity: 0.9;
    }

    /* Parent Mode Icon - Clickable parent icon in title */
    .parent-icon {
      cursor: pointer;
      opacity: 0.4;
      transition: all 0.3s ease;
      display: inline-block;
      padding: 0 15px;
      margin: 0 -15px;
      position: relative;
    }

    /* Increase touch target with pseudo-element */
    .parent-icon::before {
      content: '';
      position: absolute;
      top: -15px;
      left: -15px;
      right: -15px;
      bottom: -15px;
      cursor: pointer;
    }

    .parent-icon:hover {
      opacity: 0.8;
      transform: scale(1.1);
    }

    .parent-icon:active {
      opacity: 1;
      transform: scale(0.95);
    }

    /* When parent mode is active, make icon more visible */
    body.parent-mode-active .parent-icon {
      opacity: 1;
      animation: parentPulse 2s ease-in-out infinite;
    }

    @keyframes parentPulse {
      0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
      }
      50% {
        opacity: 0.7;
        text-shadow: 0 0 20px rgba(255, 255, 255, 1);
      }
    }

    .overview-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 20px;
    }

    .kid-overview-card {
      background: white;
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .kid-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 2px solid #eee;
    }

    .kid-name {
      font-size: 1.5rem;
      font-weight: bold;
      color: #667eea;
    }

    .completion-badge {
      padding: 8px 16px;
      border-radius: 20px;
      font-weight: bold;
      font-size: 0.9rem;
    }

    .completion-badge.complete {
      background: #4caf50;
      color: white;
    }

    .completion-badge.incomplete {
      background: #ff9800;
      color: white;
    }

    .completion-badge.pending {
      background: #ff9800;
      color: white;
    }

    .chore-list {
      list-style: none;
    }

    .chore-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px;
      margin-bottom: 8px;
      border-radius: 10px;
      background: #f9f9f9;
      transition: all 0.3s ease;
    }

    .chore-item:hover {
      background: #f0f0f0;
    }

    .chore-item.completed {
      background: #e8f5e9;
    }

    .chore-item.pending {
      background: #fff3e0;
    }

    .chore-status {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      flex-shrink: 0;
    }

    .chore-item.completed .chore-status {
      background: #4caf50;
      color: white;
    }

    .chore-item.pending .chore-status {
      background: #ff9800;
      color: white;
    }

    .chore-item:not(.completed):not(.pending) .chore-status {
      background: #ddd;
      color: #999;
    }

    .chore-icon-small {
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .chore-name-small {
      flex-grow: 1;
      font-size: 1rem;
      color: #333;
    }

    .chore-item.completed .chore-name-small {
      color: #2e7d32;
    }

    .chore-item.pending .chore-name-small {
      color: #e65100;
    }

    .overview-stats {
      margin-top: 15px;
      padding-top: 15px;
      border-top: 2px solid #eee;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .week-view-container {
      background: white;
      border-radius: 20px;
      padding: 25px;
      margin-top: 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    /* Week Navigation Controls */
    .week-navigation {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 15px;
      margin-bottom: 25px;
      padding: 15px;
      background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
      border-radius: 12px;
      border: 2px solid #d0d9ff;
    }

    .week-nav-btn {
      padding: 10px 20px;
      border: 2px solid #667eea;
      border-radius: 10px;
      background: white;
      color: #667eea;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      gap: 6px;
      min-width: 120px;
      justify-content: center;
    }

    .week-nav-btn:hover {
      background: #667eea;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    .week-today-btn {
      background: #4caf50;
      border-color: #4caf50;
      color: white;
    }

    .week-today-btn:hover {
      background: #45a049;
      border-color: #45a049;
    }

    .week-date-range {
      flex: 1;
      text-align: center;
      color: #333;
    }

    .week-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .week-title {
      font-size: 1.5rem;
      font-weight: bold;
      color: #667eea;
    }

    .week-summary {
      display: flex;
      gap: 20px;
    }

    .week-stat-label {
      font-size: 0.85rem;
      color: #666;
      margin-top: 5px;
    }

    .admin-container {
      background: white;
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .admin-tabs {
      display: flex;
      gap: 10px;
      margin-bottom: 25px;
      border-bottom: 2px solid #eee;
      flex-wrap: wrap;
    }

    .admin-tab {
      padding: 12px 24px;
      border: none;
      background: none;
      color: #666;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      border-bottom: 3px solid transparent;
      transition: all 0.3s ease;
    }

    .admin-tab:hover {
      color: #667eea;
    }

    .admin-tab.active {
      color: #667eea;
      border-bottom-color: #667eea;
    }

    .admin-section {
      display: none;
    }

    .admin-section.active {
      display: block;
    }

    .chore-library-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
      margin-bottom: 20px;
    }

    .chore-library-card {
      background: #f9f9f9;
      border-radius: 12px;
      padding: 20px;
      border: 2px solid #eee;
      transition: all 0.3s ease;
    }

    .chore-library-card:hover {
      border-color: #667eea;
      transform: translateY(-2px);
    }

    .chore-header-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
    }

    .chore-library-name {
      font-size: 1.1rem;
      font-weight: bold;
      color: #333;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .chore-actions {
      display: flex;
      gap: 8px;
    }

    .icon-btn {
      padding: 6px 12px;
      border: none;
      border-radius: 6px;
      background: #667eea;
      color: white;
      cursor: pointer;
      font-size: 0.85rem;
      transition: all 0.3s ease;
    }

    .icon-btn:hover {
      background: #5568d3;
      transform: scale(1.05);
    }

    .icon-btn.danger {
      background: #f44336;
    }

    .icon-btn.danger:hover {
      background: #d32f2f;
    }

    .chore-detail {
      font-size: 0.85rem;
      color: #666;
      margin: 8px 0;
    }

    .day-badges {
      display: flex;
      gap: 4px;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .day-badge {
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
      background: #667eea;
      color: white;
    }

    .add-btn {
      width: 100%;
      padding: 15px;
      border: 2px dashed #667eea;
      border-radius: 12px;
      background: transparent;
      color: #667eea;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .add-btn:hover {
      background: rgba(102, 126, 234, 0.1);
    }

    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal.show {
      display: flex;
    }

    .modal-content {
      background: white;
      border-radius: 20px;
      padding: 30px;
      max-width: 500px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
    }

    .modal-header {
      font-size: 1.5rem;
      font-weight: bold;
      color: #667eea;
      margin-bottom: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* Cell Status Badge */
    .cell-status-badge {
      display: inline-block;
      padding: 8px 20px;
      border-radius: 20px;
      font-weight: 600;
      font-size: 1rem;
    }

    .cell-status-badge.todo {
      background: #e3f2fd;
      color: #1976d2;
      border: 2px solid #1976d2;
    }

    .cell-status-badge.pending {
      background: #fff3e0;
      color: #ff9800;
      border: 2px solid #ff9800;
    }

    .cell-status-badge.approved {
      background: #e8f5e9;
      color: #4caf50;
      border: 2px solid #4caf50;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-label {
      display: block;
      font-weight: 600;
      color: #333;
      margin-bottom: 8px;
    }

    .form-input {
      width: 100%;
      padding: 12px;
      border: 2px solid #eee;
      border-radius: 8px;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }

    .form-input:focus {
      outline: none;
      border-color: #667eea;
    }

    .checkbox-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .checkbox-label {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .checkbox-label:hover {
      background: #f9f9f9;
    }

    .checkbox-label input[type="checkbox"] {
      width: 20px;
      height: 20px;
      cursor: pointer;
    }

    .day-selector {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .day-toggle {
      padding: 10px 16px;
      border: 2px solid #ddd;
      border-radius: 8px;
      background: white;
      color: #666;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .day-toggle.selected {
      background: #667eea;
      color: white;
      border-color: #667eea;
    }

    .modal-actions {
      display: flex;
      gap: 10px;
      margin-top: 25px;
    }

    .btn {
      flex: 1;
      padding: 12px 20px;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background: #667eea;
      color: white;
    }

    .btn-primary:hover {
      background: #5568d3;
    }

    .btn-secondary {
      background: #eee;
      color: #666;
    }

    .btn-secondary:hover {
      background: #ddd;
    }

    .kids-management {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
    }

    .kid-management-card {
      background: #f9f9f9;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      border: 2px solid #eee;
    }

    .kid-management-name {
      font-size: 1.3rem;
      font-weight: bold;
      color: #667eea;
      margin: 10px 0;
    }

    .icon-picker {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 10px;
      margin: 15px 0;
    }

    .icon-option {
      font-size: 2rem;
      padding: 10px;
      border: 2px solid #eee;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .icon-option:hover {
      transform: scale(1.1);
    }

    .icon-option.selected {
      border-color: #667eea;
      background: rgba(102, 126, 234, 0.1);
    }

    .emoji-picker {
      border: 2px solid #eee;
      border-radius: 12px;
      padding: 15px;
      margin-top: 10px;
      max-height: 300px;
      overflow-y: auto;
      background: #f9f9f9;
    }

    .emoji-categories {
      display: flex;
      gap: 5px;
      margin-bottom: 15px;
      flex-wrap: wrap;
    }

    .emoji-category-btn {
      padding: 8px 12px;
      border: 2px solid #ddd;
      border-radius: 8px;
      background: white;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .emoji-category-btn.active {
      border-color: #667eea;
      background: #667eea;
      color: white;
    }

    .emoji-grid {
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      gap: 8px;
    }

    .emoji-option-large {
      font-size: 2rem;
      padding: 10px;
      text-align: center;
      border: 2px solid transparent;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s ease;
      background: white;
    }

    .emoji-option-large:hover {
      transform: scale(1.2);
      border-color: #667eea;
      background: rgba(102, 126, 234, 0.1);
    }

    .emoji-search {
      width: 100%;
      padding: 10px;
      border: 2px solid #ddd;
      border-radius: 8px;
      font-size: 1rem;
      margin-bottom: 15px;
    }

    .emoji-search:focus {
      outline: none;
      border-color: #667eea;
    }

    .icon-input-group {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .icon-input-group input {
      flex: 1;
    }

    .emoji-picker-btn {
      padding: 10px 20px;
      border: 2px solid #667eea;
      border-radius: 8px;
      background: white;
      color: #667eea;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.3s ease;
    }

    .emoji-picker-btn:hover {
      background: #667eea;
      color: white;
    }

    .assignment-matrix {
      overflow-x: auto;
    }

    .matrix-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }

    .matrix-table th,
    .matrix-table td {
      padding: 15px;
      text-align: center;
      border: 1px solid #eee;
    }

    .matrix-table th {
      background: #667eea;
      color: white;
      font-weight: 600;
    }

    .matrix-table td {
      background: white;
    }

    .matrix-checkbox {
      width: 24px;
      height: 24px;
      cursor: pointer;
    }

    .week-stat {
      text-align: center;
    }

    .week-stat-value {
      font-size: 1.8rem;
      font-weight: bold;
      color: #667eea;
    }

    .week-stat-label {
      font-size: 0.85rem;
      color: #666;
      margin-top: 5px;
    }

    .week-grid-container {
      overflow-x: auto;
      margin-top: 20px;
      -webkit-overflow-scrolling: touch;
    }

    .week-grid {
      display: grid;
      grid-template-columns: minmax(120px, auto) repeat(7, minmax(50px, 1fr));
      gap: 10px;
      min-width: 600px;
    }

    .day-header {
      text-align: center;
      font-weight: bold;
      padding: 10px;
      background: #f5f5f5;
      border-radius: 8px;
      font-size: 0.9rem;
      color: #333;
    }

    .day-header.today {
      background: #667eea;
      color: white;
    }

    .chore-row-label {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px;
      font-weight: 600;
      font-size: 0.9rem;
      background: #f9f9f9;
      border-radius: 8px;
    }

    .day-cell {
      text-align: center;
      padding: 15px 5px;
      border-radius: 8px;
      background: #f9f9f9;
      min-height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

    .day-cell.not-scheduled {
      background: #fafafa;
      color: #ddd;
    }

    .day-cell.todo {
      background: white;
      border: 2px dashed #ddd;
    }

    .day-cell.pending {
      background: #fff3e0;
      color: #ff9800;
      border: 2px solid #ff9800;
    }

    .day-cell.approved {
      background: #e8f5e9;
      color: #4caf50;
      border: 2px solid #4caf50;
    }

    /* Interactive Cell Styles */
    .day-cell.clickable {
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .day-cell.clickable:hover {
      transform: scale(1.1);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      z-index: 10;
    }

    .day-cell.todo.clickable:hover {
      background: #f0f0ff;
      border-color: #667eea;
    }

    .day-cell.pending.clickable {
      animation: pendingPulse 2s ease-in-out infinite;
    }

    @keyframes pendingPulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

    .day-cell.pending.clickable:hover {
      animation: none;
      background: #ffe5cc;
    }

    .day-cell.approved.clickable:hover {
      background: #c8e6c9;
    }

    .stat-item {
      text-align: center;
    }

    .stat-value {
      font-size: 1.5rem;
      font-weight: bold;
      color: #667eea;
    }

    .stat-label {
      font-size: 0.85rem;
      color: #666;
      margin-top: 5px;
    }

    .kids-selector {
      display: flex;
      gap: 15px;
      margin-bottom: 25px;
      overflow-x: auto;
      padding: 10px 5px;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: rgba(255,255,255,0.3) transparent;
    }

    .kids-selector::-webkit-scrollbar {
      height: 6px;
    }

    .kids-selector::-webkit-scrollbar-track {
      background: rgba(255,255,255,0.1);
      border-radius: 3px;
    }

    .kids-selector::-webkit-scrollbar-thumb {
      background: rgba(255,255,255,0.3);
      border-radius: 3px;
    }

    .swipe-hint {
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.6);
      white-space: nowrap;
    }

    .kid-btn {
      min-width: 200px;
      padding: 20px;
      border: none;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
      color: #333;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .kid-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
      background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 100%);
    }

    .kid-btn.active {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }

    .kid-avatar {
      font-size: 2.5rem;
      line-height: 1;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }

    /* Profile Photo Styles */
    .kid-photo-container {
      position: relative;
      width: 100px;
      height: 100px;
    }

    .kid-photo {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid rgba(255,255,255,0.5);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
    }

    .kid-btn:hover .kid-photo {
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    }

    .kid-btn.active .kid-photo {
      border: 4px solid white;
      box-shadow: 0 0 0 3px #667eea, 0 6px 20px rgba(102, 126, 234, 0.4);
      animation: photoRing 2s ease-in-out infinite;
    }

    @keyframes photoRing {
      0%, 100% {
        box-shadow: 0 0 0 3px #667eea, 0 6px 20px rgba(102, 126, 234, 0.4);
      }
      50% {
        box-shadow: 0 0 0 3px #764ba2, 0 6px 20px rgba(118, 75, 162, 0.4);
      }
    }

    .kid-photo-fallback {
      display: none;
    }

    .kid-name {
      font-size: 1.1rem;
      font-weight: bold;
    }

    .kid-chore-count {
      font-size: 0.85rem;
      opacity: 0.8;
    }

    .kid-btn.active .kid-chore-count {
      opacity: 0.9;
    }

    .chore-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 20px;
    }

    .chore-card {
      background: white;
      border-radius: 20px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .chore-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    }

    .chore-card.completed {
      background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
      color: white;
    }

    .chore-card.completed .chore-icon {
      filter: grayscale(0);
      opacity: 1;
    }

    .chore-icon {
      font-size: 6rem;
      margin-bottom: 20px;
      display: block;
      transition: all 0.3s ease;
      text-align: center;
      filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    }

    .chore-card:hover .chore-icon {
      transform: scale(1.1);
      animation: iconBounce 0.5s ease;
    }

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

    .chore-card.completed .chore-icon::after {
      content: '✓';
      position: absolute;
      top: 10px;
      right: 10px;
      background: white;
      color: #4caf50;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
    }

    .chore-name {
      font-size: 1.6rem;
      font-weight: 900;
      margin-bottom: 20px;
      color: #333;
      text-align: center;
      letter-spacing: 0.5px;
    }

    .chore-card.completed .chore-name {
      color: white;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .chore-card.pending .chore-name {
      color: white;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    /* ==========================================================================
       Status Badges - Visual Indicators at Top of Cards
       ========================================================================== */

    .status-badge {
      position: absolute;
      top: -15px;
      right: 15px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      z-index: 10;
    }

    .badge-icon {
      font-size: 2rem;
      line-height: 1;
    }

    .status-todo {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .status-pending {
      background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
      animation: badgePulse 2s ease-in-out infinite;
    }

    .status-approved {
      background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
      animation: badgeSpin 3s linear infinite;
    }

    @keyframes badgePulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
      }
      50% {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(255, 152, 0, 0.6);
      }
    }

    @keyframes badgeSpin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* ==========================================================================
       Icon Button System - Visual, Kid-Friendly Design
       ========================================================================== */

    .icon-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 16px 24px;
      border: none;
      border-radius: 20px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      min-height: 70px;
      min-width: 100px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .icon-btn-emoji {
      font-size: 2.5rem;
      line-height: 1;
      display: block;
    }

    .icon-btn-label {
      font-size: 0.95rem;
      line-height: 1;
      color: white;
    }

    .icon-btn:hover:not(:disabled) {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    }

    .icon-btn:active:not(:disabled) {
      transform: translateY(-1px) scale(1.02);
    }

    /* Todo Action (Mark as Done) - Blue to indicate action needed */
    .icon-btn-todo-action {
      background: linear-gradient(135deg, #2196f3 0%, #64b5f6 100%);
      width: 100%;
    }

    .icon-btn-todo-action:hover:not(:disabled) {
      background: linear-gradient(135deg, #42a5f5 0%, #90caf9 100%);
    }

    /* Success (Approved) */
    .icon-btn-success {
      background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
      width: 100%;
      cursor: not-allowed;
      opacity: 0.9;
    }

    /* Approve */
    .icon-btn-approve {
      background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
      flex: 1;
    }

    .icon-btn-approve:hover:not(:disabled) {
      background: linear-gradient(135deg, #ffe54c 0%, #fff176 100%);
    }

    /* Reject/Redo */
    .icon-btn-reject {
      background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
      flex: 1;
    }

    .icon-btn-reject:hover:not(:disabled) {
      background: linear-gradient(135deg, #ffb74d 0%, #ffcc80 100%);
    }

    /* Record */
    .icon-btn-record {
      background: linear-gradient(135deg, #2196f3 0%, #64b5f6 100%);
    }

    .icon-btn-record:hover:not(:disabled) {
      background: linear-gradient(135deg, #64b5f6 0%, #90caf9 100%);
    }

    /* Play */
    .icon-btn-play {
      background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    }

    .icon-btn-play:hover:not(:disabled) {
      background: linear-gradient(135deg, #66bb6a 0%, #81c784 100%);
    }

    /* Delete */
    .icon-btn-delete {
      background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
      min-width: 60px;
    }

    .icon-btn-delete:hover:not(:disabled) {
      background: linear-gradient(135deg, #e57373 0%, #ef5350 100%);
    }

    /* Camera */
    .icon-btn-camera {
      background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
    }

    .icon-btn-camera:hover:not(:disabled) {
      background: linear-gradient(135deg, #ba68c8 0%, #ce93d8 100%);
    }

    /* Undo (for kids to reverse accidental "done") */
    .icon-btn-undo {
      background: linear-gradient(135deg, #607d8b 0%, #90a4ae 100%);
      margin-top: 15px;
    }

    .icon-btn-undo:hover:not(:disabled) {
      background: linear-gradient(135deg, #90a4ae 0%, #b0bec5 100%);
    }

    /* Visual Status Indicator */
    .pending-status-visual {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(255,255,255,0.2);
      border-radius: 15px;
      gap: 10px;
      width: 100%;
    }

    .status-icon {
      font-size: 3rem;
      animation: pulse 2s ease-in-out infinite;
    }

    .status-label {
      font-size: 1.1rem;
      font-weight: bold;
      color: white;
      text-align: center;
    }

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

    .pending-status-card {
      width: 100%;
      padding: 20px;
      border-radius: 15px;
      background: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
      text-align: center;
      animation: gentlePulse 2s ease-in-out infinite;
      box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
      margin-bottom: 15px;
    }

    @keyframes gentlePulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
      }
      50% {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
      }
    }

    .pending-status-icon {
      font-size: 3rem;
      margin-bottom: 10px;
      animation: rotate 3s linear infinite;
    }

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

    .pending-status-title {
      font-size: 1.3rem;
      font-weight: bold;
      color: #fff;
      margin-bottom: 8px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .pending-status-message {
      font-size: 1rem;
      color: #fff;
      opacity: 0.9;
      margin-bottom: 0;
    }

    .pending-checkmark {
      display: inline-block;
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin: 0 auto 10px;
    }

    .approve-btn {
      width: 100%;
      padding: 12px 20px;
      border: none;
      border-radius: 12px;
      background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
      color: white;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-bottom: 10px;
    }

    .approve-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
    }

    .media-section {
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid #eee;
    }

    .chore-card.completed .media-section {
      border-top-color: rgba(255, 255, 255, 0.3);
    }

    .chore-card.pending .media-section {
      border-top-color: rgba(255, 255, 255, 0.3);
    }

    /* Parent Review Media - Cleaner Display */
    .parent-review-media {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .review-photos {
      background: rgba(0,0,0,0.03);
      padding: 15px;
      border-radius: 12px;
    }

    .review-audio {
      background: rgba(0,0,0,0.03);
      padding: 15px;
      border-radius: 12px;
    }

    .review-section-label {
      font-size: 0.95rem;
      font-weight: 600;
      color: #555;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .parent-review-media .photo-gallery {
      margin-top: 10px;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 12px;
    }

    .parent-review-media .photo-thumb {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.2s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .parent-review-media .photo-thumb:hover {
      transform: scale(1.05);
    }

    .media-row {
      margin-bottom: 12px;
    }

    .upload-label {
      display: block;
      font-size: 0.85rem;
      color: #666;
      margin-bottom: 5px;
      font-weight: 600;
    }

    .chore-card.completed .upload-label {
      color: rgba(255, 255, 255, 0.9);
    }

    .chore-card.pending .upload-label {
      color: rgba(255, 255, 255, 0.9);
    }

    .camera-btn {
      width: 100%;
      padding: 10px;
      border: 2px dashed #ccc;
      border-radius: 8px;
      background: #f9f9f9;
      color: #333;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-weight: 600;
    }

    .camera-btn:hover {
      border-color: #667eea;
      background: #f0f0f0;
    }

    .chore-card.completed .camera-btn,
    .chore-card.pending .camera-btn {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.4);
      color: white;
    }

    .photo-gallery {
      display: flex;
      gap: 8px;
      margin-top: 10px;
      flex-wrap: wrap;
    }

    .photo-thumb {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .photo-thumb:hover {
      transform: scale(1.1);
    }

    .photo-container {
      position: relative;
      display: inline-block;
    }

    .photo-delete-btn {
      position: absolute;
      top: 2px;
      right: 2px;
      background: rgba(255, 0, 0, 0.9);
      color: white;
      border: none;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      cursor: pointer;
      font-size: 16px;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      padding: 0;
      transition: all 0.2s ease;
      box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .photo-delete-btn:hover {
      background: rgba(220, 0, 0, 1);
      transform: scale(1.1);
    }

    .audio-controls {
      display: flex;
      gap: 8px;
      align-items: center;
      margin-top: 8px;
    }

    .audio-btn {
      flex: 1;
      padding: 10px 15px;
      border: none;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .record-btn {
      background: #f44336;
      color: white;
    }

    .record-btn:hover {
      background: #d32f2f;
    }

    .record-btn.recording {
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

    .play-btn {
      background: #2196F3;
      color: white;
    }

    .play-btn:hover {
      background: #1976D2;
    }

    .delete-audio-btn {
      background: #FF9800;
      color: white;
      flex: 0 0 auto;
      min-width: 80px;
    }

    .delete-audio-btn:hover {
      background: #F57C00;
    }

    .audio-indicator {
      padding: 8px 12px;
      background: rgba(33, 150, 243, 0.1);
      border-radius: 8px;
      font-size: 0.8rem;
      color: #2196F3;
      text-align: center;
      margin-top: 8px;
    }

    .chore-card.completed .audio-indicator,
    .chore-card.pending .audio-indicator {
      background: rgba(255, 255, 255, 0.2);
      color: white;
    }

    /* Parent Note Badge - Eye-catching for kids */
    .parent-note-badge {
      background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
      border-radius: 15px;
      padding: 15px;
      margin: 15px 0;
      box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
      animation: gentlePulse 2s ease-in-out infinite;
    }

    .parent-note-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 10px;
      color: white;
      font-weight: bold;
      font-size: 1.1rem;
    }

    .parent-note-icon {
      font-size: 1.5rem;
      animation: bounce 1s ease-in-out infinite;
    }

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

    .parent-note-text {
      text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    .parent-note-play {
      background: white !important;
      color: #ee5a6f !important;
      font-weight: bold;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .parent-note-play:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }

    /* Chore Note Badge (Persistent Instructions) */
    .chore-note-badge {
      background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
      border-radius: 15px;
      padding: 15px;
      margin: 10px 0 15px 0;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
      animation: gentlePulse 2.5s ease-in-out infinite;
      border: 3px solid #fff;
    }

    .chore-note-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 5px;
      color: #333;
      font-weight: bold;
      font-size: 1.2rem;
    }

    .chore-note-icon {
      font-size: 2rem;
      animation: bounce 1.2s ease-in-out infinite;
    }

    .chore-note-title {
      text-shadow: 0 2px 4px rgba(0,0,0,0.1);
      letter-spacing: 1px;
    }

    .chore-note-subtitle {
      text-align: center;
      color: #555;
      font-size: 0.95rem;
      margin-bottom: 10px;
      font-weight: 500;
    }

    .chore-note-play {
      background: white !important;
      color: #ffb700 !important;
      font-weight: bold;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      font-size: 1.05rem;
    }

    .chore-note-play:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      background: #fffef5 !important;
    }

    /* Chore Note Section (Parent View) */
    .chore-note-section {
      margin: 10px 0;
      padding: 10px;
      background: rgba(255, 215, 0, 0.1);
      border-radius: 10px;
      border-left: 4px solid #ffd700;
    }

    .chore-note-label {
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 5px;
      font-weight: 600;
    }

    .upload-input {
      width: 100%;
      padding: 8px;
      border: 2px dashed #ccc;
      border-radius: 8px;
      font-size: 0.85rem;
      cursor: pointer;
      background: #f9f9f9;
      transition: all 0.3s ease;
    }

    .upload-input:hover {
      border-color: #667eea;
      background: #f0f0f0;
    }

    .chore-card.completed .upload-input {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.4);
      color: white;
    }

    .chore-card.pending .upload-input {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.4);
      color: white;
    }

    .preview-image {
      margin-top: 10px;
      max-width: 100%;
      border-radius: 8px;
      display: none;
    }

    .preview-image.show {
      display: block;
    }

    .stats {
      background: white;
      border-radius: 20px;
      padding: 20px;
      margin-top: 30px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .stats h2 {
      color: #667eea;
      margin-bottom: 15px;
    }

    .progress-bar {
      background: #eee;
      border-radius: 10px;
      height: 30px;
      overflow: hidden;
      margin: 10px 0;
    }

    .progress-fill {
      background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
      height: 100%;
      transition: width 0.5s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
    }

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

    .celebration {
      animation: bounce 0.5s ease;
    }

    .loading {
      text-align: center;
      padding: 40px;
      color: white;
      font-size: 1.2rem;
    }

    .error {
      background: #f44336;
      color: white;
      padding: 15px;
      border-radius: 8px;
      margin: 20px 0;
      text-align: center;
    }

    .success {
      background: #4caf50;
      color: white;
      padding: 15px;
      border-radius: 8px;
      margin: 20px 0;
      text-align: center;
    }

    /* Parent Mode Navigation Bar */
    .parent-nav-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
      color: white;
      z-index: 1000;
      display: none;
      box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    }

    .parent-nav-bar.active {
      display: block;
    }

    .parent-nav-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 12px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .parent-nav-badge {
      display: none;
    }

    .parent-nav-title {
      display: inline-block;
    }

    .parent-nav-count {
      background: rgba(255,255,255,0.3);
      padding: 4px 12px;
      border-radius: 15px;
      font-weight: bold;
      font-size: 0.85rem;
    }

    .parent-nav-buttons {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      align-items: center;
    }

    .parent-nav-btn {
      background: rgba(255,255,255,0.2);
      border: 2px solid rgba(255,255,255,0.4);
      color: white;
      padding: 8px 16px;
      border-radius: 20px;
      font-weight: 600;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      gap: 6px;
      min-height: 44px;
    }

    .parent-nav-btn:hover {
      background: rgba(255,255,255,0.3);
      border-color: rgba(255,255,255,0.6);
      transform: translateY(-2px);
    }

    .parent-nav-btn.active {
      background: white;
      color: #ff6b6b;
      border-color: white;
    }

    /* Adjust body padding when parent nav is active */
    body.parent-mode-active {
      padding-top: 70px;
    }

    /* Improved Parent Review Buttons */
    .parent-review-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 15px;
    }

    .parent-action-btn {
      width: 100%;
      padding: 18px 24px;
      border: none;
      border-radius: 15px;
      font-size: 1.1rem;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 60px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .parent-action-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

    .parent-action-btn:active {
      transform: translateY(0);
    }

    .btn-approve {
      background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
      color: white;
    }

    .btn-approve:hover {
      background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    }

    .btn-reject {
      background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
      color: white;
    }

    .btn-reject:hover {
      background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
    }

    @media (max-width: 768px) {
      body {
        padding: 10px;
      }

      body.parent-mode-active {
        padding-top: 80px;
      }

      .parent-nav-content {
        flex-direction: column;
        gap: 12px;
        padding: 10px;
      }

      .parent-nav-badge {
        width: 100%;
        justify-content: center;
      }

      .parent-nav-title {
        display: none;
      }

      .parent-nav-buttons {
        width: 100%;
        justify-content: center;
      }

      .parent-nav-btn {
        flex: 1;
        min-width: 60px;
        padding: 10px 8px;
        flex-direction: column;
        gap: 4px;
      }

      .parent-nav-label {
        font-size: 0.7rem;
      }

      header {
        margin-bottom: 15px;
        padding: 15px 0 8px;
      }

      header.scrolled {
        padding: 8px 0 5px;
      }

      h1 {
        font-size: 1.75rem;
        margin-bottom: 3px;
      }

      header.scrolled h1 {
        font-size: 1.4rem;
      }

      .date {
        font-size: 1rem;
      }

      .view-toggle {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 15px;
        padding: 0 5px;
      }

      .view-modes-left,
      .view-modes-right {
        gap: 8px;
        flex-wrap: wrap;
      }

      .toggle-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
      }

      .kid-btn {
        min-width: 180px;
        padding: 15px;
      }

      .kid-avatar {
        font-size: 2rem;
      }

      .kid-name {
        font-size: 1rem;
      }

      .kid-chore-count {
        font-size: 0.8rem;
      }

      .chore-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      }

      .week-grid-container {
        margin-left: -15px;
        margin-right: -15px;
        padding: 0 15px;
      }

      .week-grid {
        font-size: 0.8rem;
        gap: 5px;
        grid-template-columns: minmax(100px, auto) repeat(7, minmax(45px, 1fr));
        min-width: 550px;
      }

      .day-header {
        padding: 8px 5px;
        font-size: 0.7rem;
      }

      .chore-row-label {
        padding: 8px 5px;
        font-size: 0.75rem;
      }

      .day-cell {
        padding: 10px 3px;
        font-size: 1rem;
        min-height: 40px;
      }

      .week-header {
        flex-direction: column;
        gap: 15px;
      }

      .week-summary {
        justify-content: center;
      }
    }

    /* ==========================================================================
       Parent Mode Active - Subtle Visual Indicator
       ========================================================================== */

    /* When parent mode is active, add a subtle purple border and slight background tint */
    body.parent-mode-active {
      position: relative;
    }

    /* Add a subtle border around the entire viewport */
    body.parent-mode-active::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border: 4px solid rgba(255, 107, 107, 0.6);
      pointer-events: none;
      z-index: 9999;
      animation: parentModePulse 2s ease-in-out infinite;
    }

    /* Add a very subtle red/purple tint overlay */
    body.parent-mode-active::after {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 107, 107, 0.05);
      pointer-events: none;
      z-index: 9998;
    }

    @keyframes parentModePulse {
      0%, 100% {
        opacity: 0.6;
      }
      50% {
        opacity: 0.9;
      }
    }

    /* Make the parent mode button more prominent when active */
    body.parent-mode-active #parentModeBtn {
      box-shadow: 0 0 20px rgba(255, 107, 107, 0.6);
      animation: parentModeBtnPulse 2s ease-in-out infinite;
    }

    @keyframes parentModeBtnPulse {
      0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.6);
      }
      50% {
        box-shadow: 0 0 30px rgba(255, 107, 107, 0.9);
      }
    }

    /* Version Footer */
    .version-footer {
      text-align: center;
      padding: 20px;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.75rem;
      margin-top: 40px;
    }

    .version-footer:hover {
      color: rgba(255, 255, 255, 0.9);
    }

    @media (max-width: 768px) {
      .version-footer {
        font-size: 0.7rem;
        padding: 15px;
        margin-top: 30px;
      }
    }

  </style>
