/* ============ BREAK GUARD STYLES ============ */

.break-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.break-modal {
    background: linear-gradient(145deg, #fff9e6, #fff);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 4px rgba(255, 200, 50, 0.3);
    animation: breakModalIn 0.4s ease-out;
}

@keyframes breakModalIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.break-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounceIcon 1s ease-in-out infinite;
}

@keyframes bounceIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

 

.break-button {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.4);
}

.break-button:hover {
    background: linear-gradient(135deg, #38a169, #2f855a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.5);
}

.break-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(72, 187, 120, 0.4);
}

/* Mobil nézet */
@media (max-width: 480px) {
    .break-modal {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .break-icon {
        font-size: 3rem;
    }

    

    .break-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }
}