@font-face {
    font-family: 'BootlegTitle';
    src: url('https://fonts.gstatic.com/s/bebasneue/v14/JTUSjIg69CK48gW7PXoo9WlhyyTh89Y.woff2');
}

.chrome-text {
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #aaaaaa 45%,
        #444444 50%,
        #888888 55%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
}

#canvas-container {
    width: 800px;
    height: 800px;
}

.canvas-container {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.photo-thumb {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
}

.photo-thumb:hover {
    border-color: #555;
}

.photo-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.delete-thumb {
    position: absolute;
    top: 2px;
    right: 2px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.2s;
}

.photo-thumb:hover .delete-thumb {
    opacity: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #444;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.loading-text {
    animation: pulse-glow 2s infinite ease-in-out;
}