.btn {
    position: relative;
    padding: 6px 24px 17px 24px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    font-family: 'MinecraftTen', 'Arial', sans-serif;
    text-align: center;
    cursor: pointer;
    transition: all 0.1s ease;
    white-space: nowrap;
    display: inline-block;
    letter-spacing: 2px;
    
    background: #424242;
    border: 4px solid #424242;
    color: white;
    text-shadow: 0 3px 0 var(--btn-shadow, #759d61);
    isolation: isolate;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 10px;
    background: var(--btn-bg, #a9d790);
    box-shadow: 
        inset 4px 4px 0 var(--btn-outline, #bceaa3),
        inset -4px -4px 0 var(--btn-outline, #bceaa3);
    pointer-events: none;
    z-index: -1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: var(--btn-bottom, #7fac66);
    z-index: -1;
}

.btn:hover::before {
    filter: brightness(0.95);
}

.btn:active {
    transform: translateY(2px);
}

.btn:active::before {
    filter: brightness(0.85);
}

/* Button Variants */
.btn-blog {
    --btn-bg: #a9d790;
    --btn-outline: #bceaa3;
    --btn-shadow: #759d61;
    --btn-bottom: #7fac66;
}

.btn-shop {
    --btn-bg: #b0a6e9;
    --btn-outline: #c7bef5;
    --btn-shadow: #9b90d7;
    --btn-bottom: #7e6fb8;
}

.btn-play {
    --btn-bg: #a9d790;
    --btn-outline: #bceaa3;
    --btn-shadow: #759d61;
    --btn-bottom: #7fac66;
}

.play-icon {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-right: 8px;
}