/**
 * ROAST OVERLAY STYLES
 * Savage, bold, in-your-face design
 */

#troll-roast-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#troll-roast-overlay.show {
    opacity: 1;
}

.roast-content {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border: 4px solid #fff;
    border-radius: 20px;
    padding: 50px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.5);
    animation: roastShake 0.5s ease;
}

@keyframes roastShake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    10% { transform: translateX(-10px) rotate(-2deg); }
    20% { transform: translateX(10px) rotate(2deg); }
    30% { transform: translateX(-10px) rotate(-2deg); }
    40% { transform: translateX(10px) rotate(2deg); }
    50% { transform: translateX(-10px) rotate(-2deg); }
    60% { transform: translateX(10px) rotate(2deg); }
    70% { transform: translateX(-10px) rotate(-2deg); }
    80% { transform: translateX(10px) rotate(2deg); }
    90% { transform: translateX(-5px) rotate(-1deg); }
}

.roast-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: roastBounce 1s ease infinite;
}

@keyframes roastBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.roast-message {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.roast-close {
    background: #fff;
    color: #cc0000;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roast-close:hover {
    background: #ffcccc;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.roast-close:active {
    transform: scale(0.95);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .roast-content {
        padding: 30px;
        margin: 20px;
        max-width: 90%;
    }
    
    .roast-icon {
        font-size: 60px;
    }
    
    .roast-message {
        font-size: 18px;
    }
    
    .roast-close {
        padding: 12px 30px;
        font-size: 16px;
    }
}
