/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(120deg, #667eea 0%, #764ba2 40%, #f093fb 100%, #ffecd2 120%);
    min-height: 100vh;
    color: #2d3748;
    line-height: 1.6;
    font-weight: 400;
    display: flex;
    flex-direction: column;
}

.ml-value a {
  color: #f1c40f;  /* nice yellow */
  font-weight: bold;
  text-decoration: none;
}

.ml-value a:hover {
  color: #e67e22; /* darker orange on hover */
  text-decoration: underline;
}


/* Header */
.header {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

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

.header-content {
    position: relative;
    z-index: 1;
}

.header-content h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.header-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Main layout */
#main-layout {
    flex: 1;
    display: grid;
    grid-template-columns: 7fr 0fr;
    align-items: flex-start;
    max-width: 1800px;
    min-width: 0;
    margin: 30px auto;
    padding: 0 15px;
    box-shadow: 0 0px 48px 8px rgba(102, 126, 234, 0.10), 0 1.5px 8px 0 rgba(0,0,0,0.04);
    border-radius: 32px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
}

#main-content {
    min-width: 320px;
    width: auto;
    max-width: 100%;
}

#right-column {
    min-width: 180px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 0px;
}

#main-content-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
    padding: 25px;
}

.upload-panel, .results-panel {
    flex: 1 1 0;
    min-width: 600px;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 0;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
}

.footer-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Responsive design */
@media (max-width: 1100px) {
    #main-layout {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 10px;
        padding: 0;
    }
    
    #main-content-inner {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    #right-column {
        order: 3;
        text-align: center;
        align-items: center;
        min-width: auto;
        max-width: none;
        width: 100%;
        padding: 10px;
    }
    
    #main-content {
        order: 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .header-content p {
        font-size: 1.1rem;
    }
    
    #main-layout {
        margin: 20px;
        border-radius: 24px;
    }
    
    #main-content-inner {
        padding: 25px;
        gap: 25px;
    }
    
    .upload-panel, .results-panel {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    #main-layout {
        margin: 15px;
        border-radius: 20px;
    }
    
    #main-content-inner {
        padding: 20px;
        gap: 20px;
    }
}

/* Panels */
.panel {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 32px;
    padding: 30px 25px;
    box-shadow: 
        0 24px 60px rgba(0,0,0,0.12),
        0 0 0 1.5px rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(24px);
    border: 1.5px solid rgba(255, 255, 255, 0.32);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.panel-header {
    margin-bottom: 20px;
    text-align: center;
}

.panel-header h2 {
    color: #1a202c;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.panel-description {
    color: #718096;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Upload area */
.upload-area {
    border: 2px dashed #cbd5e0;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.upload-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s;
}

.upload-area:hover::before {
    left: 100%;
}

.upload-area:hover {
    border-color: #667eea;
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
}

.upload-area.has-image {
    border-style: solid;
    border-color: #48bb78;
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border-width: 2px;
}

.upload-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

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

.upload-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.upload-hint {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

.upload-area img {
    max-width: 520px;
    max-height: 520px;
    border-radius: 20px;
    margin-top: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.upload-area img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* Upload controls */
.upload-controls {
    display: flex;
    gap: 25px;
    margin-bottom: 15px;
}

/* Advanced Options */
.advanced-options {
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    transition: all 0.3s ease;
}

.advanced-options:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.advanced-summary {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: #2d3748;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    transition: all 0.3s ease;
    list-style: none;
}

.advanced-summary:hover {
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
}

.advanced-summary::-webkit-details-marker {
    display: none;
}

.advanced-icon {
    font-size: 1.3rem;
    opacity: 0.7;
}

.advanced-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.advanced-options[open] .advanced-summary {
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
}

/* Threshold control */
.threshold-control {
    padding: 30px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
}

.threshold-label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.threshold-input-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.threshold-slider {
    flex: 1;
    height: 12px;
    border-radius: 8px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
}

.threshold-slider:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.threshold-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.threshold-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.threshold-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.threshold-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.threshold-input {
    width: 80px;
    height: 45px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    background: white;
    text-align: center;
    transition: all 0.3s ease;
}

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

.threshold-input::-webkit-inner-spin-button,
.threshold-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.threshold-input[type=number] {
    -moz-appearance: textfield;
}

.threshold-unit {
    font-weight: 600;
    color: #718096;
    font-size: 1.1rem;
}

.threshold-hint {
    font-size: 1rem;
    color: #718096;
    font-style: italic;
    font-weight: 500;
}

.btn {
    flex: 1;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 20px 28px;
    border-radius: 18px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

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

.btn:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.btn-secondary {
    background: linear-gradient(45deg, #718096, #4a5568);
}

.btn-icon {
    font-size: 1.3rem;
}

.btn-text {
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Status messages */
.status {
    text-align: center;
    padding: 12px;
    margin: 10px 0;
    border-radius: 18px;
    font-weight: 600;
    font-size: 1.15rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.status.loading {
    background: linear-gradient(135deg, #ebf8ff 0%, #bee3f8 100%);
    color: #2b6cb0;
    border-color: #90cdf4;
    animation: pulse 2s infinite;
}

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

.status.success {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    color: #2f855a;
    border-color: #9ae6b4;
}

.status.error {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    color: #c53030;
    border-color: #fc8181;
}

/* Results section */
.results-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #718096;
    font-weight: 600;
    margin-bottom: 10px;
}

.results-container {
    max-height: 800px;
    overflow-y: auto;
    padding-right: 20px;
}

.results-container::-webkit-scrollbar {
    width: 12px;
}

.results-container::-webkit-scrollbar-track {
    background: #f7fafc;
    border-radius: 8px;
}

.results-container::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.results-container::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

/* Result items */
.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.result-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.result-item:hover::before {
    transform: scaleY(1);
}

.result-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
}

.result-info {
    display: flex;
    align-items: center;
    flex: 1;
    padding-left: 20px;
}

.result-details {
    flex: 1;
}

.result-code {
    font-weight: 700;
    color: #1a202c;
    font-size: 1.4rem;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.result-page {
    font-weight: 600;
    color: #718096;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.similarity {
    color: #667eea;
    font-weight: 700;
    padding: 10px 20px;
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    border-radius: 30px;
    font-size: 1.1rem;
    border: 2px solid #cbd5e0;
    display: inline-block;
    transition: all 0.3s ease;
}

.result-item:hover .similarity {
    background: linear-gradient(135deg, #e8f0ff 0%, #d8e8ff 100%);
    border-color: #667eea;
    color: #4c51bf;
}

/* Placeholder */
.placeholder {
    text-align: center;
    padding: 100px 30px;
    color: #718096;
}

.placeholder-icon {
    font-size: 6rem;
    margin-bottom: 10px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.placeholder:hover .placeholder-icon {
    opacity: 0.6;
    transform: scale(1.05);
}

.placeholder-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.placeholder-subtitle {
    font-size: 1.2rem;
    opacity: 0.7;
    line-height: 1.6;
    font-weight: 500;
}

/* Slider group */
.slider-group {
    display: flex;
    align-items: center;
    gap: 1.2em;
    margin: 1.2em 0;
    flex-wrap: wrap;
}
.slider-group label {
    min-width: 150px;
    font-weight: 500;
    flex: 0 0 auto;
}
.slider-group input[type="range"] {
    flex: 2 1 200px;
    min-width: 120px;
    max-width: 350px;
    margin: 0 0.5em;
    accent-color: #6c63ff;
    height: 4px;
}
.slider-group input[type="number"] {
    width: 3.5em;
    padding: 0.25em 0.5em;
    border-radius: 4px;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 1em;
}
.slider-group span {
    min-width: 2.5em;
    text-align: right;
    font-weight: 600;
    color: #6c63ff;
    font-size: 1.05em;
}
@media (max-width: 600px) {
    .slider-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5em;
    }
    .slider-group label {
        min-width: 0;
    }
    .slider-group input[type="range"] {
        min-width: 0;
        max-width: 100%;
    }
    .slider-group span {
        min-width: 0;
    }
}

.cluster-control {
    padding: 30px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
    margin: 1.2em 0;
}

.cluster-label, .cluster-label span, .cluster-input-group, .cluster-slider, .cluster-input, .cluster-hint {
    all: unset;
}

/* Remove custom cluster slider styles to match threshold slider exactly */
.cluster-control {
    padding: 30px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
    margin: 1.2em 0;
}
/* Use threshold-label, threshold-input-group, threshold-slider, threshold-input, threshold-hint for cluster slider */
/* Remove .cluster-label, .cluster-label span, .cluster-input-group, .cluster-slider, .cluster-input, .cluster-hint */
.cluster-label, .cluster-label span, .cluster-input-group, .cluster-slider, .cluster-input, .cluster-hint {
    all: unset;
}

/* Highlight for most likely match */
.most-likely.highlight-pop {
  background: linear-gradient(135deg, #fffbe6 80%, #fffde4 100%);
  border: 2px solid #ffe066;
  border-radius: 20px;
  box-shadow: 0 6px 24px #ffd70022, 0 2px 8px #0001;
  padding: 20px 20px 15px 20px;
  margin-bottom: 10px;
  transition: box-shadow 0.2s, border 0.2s;
  position: relative;
}
.most-likely-header {
  font-size: 1.6em;
  font-weight: 700;
  color: #b8860b;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.most-likely-crown {
  font-size: 1.6em;
  margin-right: 8px;
  vertical-align: middle;
  filter: drop-shadow(0 2px 4px #ffd70088);
}
.most-likely-flex {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.most-likely-thumb-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.most-likely-thumbnail-large {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  border: 3px solid #ffd700;
  box-shadow: 0 6px 24px #ffd70033, 0 2px 8px #0001;
  background: #fff;
  transition: box-shadow 0.2s, border 0.2s;
}
.most-likely-thumbnail-large:hover {
  box-shadow: 0 0 0 4px #ffe06688, 0 6px 24px #ffd70033, 0 2px 8px #0001;
  border-color: #ffec99;
}
.most-likely-details-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}
.most-likely-detail-row {
  display: flex;
  gap: 15px;
  font-size: 1.2em;
  align-items: center;
  line-height: 1.5;
}
.ml-label {
  font-weight: 600;
  color: #b8860b;
  min-width: 120px;
  display: inline-block;
  letter-spacing: 0.2px;
}
.ml-value {
  color: #222;
  font-weight: 400;
  word-break: break-word;
}
@media (max-width: 600px) {
  .most-likely-flex {
    flex-direction: column;
    gap: 25px;
  }
  .most-likely-thumbnail-large {
    width: 120px;
    height: 120px;
  }
  .most-likely-header {
    font-size: 1.3em;
  }
}

/* Expandable results styles */
.expandable-results {
  border-radius: 12px;
  background: #f7f7fa;
  box-shadow: 0 1px 4px #0001;
  padding: 15px 20px 12px 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.expand-btn {
  background: #ffd700;
  color: #333;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 15px;
  transition: background 0.2s;
}
.expand-btn:hover {
  background: #ffe066;
}
.results-list {
  margin-top: 12px;
}

#support-me {
  margin-top: 25px;
  margin-bottom: 25px;
  z-index: 10;
}
.bmc-button {
  display: inline-flex;
  align-items: center;
  background: #ffdd00;
  border-radius: 12px;
  padding: 15px 32px;
  text-decoration: none;
  box-shadow: 0 4px 18px #ffd70044, 0 2px 8px #0001;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  border: 2px solid #ffb347;
  font-size: 1.2em;
  position: relative;
  outline: none;
}
.bmc-button:hover, .bmc-button:focus {
  background: #ffe066;
  box-shadow: 0 8px 32px #ffb34755, 0 2px 8px #0001;
  transform: scale(1.06) translateY(-2px);
}
.bmc-button img {
  filter: drop-shadow(0 2px 4px #ffd70088);
}

.bmc-button.metallic-blue {
  background: linear-gradient(120deg, #3a8dde 0%, #1e3c72 100%);
  border: 2.5px solid #5ec6fa;
  color: #fff;
  box-shadow: 0 4px 18px #3a8dde55, 0 2px 8px #0002;
  position: relative;
  overflow: hidden;
}
.bmc-button.metallic-blue span {
  color: #fff;
}
.bmc-button.metallic-blue::before {
  content: '';
  position: absolute;
  left: -60%;
  top: -50%;
  width: 220%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.38) 50%, rgba(255,255,255,0.12) 100%);
  transform: skewX(-24deg);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0.7;
  z-index: 1;
  animation: shine-move 2.5s linear infinite;
}
@keyframes shine-move {
  0% { left: -60%; }
  100% { left: 100%; }
}
.bmc-button.metallic-blue:hover, .bmc-button.metallic-blue:focus {
  background: linear-gradient(120deg, #5ec6fa 0%, #1e3c72 100%);
  box-shadow: 0 8px 32px #3a8dde88, 0 2px 8px #0002;
  border-color: #aee6ff;
}
.bmc-button.metallic-blue img {
  filter: drop-shadow(0 2px 4px #5ec6fa88);
} 
