body {
    font-family: 'Inter', sans-serif;
}

.dashed-box {
    border: 2px dashed #6366f1;
    padding: 1rem;
    position: relative;
    border-radius: 6px;
    transition: border-color 0.3s, border-radius 0.3s;
}

.dashed-box:hover {
    border-color: #22c55e;
    border-radius: 0;
}

.scissors {
    position: absolute;
    top: -12px;
    left: -12px;
    font-size: 0.9rem;
    background: white;
    padding: 0.2rem 0.4rem;
    border-radius: 50%;
    border: 2px solid #6366f1;
    color: #6366f1;
    transition: color 0.3s;
}

.dashed-box:hover .scissors {
    color: #22c55e;
}

footer {
    position: relative;
    bottom: 0;
    width: 100%;
}

.logo-text {
    font-weight: 600;
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, #6366f1, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} 