/* CSS Variables */
:root {
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --primary-light: rgba(99, 102, 241, 0.15);
  --primary-glow: rgba(99, 102, 241, 0.4);
  --secondary: #64748b;
  --secondary-hover: #475569;
  --success: #10b981;
  --success-light: rgba(16, 185, 129, 0.15);
  --success-glow: rgba(16, 185, 129, 0.4);
  --error: #ef4444;
  --error-light: rgba(239, 68, 68, 0.15);
  --warning: #f59e0b;
  --background: #0a0a0f;
  --background-secondary: #12121a;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(255, 255, 255, 0.08);
  --shadow-color: rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(139, 92, 246, 0.1), transparent),
    radial-gradient(ellipse 50% 30% at 0% 100%, rgba(16, 185, 129, 0.08), transparent);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.floating-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -200px;
  left: 20%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: #8b5cf6;
  bottom: -150px;
  right: 10%;
  animation-delay: -7s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: var(--success);
  top: 50%;
  left: -100px;
  animation-delay: -14s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-30px, 50px) scale(0.95);
  }
  75% {
    transform: translate(-50px, -20px) scale(1.05);
  }
}

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

/* Header */
.header {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.logo-icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px var(--primary-glow);
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: white;
}

.logo h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.logo h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, #a855f7 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Stats Bar */
.stats-bar {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 60px;
  backdrop-filter: blur(20px);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Main Content */
.main-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

/* Glass Card */
.glass-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: var(--transition);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.glass-card:hover .card-glow {
  opacity: 1;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, var(--primary-glow), transparent);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.success-glow {
  background: radial-gradient(ellipse 60% 40% at 50% 0%, var(--success-glow), transparent);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.card-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.card-icon-wrapper.camera-icon {
  background: rgba(139, 92, 246, 0.15);
}

.card-icon-wrapper.camera-icon .card-icon {
  color: #a78bfa;
}

.card-icon-wrapper.success-icon {
  background: var(--success-light);
}

.card-icon-wrapper.success-icon .card-icon {
  color: var(--success);
}

.card-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.card-title-group {
  flex: 1;
}

.card-title-group h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.125rem;
}

.card-subtitle {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.card-subtitle.success-text {
  color: var(--success);
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Upload Area */
.upload-area {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--surface);
}

.upload-area:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.upload-area:hover .upload-icon-wrapper {
  transform: scale(1.1);
}

.upload-area:hover .upload-pulse {
  animation: uploadPulse 1.5s ease-in-out infinite;
}

.upload-area.dragover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: scale(1.02);
}

.upload-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light), rgba(139, 92, 246, 0.1));
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.upload-icon {
  width: 36px;
  height: 36px;
  color: var(--primary);
}

.upload-pulse {
  position: absolute;
  inset: -4px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0;
}

@keyframes uploadPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.upload-area p {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.upload-hint {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1rem;
}

.upload-formats {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.format-tag {
  padding: 0.25rem 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Preview Container */
.preview-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--background-secondary);
}

.preview-container img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
}

.preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0.75rem;
  opacity: 0;
  transition: var(--transition);
}

.preview-container:hover .preview-overlay {
  opacity: 1;
}

.btn-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.9);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.btn-icon svg {
  width: 16px;
  height: 16px;
}

.btn-icon:hover {
  background: var(--error);
  transform: scale(1.1);
}

/* Camera */
.camera-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--background-secondary);
  aspect-ratio: 4/3;
}

.camera-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.camera-frame {
  position: absolute;
  inset: 20px;
  pointer-events: none;
}

.frame-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--primary);
  border-style: solid;
  border-width: 0;
}

.frame-corner.tl {
  top: 0;
  left: 0;
  border-top-width: 3px;
  border-left-width: 3px;
  border-radius: 4px 0 0 0;
}
.frame-corner.tr {
  top: 0;
  right: 0;
  border-top-width: 3px;
  border-right-width: 3px;
  border-radius: 0 4px 0 0;
}
.frame-corner.bl {
  bottom: 0;
  left: 0;
  border-bottom-width: 3px;
  border-left-width: 3px;
  border-radius: 0 0 0 4px;
}
.frame-corner.br {
  bottom: 0;
  right: 0;
  border-bottom-width: 3px;
  border-right-width: 3px;
  border-radius: 0 0 4px 0;
}

.camera-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: var(--background-secondary);
}

.camera-icon-animated {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.camera-icon-animated svg {
  width: 40px;
  height: 40px;
  color: var(--text-muted);
  opacity: 0.6;
}

.camera-rings {
  position: absolute;
  inset: 0;
}

.ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  opacity: 0.2;
}

.ring-1 {
  animation: ringPulse 3s ease-out infinite;
}
.ring-2 {
  animation: ringPulse 3s ease-out 1.5s infinite;
}

@keyframes ringPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.camera-placeholder p {
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.camera-placeholder span {
  font-size: 0.8125rem;
}

.camera-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  min-height: 52px;
  overflow: hidden;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  color: white;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

.btn-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn-glow:hover::after {
  opacity: 1;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: none;
}

.btn-primary:hover .btn-shine {
  animation: shine 0.6s ease;
}

@keyframes shine {
  to {
    left: 100%;
  }
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--surface-hover);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-outline:hover:not(:disabled) {
  background: var(--surface);
  color: var(--text-primary);
  border-color: var(--primary);
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

/* Result Card */
.result-card {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.5s ease forwards;
}

.result-card[hidden] {
  display: none;
}

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

.result-header {
  position: relative;
}

.result-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  background: var(--success-light);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--success);
}

.result-badge svg {
  width: 14px;
  height: 14px;
}

.result-image-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--background-secondary);
}

.result-image-container img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  display: block;
}

.result-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--success), transparent);
  box-shadow: 0 0 20px var(--success);
  animation: scan 2s ease-in-out infinite;
}

@keyframes scan {
  0%,
  100% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 0;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer strong {
  color: var(--text-secondary);
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.loading-overlay[hidden] {
  display: none;
}

.loading-content {
  text-align: center;
  padding: 2rem;
}

.ai-loader {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 50%;
}

.loader-ring:nth-child(1) {
  border-top-color: var(--primary);
  animation: spin 1.5s linear infinite;
}

.loader-ring:nth-child(2) {
  inset: 10px;
  border-right-color: #8b5cf6;
  animation: spin 2s linear infinite reverse;
}

.loader-ring:nth-child(3) {
  inset: 20px;
  border-bottom-color: var(--success);
  animation: spin 2.5s linear infinite;
}

.loader-core {
  position: absolute;
  inset: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  border-radius: 50%;
  animation: corePulse 1.5s ease-in-out infinite;
}

.loader-core svg {
  width: 24px;
  height: 24px;
  color: white;
}

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

@keyframes corePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px var(--primary-glow);
  }
  50% {
    transform: scale(0.9);
    box-shadow: 0 0 40px var(--primary-glow);
  }
}

.loading-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.loading-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.loading-progress {
  width: 200px;
  height: 4px;
  background: var(--surface);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.progress-bar {
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #8b5cf6);
  border-radius: 2px;
  animation: progress 1.5s ease-in-out infinite;
}

@keyframes progress {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(400%);
  }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--background-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 40px var(--shadow-color);
  z-index: 1001;
  animation: toastSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast[hidden] {
  display: none;
}

@keyframes toastSlideUp {
  from {
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

.error-toast {
  border-left: 3px solid var(--error);
}

.toast-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--error-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.toast-icon svg {
  width: 20px;
  height: 20px;
  color: var(--error);
}

.toast-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.toast-content strong {
  font-size: 0.875rem;
  color: var(--text-primary);
}

.toast-content span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.toast-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition-fast);
  margin-left: auto;
}

.toast-close svg {
  width: 16px;
  height: 16px;
}

.toast-close:hover {
  background: var(--surface);
  color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem 1rem;
  }

  .header {
    margin-bottom: 2rem;
  }

  .logo {
    flex-direction: column;
    gap: 0.75rem;
  }

  .logo h1 {
    font-size: 1.75rem;
  }

  .logo-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .subtitle {
    font-size: 1rem;
  }

  .stats-bar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 1.5rem;
    gap: 1rem;
    border-radius: var(--radius);
  }

  .stat-divider {
    display: none;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .camera-controls,
  .result-actions {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 1rem;
  }

  .toast {
    left: 1rem;
    right: 1rem;
    transform: none;
  }

  @keyframes toastSlideUp {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
}

@media (max-width: 480px) {
  .upload-area {
    padding: 2rem 1.5rem;
  }

  .upload-icon-wrapper {
    width: 64px;
    height: 64px;
  }

  .upload-icon {
    width: 28px;
    height: 28px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States */
.btn:focus-visible,
.upload-area:focus-visible,
.toast-close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Hide elements */
[hidden] {
  display: none !important;
}
