#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

body {
  background: linear-gradient(135deg, #232e36 0%, #2c3a42 100%);
  color: #cfd8dc;
  min-height: 100vh;
}

.header {
  animation: fadeIn 1s ease-out;
}

.page-title {
  background: linear-gradient(135deg, #f7c873, #e05a47);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  color: #b0bec5;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.stylish-divider {
  height: 3px;
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(
    to right,
    transparent 0%,
    #f4f4f4 20%,
    #f4f4f4 80%,
    transparent 100%
  );
  border-radius: 2px;
  opacity: 0.3;
  animation: fadeIn 1s ease-out;
}

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

.feedback-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .feedback-layout {
    grid-template-columns: 1fr;
  }
}

.feedback-form-container,
.feedback-list-container {
  background: rgba(44, 58, 66, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(58, 92, 92, 0.18);
  border-radius: 12px;
  padding: 2rem;
  animation: fadeIn 1s ease-out;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 750px;
  display: flex;
  flex-direction: column;
}

.feedback-form-container:hover,
.feedback-list-container:hover {
  border-color: #4a6a6a;
  box-shadow: 0 10px 30px rgba(35, 46, 54, 0.3);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #f4f4f4;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title i {
  color: #f7c873;
}

.notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 350px;
}

.notification {
  background: rgba(44, 58, 66, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(58, 92, 92, 0.3);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 24px rgba(35, 46, 54, 0.4);
  animation: notificationSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 300px;
  transition: all 0.3s ease;
}

.notification:hover {
  border-color: rgba(58, 92, 92, 0.5);
  box-shadow: 0 12px 32px rgba(35, 46, 54, 0.5);
}

.notification.success {
  border-left: 3px solid #34d399;
}

.notification.error {
  border-left: 3px solid #f87171;
}

.notification-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
}

.notification.success .notification-icon {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
}

.notification.error .notification-icon {
  background: rgba(248, 113, 113, 0.15);
  color: #f87171;
}

.notification-content {
  flex: 1;
  color: #e2e8f0;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
}

.notification-close {
  flex-shrink: 0;
  background: rgba(58, 92, 92, 0.2);
  border: 1px solid rgba(58, 92, 92, 0.3);
  color: #94a3b8;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.notification-close:hover {
  background: rgba(58, 92, 92, 0.4);
  border-color: rgba(58, 92, 92, 0.5);
  color: #e2e8f0;
}

.notification-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  animation: progress 3s linear forwards;
}

.notification.success .notification-progress {
  color: #34d399;
}

.notification.error .notification-progress {
  color: #f87171;
}

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

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

@keyframes progress {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: #e2e8f0;
  font-size: 0.9rem;
}

.form-input,
.form-textarea {
  background: rgba(44, 58, 66, 0.65);
  backdrop-filter: blur(6px);
  border: 1.5px solid #3a5c5c;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(58, 92, 92, 0.15);
  box-shadow: 0 2px 12px 0 rgba(44, 58, 66, 0.10);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  width: 100%;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #f7c873;
  box-shadow: 0 0 0 3px rgba(247, 200, 115, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.char-count {
  text-align: right;
  font-size: 0.8rem;
  color: #b0bec5;
  margin-top: 0.25rem;
}

.tag-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
  max-height: 120px;
  overflow-y: auto;
  padding: 0.5rem;
  background: rgba(44, 58, 66, 0.3);
  border: 1px solid rgba(58, 92, 92, 0.3);
  border-radius: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(58, 92, 92, 0.5) rgba(44, 58, 66, 0.3);
}

.tag-suggestions::-webkit-scrollbar {
  width: 6px;
}

.tag-suggestions::-webkit-scrollbar-track {
  background: rgba(44, 58, 66, 0.3);
  border-radius: 3px;
}

.tag-suggestions::-webkit-scrollbar-thumb {
  background: rgba(58, 92, 92, 0.5);
  border-radius: 3px;
}

.tag-suggestions::-webkit-scrollbar-thumb:hover {
  background: rgba(58, 92, 92, 0.7);
}

.tag-suggestion {
  background: rgba(58, 92, 92, 0.3);
  border: 1px solid rgba(58, 92, 92, 0.4);
  color: #f4f4f4;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tag-suggestion:hover {
  background: rgba(247, 200, 115, 0.2);
  border-color: #f7c873;
  color: #f7c873;
  transform: translateY(-2px);
}

.submit-btn {
  background: linear-gradient(135deg, #3a5c5c 0%, #4a6a6a 100%);
  color: #f4f4f4;
  border: 1px solid #3a5c5c;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  background: #e05a47;
  color: #fff;
  border-color: #e05a47;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224, 90, 71, 0.3);
}

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

.filter-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .filter-bar {
    gap: 0.4rem;
  }
  
  .filter-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    flex: 1 1 auto;
    min-width: calc(50% - 0.2rem);
  }
}

.filter-btn {
  background: rgba(44, 58, 66, 0.4);
  border: 1px solid rgba(58, 92, 92, 0.3);
  color: #e2e8f0;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: rgba(58, 92, 92, 0.5);
  border-color: #4a6a6a;
}

.filter-btn.active {
  background: rgba(247, 200, 115, 0.2);
  border-color: #f7c873;
  color: #f7c873;
}

.feedback-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  overflow-y: auto;
  padding-right: 0.5rem;
  min-height: 0;
}

.no-feedback {
  text-align: center;
  padding: 3rem 1rem;
  color: #b0bec5;
}

.no-feedback i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.feedback-item {
  background: rgba(35, 46, 54, 0.4);
  border: 1px solid rgba(58, 92, 92, 0.2);
  border-radius: 8px;
  padding: 1.25rem;
  transition: all 0.3s ease;
  animation: fadeIn 0.5s ease-out;
}

.feedback-item:hover {
  border-color: #4a6a6a;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(35, 46, 54, 0.2);
}

.feedback-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feedback-type-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.type-general {
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
}

.type-bug {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

.type-feature {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.type-improvement {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
}

.type-security {
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #a78bfa;
}

.feedback-date {
  font-size: 0.8rem;
  color: #b0bec5;
}

.feedback-content {
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.feedback-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feedback-tag {
  background: rgba(58, 92, 92, 0.3);
  border: 1px solid rgba(58, 92, 92, 0.4);
  color: #f4f4f4;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.feedback-tag i {
  font-size: 0.7rem;
  color: #f7c873;
}

.feedback-list::-webkit-scrollbar {
  width: 6px;
}

.feedback-list::-webkit-scrollbar-track {
  background: rgba(44, 58, 66, 0.3);
  border-radius: 3px;
}

.feedback-list::-webkit-scrollbar-thumb {
  background: rgba(58, 92, 92, 0.5);
  border-radius: 3px;
}

.feedback-list::-webkit-scrollbar-thumb:hover {
  background: rgba(58, 92, 92, 0.7);
}

@media (max-width: 640px) {
  .feedback-form-container,
  .feedback-list-container {
    padding: 1.5rem;
  }
  
  .section-title {
    font-size: 1.25rem;
  }
  
  .filter-bar {
    flex-direction: column;
  }
  
  .filter-btn {
    width: 100%;
  }
}

.admin-badge {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.feedback-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.feedback-status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.3s ease;
}

.status-pending {
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
}

.status-awaiting_review {
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
}

.status-done {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.status-refused {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

.admin-notice {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #fbbf24;
  display: none;
  gap: 0.5rem;
  align-items: flex-start;
}

.admin-notice:not(:empty) {
  display: flex;
}

.admin-notice strong {
  color: #fbbf24;
  font-weight: 600;
}

.admin-controls {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(58, 92, 92, 0.3);
  flex-wrap: wrap;
}

.admin-action-form {
  display: inline-flex;
  margin: 0;
}

.admin-btn {
  background: rgba(44, 58, 66, 0.4);
  border: 1px solid rgba(58, 92, 92, 0.4);
  color: #e2e8f0;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  min-width: 32px;
  height: 32px;
}

.admin-btn:hover {
  background: rgba(58, 92, 92, 0.6);
  border-color: #4a6a6a;
}

.btn-done:hover {
  background: rgba(16, 185, 129, 0.3);
  border-color: #34d399;
  color: #34d399;
}

.btn-refused:hover {
  background: rgba(239, 68, 68, 0.3);
  border-color: #f87171;
  color: #f87171;
}

.btn-delete:hover {
  background: rgba(239, 68, 68, 0.3);
  border-color: #f87171;
  color: #f87171;
}

.btn-notice:hover {
  background: rgba(245, 158, 11, 0.3);
  border-color: #fbbf24;
  color: #fbbf24;
}

.btn-pending:hover {
  background: rgba(59, 130, 246, 0.3);
  border-color: #60a5fa;
  color: #60a5fa;
}

.btn-awaiting_review:hover {
  background: rgba(59, 130, 246, 0.3);
  border-color: #60a5fa;
  color: #60a5fa;
}

.btn-remove:hover {
  background: rgba(148, 163, 184, 0.3);
  border-color: #94a3b8;
  color: #94a3b8;
}

.btn-awaiting_review:hover {
  background: rgba(59, 130, 246, 0.3);
  border-color: #60a5fa;
  color: #60a5fa;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.modal-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal.show {
  opacity: 1;
}

.modal-content {
  background: rgba(35, 46, 54, 0.95);
  border: 1px solid rgba(58, 92, 92, 0.4);
  border-radius: 12px;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: scale(0.95) translateY(-10px);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-content-small {
  max-width: 400px;
}

.modal-body {
  padding: 1rem 0;
  color: #e2e8f0;
  line-height: 1.6;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(58, 92, 92, 0.3);
}

.modal-header h3 {
  margin: 0;
  color: #f4f4f4;
  font-size: 1.25rem;
}

.close-modal {
  background: none;
  border: none;
  color: #b0bec5;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0.25rem;
}

.close-modal:hover {
  color: #e05a47;
}

.notice-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.cancel-btn {
  background: rgba(44, 58, 66, 0.4);
  border: 1px solid rgba(58, 92, 92, 0.4);
  color: #e2e8f0;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}

.cancel-btn:hover {
  background: rgba(58, 92, 92, 0.6);
  border-color: #4a6a6a;
}

.delete-confirm-btn {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.delete-confirm-btn:hover {
  background: rgba(239, 68, 68, 0.3);
  border-color: #f87171;
  color: #f87171;
}