.trick-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
    padding: 15px;
    border-radius: 8px;
    transition: all .35s;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trick-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.trick-checkbox {
    margin-right: 15px;
    transform: scale(1.3);
}

.trick-item.completed {
    text-decoration: line-through;
    background-color: rgba(222, 159, 0, 0.1);
    border-color: rgba(222, 159, 0, 0.3);
}

.trick-category {
    margin-bottom: 30px;
}

.progress-stats {
    margin: 40px 0;
    text-align: center;
}

.progress {
    height: 30px;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-bar {
    background-color: #DE9F00;
    transition: width 0.5s ease;
    height: 100%;
}

.skate-checklist {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.explosion {
    position: fixed;
    pointer-events: none;
    z-index: 1000;
    will-change: transform, opacity;
}

.explosion-particle {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}
