/**
 * Blocked page styles
 *
 * @package Liveupx_Security
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: #fff;
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.icon {
    font-size: 64px;
    margin-bottom: 20px;
}

h1 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 28px;
}

p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer {
    color: #94a3b8;
    font-size: 12px;
}
