* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
.keep-large,
.keep-large-2 {
    font-family: "Dela Gothic One", sans-serif;
    font-weight: 500;
}

body {
    font-family: "Quicksand", sans-serif;
    color: black;
    line-height: 1.6;
    overflow-x: hidden;
    touch-action: pan-y pinch-zoom;
}

html {
    scroll-behavior: smooth;
}

.fas,
.fa-solid {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.fab,
.fa-brands {
    font-family: 'Font Awesome 6 Brands';
    font-weight: 400;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -2;
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 60%);
    z-index: -1;
    animation: gradientMove 20s ease infinite;
    pointer-events: none;
}

@keyframes gradientMove {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3) rotate(3deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
}

.cherry-can-fixed {
    position: fixed;
    top: 71%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    z-index: 300;
    pointer-events: auto;
    filter: drop-shadow(0 50px 70px rgba(0, 0, 0, 0.6));
    will-change: transform;
    transition: none;
    width: 325px;
    height: 325px;
}

.cherry-can-fixed img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.reset-can-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
}

.reset-can-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.reset-can-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}