.story-modal {
    display: block;
    position: fixed;
    top: 0;
    z-index: 9999;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
}

.story-modal.active::before {
    content: "X";
    position: absolute;
    z-index: 10000;
    right: 2rem;
    top: 2rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.btn-modal {
    transform: rotate(-2deg);
    display: inline-block;
    padding: 0.75rem 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: none;
    background: linear-gradient(135deg, #FFD43B 0%, #FFA500 100%);
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem !important;
    width: auto;
}