/* Modern Dark Theme Blocked Page Styles */
body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #e2e8f0;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.block-container {
    max-width: 480px;
    background: rgba(26, 27, 38, 0.95);
    backdrop-filter: blur(25px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
                0 15px 35px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px 40px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
    animation: slideInDark 0.6s ease-out;
}

@keyframes slideInDark {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.block-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4),
                0 0 0 4px rgba(255, 107, 107, 0.1);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4),
                    0 0 0 4px rgba(255, 107, 107, 0.1);
    }
    to {
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6),
                    0 0 0 8px rgba(255, 107, 107, 0.05);
    }
}

.block-title {
    font-size: 2.5em;
    color: #f1f5f9;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.block-message {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #cbd5e1;
    font-weight: 500;
    line-height: 1.6;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.block-footer {
    margin-top: 32px;
    font-size: 0.95em;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-weight: 400;
}

.block-footer a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.block-footer a:hover {
    color: #a78bfa;
    text-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

@media (max-width: 600px) {
    .block-container {
        padding: 35px 25px;
        max-width: 95vw;
        margin: 20px;
        border-radius: 20px;
    }

    .block-icon {
        width: 70px;
        height: 70px;
    }

    .block-title {
        font-size: 2em;
    }

    .block-message {
        font-size: 1.1em;
    }
}