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

:root {
    --primary: #0066ff;
    --primary-light: #3385ff;
    --primary-dark: #0052cc;
    --secondary: #00d4ff;
    --accent: #7b61ff;
    --dark: #0a1628;
    --text: #334155;
    --light: #ffffff;
    --bg: #f0f4ff;
    --bg-card: #ffffff;
    --success: #00c853;
    --warning: #ffab00;
    --danger: #ff5252;
    --border: #c5d5f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: 
        radial-gradient(ellipse at top left, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #f0f4ff 0%, #e6eeff 100%);
    min-height: 100vh;
    color: var(--text);
    position: relative;
    overflow-x: hidden;
}

/* 科技感网格背景 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* 装饰性光效线条 */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    pointer-events: none;
    z-index: 0;
}

/* 漂浮的核桃花生背景元素 */
.floating-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-item {
    position: absolute;
    font-size: 2rem;
    opacity: 1;
    user-select: none;
    animation: float-item 20s ease-in-out infinite;
    transition: transform 0.3s ease-out;
}

.floating-item:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.floating-item:nth-child(2) { top: 20%; left: 15%; animation-delay: -5s; font-size: 2.5rem; }
.floating-item:nth-child(3) { top: 15%; left: 25%; animation-delay: -10s; }
.floating-item:nth-child(4) { top: 30%; left: 35%; animation-delay: -15s; font-size: 3rem; }
.floating-item:nth-child(5) { top: 5%; left: 45%; animation-delay: -20s; }
.floating-item:nth-child(6) { top: 25%; left: 55%; animation-delay: -8s; font-size: 2.2rem; }
.floating-item:nth-child(7) { top: 10%; left: 65%; animation-delay: -12s; }
.floating-item:nth-child(8) { top: 35%; left: 75%; animation-delay: -18s; font-size: 2.8rem; }
.floating-item:nth-child(9) { top: 8%; left: 85%; animation-delay: -6s; }
.floating-item:nth-child(10) { top: 45%; left: 90%; animation-delay: -14s; }

.floating-item:nth-child(11) { bottom: 15%; left: 10%; animation-delay: -3s; font-size: 2.3rem; }
.floating-item:nth-child(12) { bottom: 25%; left: 20%; animation-delay: -11s; }
.floating-item:nth-child(13) { bottom: 10%; left: 30%; animation-delay: -17s; font-size: 2.6rem; }
.floating-item:nth-child(14) { bottom: 35%; left: 40%; animation-delay: -7s; }
.floating-item:nth-child(15) { bottom: 5%; left: 50%; animation-delay: -13s; font-size: 3rem; }
.floating-item:nth-child(16) { bottom: 20%; left: 60%; animation-delay: -9s; }
.floating-item:nth-child(17) { bottom: 12%; left: 70%; animation-delay: -16s; font-size: 2.4rem; }
.floating-item:nth-child(18) { bottom: 30%; left: 80%; animation-delay: -4s; }
.floating-item:nth-child(19) { bottom: 8%; left: 90%; animation-delay: -19s; font-size: 2.7rem; }
.floating-item:nth-child(20) { bottom: 40%; left: 95%; animation-delay: -2s; }

@keyframes float-item {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.08;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg) scale(1.05);
        opacity: 0.12;
    }
    50% { 
        transform: translateY(-10px) rotate(180deg) scale(0.95);
        opacity: 0.06;
    }
    75% { 
        transform: translateY(-30px) rotate(270deg) scale(1.02);
        opacity: 0.1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    text-align: center;
    padding: 50px 20px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo-img {
    width: 80px;
    height: 80px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(0, 102, 255, 0.4));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

.logo h1 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    text-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

.tagline {
    font-size: 1.15rem;
    color: var(--text);
    opacity: 0.85;
    font-weight: 500;
    margin-top: 15px;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.1);
}

/* 科技感光效扫描 */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.08), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.tool-card:hover::before {
    left: 100%;
}

/* 角落光效 */
.tool-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.tool-card:hover::after {
    opacity: 1;
}

.tool-card[href]:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
    border-color: var(--primary);
}

.tool-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: inline-block;
    filter: drop-shadow(0 4px 10px rgba(0, 102, 255, 0.3));
    transition: transform 0.4s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.15) rotate(5deg);
}

.tool-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 700;
}

.tool-card p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}

.badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.hot {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.badge.soon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

/* Coming Soon */
.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

footer p {
    color: var(--text);
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--warning);
}

/* Form Styles */
.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="url"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 14px;
    background: var(--light);
    color: var(--dark);
    font-size: 1rem;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23334155' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

.form-group select option {
    background: var(--light);
    color: var(--dark);
    padding: 10px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.12), 0 4px 12px rgba(0, 102, 255, 0.1);
    transform: translateY(-1px);
}

.form-group input[type="checkbox"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 18px;
    background: var(--bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
    font-weight: 500;
}

.checkbox-label:hover {
    background: rgba(0, 102, 255, 0.08);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
}

.checkbox-label:has(input:checked) {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 102, 255, 0.5);
}

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

.btn-secondary {
    background: var(--bg);
    color: var(--dark);
    border: 2px solid var(--border);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.15);
}

.result-box {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.04), rgba(0, 212, 255, 0.04));
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    margin-top: 22px;
    word-break: break-all;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.08);
}

.result-box h4 {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 20px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 212, 255, 0.08));
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.back-link:hover {
    color: var(--primary-dark);
    transform: translateX(-5px);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.12), rgba(0, 212, 255, 0.12));
    border-color: var(--primary-light);
}

/* Range Slider */
input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--border), #a8b8d8);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.5), 0 0 0 4px rgba(0, 102, 255, 0.15);
    border: 2px solid white;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.6), 0 0 0 6px rgba(0, 102, 255, 0.25);
}

input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.5);
}

/* Loading */
.loading {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid var(--border);
    border-radius: 50%;
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    animation: spin 0.8s linear infinite;
}

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

/* Alert */
.alert {
    padding: 16px 22px;
    border-radius: 14px;
    margin-bottom: 22px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.alert-info {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 212, 255, 0.08));
    border: 2px solid var(--primary-light);
    color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.1);
}

.alert-warning {
    background: linear-gradient(135deg, rgba(255, 171, 0, 0.1), rgba(255, 142, 0, 0.08));
    border: 2px solid var(--warning);
    color: #e65100;
    box-shadow: 0 4px 12px rgba(255, 171, 0, 0.15);
}

/* Video Page Specific */
.video-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: stretch;
}

.video-input-group input {
    flex: 1;
    min-width: 0;
}

.video-input-group .btn {
    white-space: nowrap;
}

.video-input-group select {
    flex: 0 0 auto;
    min-width: 160px;
    max-width: 200px;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-input-group select:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
}

.video-input-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.25);
}

.api-selector {
    margin-bottom: 20px;
}

.video-frame {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 16px;
    background: var(--bg);
    margin-top: 20px;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.15);
    border: 2px solid var(--border);
}

.video-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

/* QR Code Page */
.qr-preview {
    background: white;
    padding: 30px;
    border-radius: 16px;
    display: inline-block;
    margin: 20px 0;
    border: 2px solid var(--border);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.15);
    position: relative;
}

.qr-preview::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qr-preview:hover::before {
    opacity: 0.3;
}

.qr-preview img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.color-picker {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.color-picker input[type="color"] {
    width: 55px;
    height: 45px;
    border: 2px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
}

.color-picker input[type="color"]:hover {
    border-color: var(--primary-light);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

/* ===== 响应式设计 - 手机端优化 ===== */

/* 平板 (768px) */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    header {
        padding: 30px 15px;
    }
    
    .logo h1 {
        font-size: 2.2rem;
    }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tool-card {
        padding: 25px;
    }
    /* 表单布局调整 */
    .video-input-group {
        flex-direction: column;
        gap: 15px;
    }

    .video-input-group input,
    .video-input-group .btn,
    .video-input-group select {
        width: 100%;
        max-width: none;
    }

    .video-input-group input {
        padding: 18px 20px;
        font-size: 17px;
        min-height: 60px;
    }

    .video-input-group .btn {
        padding: 16px 24px;
        font-size: 16px;
        min-height: 54px;
    }

    .video-input-group select {
        padding: 18px 20px;
        font-size: 16px;
        min-height: 60px;
    }
}

/* 手机 (480px) */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    header {
        padding: 25px 10px;
    }
    
    .logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo h1 {
        font-size: 1.9rem;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .tool-card {
        padding: 20px 15px;
        border-radius: 16px;
    }
    
    .tool-card h3 {
        font-size: 1.3rem;
    }
    
    .tool-card p {
        font-size: 0.9rem;
    }
    
    .tool-icon {
        font-size: 2.8rem;
    }
    
    /* 按钮调整 */
    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .btn-secondary {
        width: 100%;
    }
    
    /* 复选框组改为垂直排列 */
    .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .checkbox-label {
        width: 100%;
    }
    
    /* 返回按钮调整 */
    .back-link {
        padding: 10px 22px;
        font-size: 0.9rem;
        width: auto;
    }
    
    /* 视频框高度调整 */
    .video-frame {
        height: 250px;
    }
    
    /* 二维码预览调整 */
    .qr-preview {
        padding: 20px;
        width: 100%;
    }
    
    .qr-preview img {
        max-width: 100%;
    }
    
    /* 二维码容器布局 */
    .qr-container {
        grid-template-columns: 1fr 1fr;
    }
    
    @media (max-width: 768px) {
        .qr-container {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        /* 移动端预览区域在上 */
        .qr-container .tool-card:last-child {
            order: -1;
        }
    }
    
    /* 结果框调整 */
    .result-box {
        padding: 18px;
        font-size: 0.9rem;
    }
    
    .result-box code {
        font-size: 1rem;
    }
    
    /* 密码列表移动端优化 */
    #passwordsList {
        word-break: break-all;
    }
    
    #passwordsList .password-item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px;
        background: rgba(0, 102, 255, 0.08);
        border-radius: 8px;
        margin-bottom: 8px;
        flex-wrap: wrap;
    }
    
    #passwordsList .password-item > span:first-child {
        flex-shrink: 0;
        min-width: 25px;
        font-weight: bold;
        color: var(--primary);
    }
    
    #passwordsList .password-item > span:nth-child(2) {
        flex: 1 1 100%;
        word-break: break-all;
        font-family: 'Courier New', monospace;
        color: var(--success);
        font-size: 1rem;
        padding: 8px 0;
        min-width: 0;
    }
    
    #passwordsList .password-item button {
        flex-shrink: 0;
        padding: 8px 16px;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .copy-all-btn {
        width: 100%;
        margin-top: 10px;
    }
    
    /* 页脚调整 */
    footer {
        padding: 25px 10px;
    }
    
    footer p {
        font-size: 0.8rem;
    }
}

/* 横屏手机优化 */
@media (max-width: 768px) and (orientation: landscape) {
    .video-frame {
        height: 300px;
    }
    
    header {
        padding: 20px;
    }
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .tool-card[href]:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    input[type="range"]::-webkit-slider-thumb {
        width: 32px;
        height: 32px;
    }
}
